Change description-box from flex to block

I also make minor changes to the surroundings so that the same layout
and functionality as before is preserved.
このコミットが含まれているのは:
Cadence Ember 2021-06-24 21:05:06 +12:00 committed by Mostafa Ahangarha
コミット 7ec93825b6
2個のファイルの変更6行の追加11行の削除

ファイルの表示

@ -492,11 +492,6 @@ hr {
}
/* Description Expansion Styling*/
#description-box {
display: flex;
flex-direction: column;
}
#descexpansionbutton {
display: none
}
@ -511,7 +506,7 @@ hr {
height: 100%;
}
#descexpansionbutton + label {
#descexpansionbutton ~ label {
order: 1;
margin-top: 20px;
}

ファイルの表示

@ -30,11 +30,11 @@
we're going to need to do it here in order to allow for translations.
-->
<style>
#descexpansionbutton + label > a::after {
#descexpansionbutton ~ label > a::after {
content: "<%= translate(locale, "Show more") %>"
}
#descexpansionbutton:checked + label > a::after {
#descexpansionbutton:checked ~ label > a::after {
content: "<%= translate(locale, "Show less") %>"
}
</style>
@ -249,12 +249,12 @@ we're going to need to do it here in order to allow for translations.
<%= video.description_html %>
<% else %>
<input id="descexpansionbutton" type="checkbox"/>
<label for="descexpansionbutton" style="order: 1;">
<a></a>
</label>
<div id="descriptionWrapper">
<%= video.description_html %>
</div>
<label for="descexpansionbutton">
<a></a>
</label>
<% end %>
</div>