[CSS] Fix multiple select box styling
This commit is contained in:
parent
f92c00c7aa
commit
84217ec866
|
@ -186,7 +186,7 @@ li {
|
|||
background-color: var(--background-hard);
|
||||
}
|
||||
|
||||
select {
|
||||
select:not([multiple]) {
|
||||
background: var(--gradient),url("../images/select_drop_dark.png") no-repeat center right 5px !important;
|
||||
background-size: cover,16px !important;
|
||||
}
|
||||
|
@ -197,7 +197,7 @@ li {
|
|||
background-color: var(--background-hard);
|
||||
}
|
||||
|
||||
select {
|
||||
select:not([multiple]) {
|
||||
background: var(--gradient),url("../images/select_drop_light.png") no-repeat center right 5px !important;
|
||||
background-size: cover,16px !important;
|
||||
background-blend-mode: saturation;
|
||||
|
|
|
@ -164,8 +164,9 @@ select {
|
|||
max-width: 100% !important;
|
||||
}
|
||||
|
||||
select>option {
|
||||
width: 1px;
|
||||
select[multiple] {
|
||||
overflow-y: scroll;
|
||||
height: 20rem;
|
||||
}
|
||||
|
||||
button:focus,button:hover,input:focus,input:hover,select:focus,select:hover,textarea:focus,textarea:hover {
|
||||
|
|
Loading…
Reference in New Issue
Block a user