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;
@ -1794,12 +1796,16 @@ body#sharepopup input {
.flat #filterDlg_Matches span.filterRule {
color: green;
}
.flat .filterRules span.inverse,
.flat #filterDlg_Matches span.filterRule.inverse {
color: red;
}
.flat .dijitToolbar {
font-size: 13px;
padding: 0px;
}
.flat .dijitTab:not(.dijitTabChecked) {
background: #f5f5f5;
.flat .dijitAccordionContainer {
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}
.flat .dijitCheckBox.dijitCheckBoxChecked {
background-color: #69C671;
@ -1820,6 +1826,15 @@ body#sharepopup input {
.flat .dijitTree .dijitFolderOpened {
display: none;
}
.flat .dijitTree .dijitTreeRowSelected .filterRules span {
color: white;
}
.flat .dijitTree .dijitTreeRowSelected .dijitTreeExpando {
color: #257aa7;
}
.flat .dijitTree .dijitTreeNode .dijitTreeRow.dijitTreeRowSelected {
color: white;
}
.flat .dijitTree .dijitTreeRow .dijitTreeExpando {
position: relative;
top: -2px;
@ -1884,31 +1899,15 @@ body#sharepopup input {
/* Support for IE. */
font-feature-settings: 'liga';
}
.flat .filterRules span.inverse,
.flat #filterDlg_Matches span.filterRule.inverse {
color: red;
}
.flat .dijitDialog .dijitDialogPaneContent {
background: #f5f5f5;
}
.flat .dijitAccordionContainer {
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}
.flat .dijitTab:not(.dijitTabChecked) {
background: #f5f5f5;
}
.flat .dijitCheckBox {
background: #ccc;
}
.flat .dijitTree .dijitTreeRowSelected .dijitTreeExpando {
color: #257aa7;
}
.flat .dijitTree .dijitTreeNode .dijitTreeRow.dijitTreeRowSelected {
color: white;
}
.flat .dijitTree .dijitTreeRowSelected .filterRules span {
color: white;
}
.flat .dijitTree .dijitTreeNode .dijitTreeRow {
padding: 4px 0px 4px;
border-width: 1px;

File diff suppressed because one or more lines are too long

View File

@ -27,14 +27,6 @@
box-shadow : 0px 0px 8px rgba(0,0,0,0.1);
}
.dijitDialog .dijitDialogPaneContent {
background : @bg-panel;
}
.dijitTab:not(.dijitTabChecked) {
background : @bg-panel;
}
.dijitCheckBox.dijitCheckBoxChecked {
background-color : #69C671;
}

View File

@ -1188,11 +1188,13 @@ body.ttrss_main {
opacity : 0.2;
}
#floatingTitle.marked i.marked-pic,
.cdm.marked .left i.marked-pic,
.hl.marked .left i.marked-pic {
color : @color-marked;
}
#floatingTitle.published i.pub-pic,
.cdm.published .left i.pub-pic,
.hl.published .left i.pub-pic {
color : @color-published;

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;
}