Merge pull request #327 from DrPandemic/focus-checkbox

Changes checkboxes focus appearance
This commit is contained in:
Joshua M. Boniface
2019-05-17 09:04:17 -04:00
committed by GitHub
10 changed files with 67 additions and 61 deletions
+8 -4
View File
@@ -264,15 +264,19 @@ html {
color: #fff !important
}
.emby-checkbox:checked+span+span+.checkboxOutline {
.emby-checkbox:checked+span+.checkboxOutline {
border-color: #00a4dc
}
.emby-checkbox:focus+span+.emby-checkbox-focushelper {
background-color: rgba(0,164,220, .26)
.emby-checkbox:focus+span+.checkboxOutline {
border-color: #fff;
}
.emby-checkbox:checked+span+span+.checkboxOutline,
.emby-checkbox:focus:not(:checked)+span+.checkboxOutline {
border-color: #00a4dc;
}
.emby-checkbox:checked+span+.checkboxOutline,
.itemProgressBarForeground {
background-color: #00a4dc
}