style(next): fix the up / down buttons of the "Find in text" input box

This commit is contained in:
Adorian Doran 2025-02-03 22:15:53 +02:00
parent 59fdc7d048
commit 4efc86b9a3

View File

@ -216,6 +216,7 @@ input::selection,
.input-group button, .input-group button,
.input-group a { .input-group a {
display: flex; display: flex;
align-items: center;
--bs-border-width: 0; --bs-border-width: 0;
--accented-background-color: transparent; --accented-background-color: transparent;
background: transparent; background: transparent;
@ -228,15 +229,21 @@ input::selection,
.input-group button:hover, .input-group button:hover,
.input-group a:hover { .input-group a:hover {
--muted-text-color: var(--input-action-button-hover); --muted-text-color: var(--input-action-button-hover);
color: var(--input-action-button-hover);
} }
.input-group button:focus-visible, .input-group button:focus-visible,
.input-group a:focus-visible { .input-group a:focus-visible {
box-shadow: unset;
outline: transparent; outline: transparent;
border: transparent; border: transparent;
text-shadow: 0 0 3px var(--input-action-button-hover); text-shadow: 0 0 3px var(--input-action-button-hover);
} }
.input-group button:active {
background: transparent !important;
}
.input-group a.disabled { .input-group a.disabled {
opacity: .5; opacity: .5;
/* Workaround to set the "background" property. */ /* Workaround to set the "background" property. */