Fix font manager select box border radius (#1703)

Fix font manager select box border radius
10.7.0-preview
Michael Keller 2019-10-04 00:28:16 +13:00 committed by GitHub
commit e51b956529
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 30 deletions

View File

@ -1,10 +1,3 @@
.fontpresets {
background-color: #3c3c3c;
color: white;
}
/* Above two items are related to jbox, and serve as a reminder to look in src/css/tabs/osd.css */
.tab-osd .display-layout input.position { .tab-osd .display-layout input.position {
border-bottom: 1px solid red; border-bottom: 1px solid red;
} }
@ -14,25 +7,6 @@
background-size: cover; background-size: cover;
} }
.tab-osd .preview .gui_box_titlebar select {
background-color: #3a3a3a;
color: white;
}
.tab-osd .switchable-field.mouseover {
background: #3a3a3a;
}
.tab-osd .timer-option {
margin-bottom: 2px;
}
.tab-osd input,
.tab-osd select {
background-color: #3a3a3a;
color: white;
}
/* these two items replace the look of the checkboxes in only CSS */ /* these two items replace the look of the checkboxes in only CSS */
.tab-osd input[type='checkbox']:after { .tab-osd input[type='checkbox']:after {
line-height: 1.5em; line-height: 1.5em;

View File

@ -384,7 +384,10 @@ button {
} }
.fontpresets { .fontpresets {
background: var(--boxBackground);
color: var(--defaultText);
border: 1px solid var(--subtleAccent); border: 1px solid var(--subtleAccent);
border-radius: 3px;
} }
.tab-osd .switchable-field { .tab-osd .switchable-field {
@ -394,7 +397,7 @@ button {
} }
.tab-osd .switchable-field.mouseover { .tab-osd .switchable-field.mouseover {
background: #fff; background: var(--boxBackground);
border: 1px solid var(--subtleAccent); border: 1px solid var(--subtleAccent);
font-weight: 800; font-weight: 800;
} }
@ -445,6 +448,8 @@ button {
.tab-osd input, .tab-osd input,
.tab-osd select { .tab-osd select {
background: var(--boxBackground);
color: var(--defaultText);
border: 1px solid var(--subtleAccent); border: 1px solid var(--subtleAccent);
border-radius: 3px; border-radius: 3px;
} }