lighter display for checkboxes on headlines frame to fit better with marked/pub icons

This commit is contained in:
Andrew Dolgov 2018-12-07 22:21:35 +03:00
parent 811e1514a3
commit 44820f068b
5 changed files with 25 additions and 2 deletions

View File

@ -677,6 +677,13 @@ body.ttrss_main #headlines-frame {
-webkit-transform: translateZ(0);
-webkit-backface-visibility: hidden;
}
body.ttrss_main #headlines-frame .dijitCheckBox:not(.dijitCheckBoxChecked) {
background: transparent;
opacity: 0.7;
}
body.ttrss_main #headlines-frame .dijitCheckBox:not(.dijitCheckBoxChecked)::before {
color: #555555;
}
body.ttrss_main #headlines-frame div.feed-title {
border: 0px solid #257aa7;
border-bottom-width: 1px;

File diff suppressed because one or more lines are too long

View File

@ -796,6 +796,15 @@ body.ttrss_main {
-webkit-transform: translateZ(0);
-webkit-backface-visibility: hidden;
.dijitCheckBox:not(.dijitCheckBoxChecked) {
background: transparent;
opacity : 0.7;
}
.dijitCheckBox:not(.dijitCheckBoxChecked)::before {
color : @default-text;
}
div.feed-title {
border: 0px solid @color-link;
border-bottom-width: 1px;

View File

@ -677,6 +677,13 @@ body.ttrss_main #headlines-frame {
-webkit-transform: translateZ(0);
-webkit-backface-visibility: hidden;
}
body.ttrss_main #headlines-frame .dijitCheckBox:not(.dijitCheckBoxChecked) {
background: transparent;
opacity: 0.7;
}
body.ttrss_main #headlines-frame .dijitCheckBox:not(.dijitCheckBoxChecked)::before {
color: #555555;
}
body.ttrss_main #headlines-frame div.feed-title {
border: 0px solid #257aa7;
border-bottom-width: 1px;

File diff suppressed because one or more lines are too long