diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-01-23 21:13:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-23 21:13:01 -0500 |
commit | ef577b88754523abeab3844115506a0b6e914874 (patch) | |
tree | 78f181897afc89904f2df7c3370030a955219c5b /ext/mixed/css/display.css | |
parent | 9fbdb9757b22c2bb9afe5061137bfe4b3b755e91 (diff) |
Audio button menu (#1302)
* Fix popup menus not stoping events
* Ensure non-stale use of buttons
* Enable popup menus on the popup/search pages
* Add audio menu
Diffstat (limited to 'ext/mixed/css/display.css')
-rw-r--r-- | ext/mixed/css/display.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ext/mixed/css/display.css b/ext/mixed/css/display.css index 003d0962..ce5cac6c 100644 --- a/ext/mixed/css/display.css +++ b/ext/mixed/css/display.css @@ -1620,6 +1620,21 @@ button.footer-notification-close-button:active { } +/* Audio menu */ +.audio-button-popup-menu[data-show-icons=false] .popup-menu-item-icon { + display: none; +} +.popup-menu-item-icon[data-icon=checkmark] { + background-color: var(--success-color); +} +.popup-menu-item-icon[data-icon=cross] { + background-color: var(--danger-color); +} +.popup-menu-item[data-source-in-options=false][data-valid=null] { + color: var(--text-color-light1); +} + + /* Conditional styles */ :root:not([data-enable-search-tags=true]) .tag[data-category=search] { display: none; |