1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-24 11:56:36 +02:00

unify normal headline colors with cdm; add selected backgrounds in expandable and 3 panel mode

This commit is contained in:
Andrew Dolgov 2013-05-20 19:39:37 +04:00
parent 6938c03658
commit 9e14c591c1
2 changed files with 22 additions and 12 deletions

View File

@ -75,10 +75,6 @@ div.cdm.expandable {
border-style : solid; border-style : solid;
} }
div.cdm.expandable.active {
box-shadow : inset 0px 0px 3px 0px rgba(0,0,0,0.1);
}
div.cdm.expandable > hr { div.cdm.expandable > hr {
display : none; display : none;
} }
@ -92,7 +88,12 @@ div.cdm.expandable.Unread {
background : white; background : white;
} }
div.cdm.expandable.Selected {
background : #f9fbff;
}
div.cdm.expandable.active { div.cdm.expandable.active {
box-shadow : inset 0px 0px 3px 0px rgba(0,0,0,0.1);
border-color : #88b0f0; border-color : #88b0f0;
background : white ! important; background : white ! important;
} }
@ -120,6 +121,9 @@ div.cdm.expanded div.cdmHeader a.title {
font-weight : bold; font-weight : bold;
} }
div.cdm.expanded.active {
background : white;
}
div.cdm.expanded.active div.cdmHeader a.title { div.cdm.expanded.active div.cdmHeader a.title {
color : #4684ff; color : #4684ff;

View File

@ -182,7 +182,7 @@ a:hover {
.hl div.hlTitle a { .hl div.hlTitle a {
font-weight : bold; font-weight : bold;
color : #555; color : #999;
} }
.hl.Unread div.hlTitle a { .hl.Unread div.hlTitle a {
@ -195,15 +195,20 @@ a:hover {
.hl.active div.hlTitle a { .hl.active div.hlTitle a {
color : #4684ff; color : #4684ff;
text-shadow : 1px 1px 2px #fff;
}
.hl.Selected {
background : #f9fbff;
} }
.hl.Grayed { .hl.Grayed {
color : #909090; color : #909090;
} }
#headlines-frame div.hl:nth-child(even) { /* #headlines-frame div.hl:nth-child(even) {
background : #fafafa; background : #fafafa;
} } */
#headlines-frame.normal { #headlines-frame.normal {
@ -358,12 +363,9 @@ div#headlines-toolbar span.r a {
} }
span.contentPreview { span.contentPreview {
color : #555; color : #999;
font-weight : normal; font-weight : normal;
} text-shadow : 1px 1px 2px #fff;
span.contentPreview:hover {
color : #4684ff;
} }
span.hlLabelRef { span.hlLabelRef {
@ -1095,3 +1097,7 @@ body#ttrssPrefs hr {
.dijitMenuItemLabel { .dijitMenuItemLabel {
font-size : 13px; font-size : 13px;
} }
.dijitTreeRowSelected .dijitTreeLabel {
text-shadow : 1px 1px 2px #fff;
}