1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 15:45:56 +00:00

less: fix syntax errors

This commit is contained in:
Andrew Dolgov
2018-12-07 08:59:53 +03:00
parent b786713560
commit 8458dc2082
7 changed files with 37 additions and 34 deletions

View File

@@ -1004,10 +1004,12 @@ body.ttrss_main i.icon-syndicate {
body.ttrss_main i.icon-no-feed {
opacity: 0.2;
}
body.ttrss_main #floatingTitle.marked i.marked-pic,
body.ttrss_main .cdm.marked .left i.marked-pic,
body.ttrss_main .hl.marked .left i.marked-pic {
color: #ffc069;
}
body.ttrss_main #floatingTitle.published i.pub-pic,
body.ttrss_main .cdm.published .left i.pub-pic,
body.ttrss_main .hl.published .left i.pub-pic {
color: #ff7c4b;
@@ -1805,12 +1807,6 @@ body#sharepopup input {
.flat .dijitAccordionContainer {
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}
.flat .dijitDialog .dijitDialogPaneContent {
background: #222222;
}
.flat .dijitTab:not(.dijitTabChecked) {
background: #222222;
}
.flat .dijitCheckBox.dijitCheckBoxChecked {
background-color: #69C671;
}
@@ -1986,6 +1982,12 @@ body.flat.ttrss_main .insensitive {
body.flat.ttrss_main .dijitAccordionInnerContainerSelected .dijitAccordionTitle {
color: white;
}
body.flat.ttrss_main .dijitDialog .dijitDialogPaneContent {
background: #222222;
}
body.flat.ttrss_main .dijitTab:not(.dijitTabChecked) {
background: #222222;
}
body.flat.ttrss_main textarea {
color: #cccccc;
}

File diff suppressed because one or more lines are too long

View File

@@ -117,6 +117,14 @@ body.flat.ttrss_main {
color : white;
}
.dijitDialog .dijitDialogPaneContent {
background : @bg-panel;
}
.dijitTab:not(.dijitTabChecked) {
background : @bg-panel;
}
textarea {
color : @fg-light;
}