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
1 changed files with 8 additions and 0 deletions

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