
/* ################################# */

/* ADDED in - June 17th 2023 by Brian Wu */

/* left panel - hides the tabs containing Index & Thumbnails */
.uv .leftPanel .tabs { visibility: hidden; }

/* left panel - shows the label in the middle */
.uv .leftPanel .views .thumbsView .thumbs .thumb.oneCol .label { width: 100%!important; }
.uv .leftPanel .views .thumbsView .thumbs .thumb.oneCol .wrap{ float: left!important; }
.uv .leftPanel .views .thumbsView .thumbs .thumb.oneCol .info {width: 100%!important; }
.uv .leftPanel .views .thumbsView .thumbs .thumb.oneCol .info { text-align: center; }

/* left panel - displays 2 column row for oneCol class */
/* :not(paged) is to indicate that in case of twocol (IIIF Server > Default behavior (viewing hint) > Paged)
   this style will not be applicable and twocol should continue to use its own default css classes
*/
.uv .leftPanel .views .thumbsView .thumbs:not(.paged) {
  display:grid;
  grid-auto-flow: row;
  grid-gap: 10px;
  grid-template-rows: 100px 100px;
  grid-template-columns: 100px 100px;
}