1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 05:43:41 +00:00

Merge pull request #1758 from bitwarden/fix-sidebar-option-css

Fix bgcolor of option els when in FF sidebar
This commit is contained in:
Thomas Rittson
2021-04-12 08:19:40 +10:00
committed by GitHub

View File

@@ -348,3 +348,11 @@ input[type="password"]::-ms-reveal {
}
}
}
// Workaround for rendering error in Firefox sidebar
// option elements will not render background-color correctly if identical to parent background-color
select option {
@include themify($themes) {
background-color: adjust-color(themed('inputBackgroundColor'), +1);
}
}