Browse Source

sync

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

63
css/components/islandora_mods.css

@ -6,9 +6,12 @@
} }
.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;
@ -17,7 +20,65 @@
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;
} }

Loading…
Cancel
Save