Skip to content
Snippets Groups Projects
Commit e7495133 authored by Jan Haller's avatar Jan Haller
Browse files

S16051 :has selector is not supported on Firefox. The first rule treats all...

S16051 :has selector is not supported on Firefox. The first rule treats all <li> elements and the second one resets the style of active links. refs #16051
parent 9ab998c7
No related branches found
No related tags found
3 merge requests!588New version v23.6.0,!576S16051 Dropdown options with render mode 3 now have the same padding as the...,!574S16051 Dropdown options with render mode 3 now have the same padding as the...
Pipeline #9308 passed
......@@ -1480,7 +1480,13 @@ input.qfq-password {
}
// gray text and corrected padding for inactive dropdown options (render mode 3)
.dropdown-menu>li:not(:has(a)) {
.dropdown-menu>li {
padding: 3px 20px;
color: gray;
}
// reset previous rule for active options
.dropdown-menu>li>a {
padding: 0px 0px;
color: #333;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment