Huge hopefully final update

This commit is contained in:
Casper Talvio
2021-08-01 13:53:18 +03:00
parent a9fbf72a56
commit ff1d411744
26 changed files with 445 additions and 34 deletions

63
fields/fields_border.css Normal file
View File

@@ -0,0 +1,63 @@
/*Tweak entry fields, checkmarks, thin borders dark highlight*/
.emby-input,
.emby-textarea {
padding: .4em .55em;
}
.emby-select {
padding: .35em 1.9em .35em .35em;
}
.selectArrow {
margin-top: 1.05em;
}
.checkboxOutline,
.emby-input,
.emby-textarea,
.emby-select-withcolor {
background: rgba(0, 0, 0, 0.2);
border: 0.01em solid rgba(255, 255, 255, 0.22);
}
.emby-input:focus,
.emby-textarea:focus,
.emby-select-withcolor:focus {
background: rgba(0, 0 , 0, 0.4) !important;
}
.emby-textarea:focus,
.emby-select-withcolor:focus,
.emby-input:focus,
.itemSelectionPanel {
border: 0.01em solid rgba(var(--selection), 0.8) !important;
}
.emby-checkbox:checked + span + .checkboxOutline {
background-color: rgba(0, 0 , 0, 0.4) !important;
border: 0.01em solid rgba(var(--selection), 0.8) !important;
}
/*Theme the library scan progress bar*/
progress {
background: rgba(0, 0, 0, 0.5) !important;
border: 1px solid rgba(255, 255, 255, 0.22);
}
progress::-webkit-progress-bar {
background: rgba(0, 0, 0, 0.5) !important;
border: 0px solid rgba(255, 255, 255, 0.22);
}
progress::-moz-progress-bar {
background-color: rgba(255,255,255,0.75);
}
progress::-webkit-progress-value {
background-color: rgba(255,255,255,0.75);
}
#divRunningTasks span {
color: rgba(255,255,255,0.75) !important;
}
.taskProgressOuter {
background: rgba(0, 0, 0, 0.5) !important;
border: 1px solid rgba(255, 255, 255, 0.22);
}
.taskProgressInner {
background: rgba(255,255,255,0.75) !important;
}
#scheduledTasksPage span {
color: rgba(255,255,255,0.75) !important;
}

View File

@@ -0,0 +1,41 @@
/*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);
}