only use bold icons on hidpi displays

This commit is contained in:
Nils Maier 2019-08-21 14:55:44 +02:00
parent c755b3f2ab
commit be35f4d578
2 changed files with 10 additions and 4 deletions

View File

@ -104,8 +104,10 @@ html[data-platform="mac"] {
.icon-server:before { content: '\f233'; } /* '' */
.icon-question-light:before { content: '\f29c'; } /* '' */
[class^="icon-file-"]:before, [class*=" icon-file-"]:before {
font-weight: bold !important;
@media (min-resolution: 144dpi) {
[class^="icon-file-"]:before, [class*=" icon-file-"]:before {
font-weight: bold !important;
}
}
.icon-file-image {

View File

@ -276,9 +276,13 @@ body > * {
flex-grow: 0 !important;
cursor: pointer;
}
#statusNetwork:before {
font-weight: bold !important;
@media (min-resolution: 144dpi) {
#statusNetwork:before {
font-weight: bold !important;
}
}
#statusNetwork.icon-network-off {
color: crimson;
}