Browse Source

sync

master^2
rdrew 1 week ago
parent
commit
b947d80b83
  1. 85
      css/components/islandora_mods.css

85
css/components/islandora_mods.css

@ -1,25 +1,86 @@
/*l'nuey collection stuff*/ /*l'nuey collection stuff*/
.lva .view-grid > .view-content { .lva .view-grid > .view-content {
display: grid; display: grid;
grid-template-columns: repeat(4, 1fr); grid-template-columns: repeat(4, 1fr);
/* margin: 0.47214rem 0 0.47214rem 2.61803rem; */ /* margin: 0.47214rem 0 0.47214rem 2.61803rem; */
} }
.lva .grid-item__image { .lva .grid-item__image {
margin: 0; margin: 0;
height: 274px; /*height: 274px;*/
background: #ece8e3; background: #ece8e3;
overflow: hidden; overflow: hidden;
img {
border: 1px solid #ccc;
}
} }
.node--type-islandora-object .field--label-inline > .field__item { .node--type-islandora-object .field--label-inline > .field__item {
display: table; display: table;
} }
.lva iframe.pdf { .lva iframe.pdf {
height: 1000px; height: 1000px;
border: 1px solid #ccc; border: 1px solid #ccc;
} }
/*=======================*/ /*=======================*/
/*disclaimer*/
details {
margin: 1rem 0;
border: 1px solid #ddd;
border-radius: 6px;
overflow: hidden;
}
summary {
padding: 1rem 1.5rem;
background: #f8f9fa;
cursor: pointer;
font-weight: 600;
list-style: none; /* removes default marker */
position: relative;
}
summary::-webkit-details-marker {
display: none;
} /* Chrome/Safari */
summary::after {
content: "▼";
position: absolute;
right: 1.5rem;
transition: transform 0.3s;
}
details[open] summary::after {
transform: rotate(180deg);
}
details > .content {
padding: 0 1.5rem 1.5rem;
background: white;
}
/* Optional: smooth height animation (works well in 2025+ browsers) */
details > .content {
overflow: hidden;
transition: max-height 0.4s ease, padding 0.4s ease;
max-height: 0;
padding-top: 0;
padding-bottom: 0;
}
details[open] > .content {
max-height: 1000px; /* large enough for your content */
padding: 1.5rem;
}
/*=======================*/
div#block-olivespostcards-documenttype .block__title {
line-height: 1;
}
div#block-olivespostcards-solrsearchcontentsearchresultspagerforblock {
margin: 0;
}
.mirador76 { .mirador76 {
display: none !important; display: none !important;
} }
div#block-olivespostcards-solrsearchcontentadvancedsearchforblock h2 { div#block-olivespostcards-solrsearchcontentadvancedsearchforblock h2 {
line-height: 1; line-height: 1;
@ -120,7 +181,7 @@ div#formatted-bibliography .csl-bib-body {
line-height: 1.4; line-height: 1.4;
margin-bottom: 5px; margin-bottom: 5px;
font-size: 0.9em; font-size: 0.9em;
color: var(--color-text-neutral-medium); color: var(--color-text-neutral-medium);
a.views-more-link { a.views-more-link {
text-decoration: underline; text-decoration: underline;
} }

Loading…
Cancel
Save