Update code to reflect 'read more' btn name change

This commit is contained in:
syeopite
2021-04-02 03:56:45 -07:00
parent 8df2f38d34
commit 65663fb857
2 changed files with 10 additions and 10 deletions

View File

@ -670,27 +670,27 @@ hr {
margin: auto 0 auto 0;
}
/* Description Expandsion Styling*/
/* Description Expansion Styling*/
#description-box {
display: flex;
flex-direction: column;
}
#readmorebutton {
#descexpansionbutton {
display: none
}
#readmorebutton ~ div {
#descexpansionbutton ~ div {
overflow: hidden;
height: 8.3em;
}
#readmorebutton:checked ~ div {
#descexpansionbutton:checked ~ div {
overflow: unset;
height: 100%;
}
#readmorebutton + label {
#descexpansionbutton + label {
order: 1;
margin-top: 20px;
}