1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-02 04:48:57 +02: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
commit be79ef8981
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
}
}