Move <select>:hover to other hover styles

Lets keep this file organized.
This commit is contained in:
Samuel Mannehed 2022-12-08 12:29:45 +01:00
parent 86adcdd3a3
commit 1e500883f6
1 changed files with 4 additions and 4 deletions

View File

@ -79,10 +79,6 @@ select {
padding-right: calc(2*7px + 8px);
padding-left: 7px;
}
:root:not(.noVNC_touch) select:hover:not(:disabled) {
background: var(--select-arrow),
linear-gradient(to top, rgb(255, 255, 255), rgb(250, 250, 250));
}
option {
color: black;
@ -226,3 +222,7 @@ select:active {
:root:not(.noVNC_touch) button:hover:not(:disabled) {
background: linear-gradient(to top, rgb(255, 255, 255), rgb(250, 250, 250));
}
:root:not(.noVNC_touch) select:hover:not(:disabled) {
background: var(--select-arrow),
linear-gradient(to top, rgb(255, 255, 255), rgb(250, 250, 250));
}