Changes checkbox focus appearance

This commit is contained in:
DrPandemic 2019-05-16 18:23:46 -04:00
parent d4ea091ab5
commit 8c1446266c
No known key found for this signature in database
GPG key ID: B6A2F8AEC8AD2825
10 changed files with 67 additions and 61 deletions

View file

@ -267,11 +267,19 @@ html {
border: .07em solid rgba(0, 0, 0, .158)
}
.emby-checkbox:checked+span+span+.checkboxOutline,
.emby-checkbox:checked+span+.checkboxOutline,
.emby-select-withcolor:focus {
border-color: #00a4dc
}
.emby-checkbox:focus+span+.checkboxOutline {
border-color: #000;
}
.emby-checkbox:focus:not(:checked)+span+.checkboxOutline {
border-color: #00a4dc;
}
.emby-select-withcolor>option {
color: #000;
background: #fff
@ -282,11 +290,7 @@ html {
color: #fff
}
.emby-checkbox:focus+span+.emby-checkbox-focushelper {
background-color: rgba(0,164,220, .26)
}
.emby-checkbox:checked+span+span+.checkboxOutline,
.emby-checkbox:checked+span+.checkboxOutline,
.itemProgressBarForeground {
background-color: #00a4dc
}