mirror of
https://github.com/iv-org/invidious.git
synced 2025-08-03 11:56:04 -04:00
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.
This commit is contained in:
parent
4a4867deeb
commit
7ec93825b6
2 changed files with 6 additions and 11 deletions
|
@ -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>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue