From 9e14c591c14b51b9460bf7c1b27346da2e804f7f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 20 May 2013 19:39:37 +0400 Subject: [PATCH] unify normal headline colors with cdm; add selected backgrounds in expandable and 3 panel mode --- css/cdm.css | 12 ++++++++---- css/tt-rss.css | 22 ++++++++++++++-------- 2 files changed, 22 insertions(+), 12 deletions(-) diff --git a/css/cdm.css b/css/cdm.css index 4adc8f38f..900c83791 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -75,10 +75,6 @@ div.cdm.expandable { border-style : solid; } -div.cdm.expandable.active { - box-shadow : inset 0px 0px 3px 0px rgba(0,0,0,0.1); -} - div.cdm.expandable > hr { display : none; } @@ -92,7 +88,12 @@ div.cdm.expandable.Unread { background : white; } +div.cdm.expandable.Selected { + background : #f9fbff; +} + div.cdm.expandable.active { + box-shadow : inset 0px 0px 3px 0px rgba(0,0,0,0.1); border-color : #88b0f0; background : white ! important; } @@ -120,6 +121,9 @@ div.cdm.expanded div.cdmHeader a.title { font-weight : bold; } +div.cdm.expanded.active { + background : white; +} div.cdm.expanded.active div.cdmHeader a.title { color : #4684ff; diff --git a/css/tt-rss.css b/css/tt-rss.css index ad80ae9f8..a9fcca136 100644 --- a/css/tt-rss.css +++ b/css/tt-rss.css @@ -182,7 +182,7 @@ a:hover { .hl div.hlTitle a { font-weight : bold; - color : #555; + color : #999; } .hl.Unread div.hlTitle a { @@ -195,15 +195,20 @@ a:hover { .hl.active div.hlTitle a { color : #4684ff; + text-shadow : 1px 1px 2px #fff; +} + +.hl.Selected { + background : #f9fbff; } .hl.Grayed { color : #909090; } -#headlines-frame div.hl:nth-child(even) { +/* #headlines-frame div.hl:nth-child(even) { background : #fafafa; -} +} */ #headlines-frame.normal { @@ -358,12 +363,9 @@ div#headlines-toolbar span.r a { } span.contentPreview { - color : #555; + color : #999; font-weight : normal; -} - -span.contentPreview:hover { - color : #4684ff; + text-shadow : 1px 1px 2px #fff; } span.hlLabelRef { @@ -1095,3 +1097,7 @@ body#ttrssPrefs hr { .dijitMenuItemLabel { font-size : 13px; } + +.dijitTreeRowSelected .dijitTreeLabel { + text-shadow : 1px 1px 2px #fff; +}