From: Jo-Philipp Wich Date: Sun, 18 Feb 2024 22:22:58 +0000 (+0100) Subject: luci-theme-bootstrap: add dropdown option hover styles X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=95aaab6585498f8d67f27b5048175893cba59c08;p=project%2Fluci.git luci-theme-bootstrap: add dropdown option hover styles Subsequent commits will drop the JS based mouse following focus behavior, so add appropriate replacement CSS hover styles. Ref: #6903 Signed-off-by: Jo-Philipp Wich (cherry picked from commit f57514d63ca23ec3020a5605a039ac0b228e994d) --- diff --git a/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css b/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css index 3afcc6ad99..46cf475529 100644 --- a/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css +++ b/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css @@ -1716,12 +1716,14 @@ body.modal-overlay-active #modal_overlay { color: var(--on-primary-color); } -.cbi-dropdown[open] > ul.dropdown > li.focus { +.cbi-dropdown[open] > ul.dropdown > li.focus, +.cbi-dropdown[open] > ul.dropdown > li:hover { background: var(--primary-color-low); color: var(--on-primary-color); } -.cbi-dropdown[open] > ul.dropdown > li[selected].focus { +.cbi-dropdown[open] > ul.dropdown > li[selected].focus, +.cbi-dropdown[open] > ul.dropdown > li[selected]:hover { background: linear-gradient(90deg, var(--primary-color-medium) 50%, var(--primary-color-low)); }