Files
Ultrachromic/fields/fields_noborder.css
2021-08-01 13:53:18 +03:00

41 lines
937 B
CSS

/*No borders, background highlights*/
.infoBanner {
background: rgba(var(--selection), 0.15) !important;
}
fieldset {
border: 1px solid rgba(var(--selection), 0.3);
}
.checkboxOutline,
.emby-input,
.emby-textarea,
.emby-select-withcolor {
border: none !important;
background: rgba(0, 0, 0, 0.5);
}
#itemDetailPage .emby-select-withcolor {
background: rgba(0, 0, 0, 0.2);
}
/*Change look of in-focus fields*/
.emby-checkbox:checked + span + .checkboxOutline,
.emby-input:focus,
.emby-textarea:focus,
.emby-select-withcolor:focus,
.itemSelectionPanel {
border: none !important;
background: rgba(var(--selection), 0.25) !important;
}
.checkboxIcon {
color: rgba(var(--selection), 1);
}
/*Progress bars*/
progress {
border: 0px solid rgba(255, 255, 255, 0.22);
}
progress::-webkit-progress-bar {
border: 0px solid rgba(255, 255, 255, 0.22);
}
.taskProgressOuter {
border: 0px solid rgba(255, 255, 255, 0.22);
}