diff options
author | Jesús <heckyel@hyperbola.info> | 2021-12-31 18:15:59 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-12-31 18:15:59 -0500 |
commit | 90338c25c62198aedd9cb2229bec839d24d3ef49 (patch) | |
tree | ad74d1d731bb0184c1848a164c5f1110d959c607 /youtube/static/watch.css | |
parent | f572bb62aa29b322c6d6121e04141dc236a38666 (diff) | |
download | yt-local-90338c25c62198aedd9cb2229bec839d24d3ef49.tar.lz yt-local-90338c25c62198aedd9cb2229bec839d24d3ef49.tar.xz yt-local-90338c25c62198aedd9cb2229bec839d24d3ef49.zip |
[FrontEnd]: fix dropdown design
Diffstat (limited to 'youtube/static/watch.css')
-rw-r--r-- | youtube/static/watch.css | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/youtube/static/watch.css b/youtube/static/watch.css index e717d6c..489a4eb 100644 --- a/youtube/static/watch.css +++ b/youtube/static/watch.css @@ -620,19 +620,17 @@ label[for=options-toggle-cbox] { .dropdown { display: grid; grid-gap: 1px; - grid-template-columns: minmax(50px, 120px); + grid-template-columns: 100px auto; grid-template-areas: "dropdown-label" "dropdown-content"; grid-area: dropdown; position: absolute; - padding-right: 4rem; z-index: 1; } #options-toggle-cbox:checked ~ .dropdown-content { - padding: 0rem 3rem 1rem 1rem; - width: 100%; - max-height: 45vh; + width: calc(100% + 100px); + max-height: 80vh; overflow-y: scroll; } .playlist { @@ -643,7 +641,7 @@ label[for=options-toggle-cbox] { grid-area: playlist; } .play-clean { - grid-template-columns: minmax(50px, 120px); + grid-template-columns: 100px auto; } .play-clean > button { padding-bottom: 6px; |