Merge pull request #21187 from calixteman/bug2035551

Fix HCM colors for the views-manager massive unselect button (bug 2035551)
This commit is contained in:
calixteman 2026-04-28 21:37:08 +02:00 committed by GitHub
commit 08eca5213e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -443,6 +443,29 @@
mask-image: var(--pages-selected-icon);
}
@media screen and (forced-colors: active) {
border-radius: 2px;
background-color: var(--button-bg);
&::before {
background-color: var(--button-fg);
}
&:hover {
background-color: var(--button-hover-bg);
&::before {
background-color: var(--button-hover-fg);
}
}
&:active {
background-color: var(--button-active-bg);
&::before {
background-color: var(--button-active-fg);
}
}
}
&#viewsManagerStatusActionDeselectButton:focus-visible {
outline: 2px solid var(--button-focus-outline-color);
border: 1px solid var(--button-focus-border-color);