Fixed expand button style and metadata content style.
This commit is contained in:
parent
3c9bef1e76
commit
68de87ec7d
2 changed files with 27 additions and 6 deletions
|
@ -151,9 +151,12 @@ input.form-control {
|
||||||
input.block {
|
input.block {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
label {
|
.label {
|
||||||
margin-top: .5em;
|
margin-top: .5em;
|
||||||
margin-bottom: .5em;
|
margin-bottom: .5em;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
font-family: "IPH Astra Serif";
|
||||||
|
color: #000000;
|
||||||
}
|
}
|
||||||
label.inline {
|
label.inline {
|
||||||
display: inline;
|
display: inline;
|
||||||
|
@ -2878,18 +2881,25 @@ span.iconControlsNotEditable {
|
||||||
border-bottom: 1px dashed #9C9C9C;
|
border-bottom: 1px dashed #9C9C9C;
|
||||||
}
|
}
|
||||||
.collapsible.collapsed {
|
.collapsible.collapsed {
|
||||||
|
padding: 18px 18px 18px 10px;
|
||||||
|
}
|
||||||
|
.collapsible.collapsed >div.collapsibleLink {
|
||||||
background-image: url(../images/arrow-down-big.svg);
|
background-image: url(../images/arrow-down-big.svg);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: 1% 50%;
|
background-position: left center;
|
||||||
padding: 18px 18px 18px 40px;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
padding-left: 30px;
|
||||||
}
|
}
|
||||||
.collapsible.expanded {
|
.collapsible.expanded {
|
||||||
|
padding: 18px 18px 18px 10px;
|
||||||
|
border-bottom: 1px solid #dde4e3;
|
||||||
|
}
|
||||||
|
.collapsible.expanded >div.collapsibleLink {
|
||||||
background-image: url(../images/arrow-top-big.svg);
|
background-image: url(../images/arrow-top-big.svg);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: 1% 50%;
|
background-position: left center;
|
||||||
padding: 18px 18px 18px 40px;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
padding-left: 30px;
|
||||||
}
|
}
|
||||||
.searchTOC {
|
.searchTOC {
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -2917,6 +2927,17 @@ p.snippet {
|
||||||
border-top: 1px solid #dde4e3;
|
border-top: 1px solid #dde4e3;
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
}
|
}
|
||||||
|
.expandedContent {
|
||||||
|
padding-left: 20px;
|
||||||
|
padding-top: 10px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
}
|
||||||
|
.expandedContent a {
|
||||||
|
font-family: "IPH Astra Serif";
|
||||||
|
font-size: 1.2rem;
|
||||||
|
padding-bottom: 2px;
|
||||||
|
}
|
||||||
/* -------------------------------------------------> */
|
/* -------------------------------------------------> */
|
||||||
/* FONTS --------------------------------> */
|
/* FONTS --------------------------------> */
|
||||||
/* -------------------------------------------------> */
|
/* -------------------------------------------------> */
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
</div>
|
</div>
|
||||||
</#if>
|
</#if>
|
||||||
<#if rubrics?? && rubrics?has_content>
|
<#if rubrics?? && rubrics?has_content>
|
||||||
<div style="display:none;">
|
<div class="expandedContent" style="display:none;">
|
||||||
<#list rubrics as rubric>
|
<#list rubrics as rubric>
|
||||||
<li role="listitem" style="list-style:none;">
|
<li role="listitem" style="list-style:none;">
|
||||||
<a href="${urls.base}/individual?uri=${rubric.rubricID?url}"">${rubric.rubricName}</a>
|
<a href="${urls.base}/individual?uri=${rubric.rubricID?url}"">${rubric.rubricName}</a>
|
||||||
|
|
Loading…
Add table
Reference in a new issue