style(next): fix the combo box style being overridden in some particular cases

This commit is contained in:
Adorian Doran 2025-02-03 16:37:27 +02:00
parent 7d81c65e8e
commit c832eed0d7

View File

@ -273,6 +273,7 @@ input::selection,
select,
select.form-select,
select.form-control,
.select-button.dropdown-toggle.btn {
outline: 3px solid transparent;
outline-offset: 6px;
@ -285,6 +286,7 @@ select.form-select,
select:hover,
select.form-select:hover,
select.form-control:hover,
.select-button.dropdown-toggle.btn:hover {
background-color: var(--input-hover-background);
color: var(--input-hover-color);
@ -297,6 +299,7 @@ button.select-button.dropdown-toggle.btn:active {
select:focus,
select.form-select:focus,
select.form-control:focus,
.select-button.dropdown-toggle.btn:focus {
box-shadow: unset;
outline: 3px solid var(--input-focus-outline-color);