mirror of
https://github.com/meowarex/TidaLuna-Plugins.git
synced 2026-06-18 03:43:10 +10:00
15 lines
594 B
CSS
15 lines
594 B
CSS
/* Hide player bar when setting is disabled, but show on hover - only when UI is hidden */
|
|
.radiant-lyrics-ui-hidden [data-test="footer-player"] {
|
|
opacity: 0 !important;
|
|
transition: opacity 0.5s ease-in-out !important;
|
|
}
|
|
|
|
.radiant-lyrics-ui-hidden [data-test="footer-player"]:hover {
|
|
opacity: 1 !important;
|
|
}
|
|
|
|
/* Also show player bar when hovering over the bottom area - only when UI is hidden */
|
|
.radiant-lyrics-ui-hidden:has([data-test="footer-player"]:hover) [data-test="footer-player"],
|
|
.radiant-lyrics-ui-hidden [data-test="footer-player"]:hover {
|
|
opacity: 1 !important;
|
|
} |