Add media query for dark mode outline in zen-urlbar styles

This commit is contained in:
mr. M
2025-02-18 00:30:37 +01:00
parent 57071d21a7
commit cf431e1e4b

View File

@@ -391,7 +391,9 @@ button.popup-notification-dropmarker {
the backdrop woudn't work, we would need to apply a clip-path to the site and that's not recommended
due to performance issues */
background-color: light-dark(hsl(0, 0%, 100%), hsl(0, 0%, 14%)) !important;
outline: 1px solid rgba(0, 0, 0, 0.3) !important;
@media (-prefers-color-scheme: dark) {
outline: 1px solid rgba(0, 0, 0, 0.3) !important;
}
}
}