fix correct font-family not applying for multiple select element
This commit is contained in:
@@ -29,6 +29,9 @@ body.ttrss_main {
|
|||||||
body.ttrss_main :focus {
|
body.ttrss_main :focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
body.ttrss_main select[multiple="multiple"] option {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
body.ttrss_main .post {
|
body.ttrss_main .post {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
@@ -1510,6 +1513,9 @@ body.ttrss_prefs h4 {
|
|||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: #555;
|
color: #555;
|
||||||
}
|
}
|
||||||
|
body.ttrss_prefs select[multiple="multiple"] option {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
body.ttrss_prefs .text-muted {
|
body.ttrss_prefs .text-muted {
|
||||||
color: #888888;
|
color: #888888;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,6 +29,9 @@ body.ttrss_main {
|
|||||||
body.ttrss_main :focus {
|
body.ttrss_main :focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
body.ttrss_main select[multiple="multiple"] option {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
body.ttrss_main .post {
|
body.ttrss_main .post {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
@@ -1510,6 +1513,9 @@ body.ttrss_prefs h4 {
|
|||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
}
|
}
|
||||||
|
body.ttrss_prefs select[multiple="multiple"] option {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
body.ttrss_prefs .text-muted {
|
body.ttrss_prefs .text-muted {
|
||||||
color: #999999;
|
color: #999999;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,6 +29,9 @@ body.ttrss_main {
|
|||||||
body.ttrss_main :focus {
|
body.ttrss_main :focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
body.ttrss_main select[multiple="multiple"] option {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
body.ttrss_main .post {
|
body.ttrss_main .post {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
@@ -1510,6 +1513,9 @@ body.ttrss_prefs h4 {
|
|||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
body.ttrss_prefs select[multiple="multiple"] option {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
body.ttrss_prefs .text-muted {
|
body.ttrss_prefs .text-muted {
|
||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,6 +29,9 @@ body.ttrss_main {
|
|||||||
body.ttrss_main :focus {
|
body.ttrss_main :focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
body.ttrss_main select[multiple="multiple"] option {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
body.ttrss_main .post {
|
body.ttrss_main .post {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
@@ -1510,6 +1513,9 @@ body.ttrss_prefs h4 {
|
|||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: #555;
|
color: #555;
|
||||||
}
|
}
|
||||||
|
body.ttrss_prefs select[multiple="multiple"] option {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
body.ttrss_prefs .text-muted {
|
body.ttrss_prefs .text-muted {
|
||||||
color: #888888;
|
color: #888888;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,6 +9,10 @@ body.ttrss_prefs {
|
|||||||
color : @default-text;
|
color : @default-text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
select[multiple="multiple"] option {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
.text-muted {
|
.text-muted {
|
||||||
color : @fg-text-muted;
|
color : @fg-text-muted;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,6 +9,10 @@ body.ttrss_main {
|
|||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
select[multiple="multiple"] option {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
.post {
|
.post {
|
||||||
padding : 0;
|
padding : 0;
|
||||||
font-size : @font-size-toolbar;
|
font-size : @font-size-toolbar;
|
||||||
|
|||||||
@@ -30,6 +30,9 @@ body.ttrss_main {
|
|||||||
body.ttrss_main :focus {
|
body.ttrss_main :focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
body.ttrss_main select[multiple="multiple"] option {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
body.ttrss_main .post {
|
body.ttrss_main .post {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
@@ -1511,6 +1514,9 @@ body.ttrss_prefs h4 {
|
|||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
}
|
}
|
||||||
|
body.ttrss_prefs select[multiple="multiple"] option {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
body.ttrss_prefs .text-muted {
|
body.ttrss_prefs .text-muted {
|
||||||
color: #999999;
|
color: #999999;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,6 +30,9 @@ body.ttrss_main {
|
|||||||
body.ttrss_main :focus {
|
body.ttrss_main :focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
body.ttrss_main select[multiple="multiple"] option {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
body.ttrss_main .post {
|
body.ttrss_main .post {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
@@ -1511,6 +1514,9 @@ body.ttrss_prefs h4 {
|
|||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
}
|
}
|
||||||
|
body.ttrss_prefs select[multiple="multiple"] option {
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
body.ttrss_prefs .text-muted {
|
body.ttrss_prefs .text-muted {
|
||||||
color: #999999;
|
color: #999999;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user