From 4b7ebe93a8a59a3bd2e7fb820795314be3db51ce Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 6 Jul 2013 12:34:58 +0400 Subject: fix broken highlighting of high-scored rows --- css/cdm.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 18bedce01..7e85cbfff 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -265,3 +265,22 @@ div#floatingTitle span.author, div#floatingTitle img.tinyFeedIcon { display : none; } + +.cdm.high .cdmHeader a.title.high, .cdm.high .cdmHeader .cdmExcerpt, +.cdm.high .cdmHeader span.author { + color : #00aa00; +} + +.cdm.Unread.high .cdmHeader a.title.high, .cdm.Unread.high .cdmHeader .cdmExcerpt, +.cdm.Unread.high .cdmHeader span.author { + color : #00dd00; +} + +.cdm .cdmHeader a.title.low, .cdm.low .cdmHeader .cdmExcerpt, +.cdm.Unread .cdmHeader a.title.low, .cdm.Unread.low .cdmHeader .cdmExcerpt, +.cdm.low .cdmHeader span.author { + color : #909090; + text-decoration : line-through; +} + + -- cgit v1.2.3 From 8ee5e9e5e69e9a54dabad9abc580cc2391198464 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 10 Jul 2013 22:11:24 +0400 Subject: rework floatingtitle --- css/cdm.css | 72 ++++++++++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 52 insertions(+), 20 deletions(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 7e85cbfff..2d0797db3 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -230,39 +230,71 @@ div.cdmHeader span.author { div#floatingTitle { position : absolute; z-index : 5; - top : 30px; - right : 20px; - border : 1px solid #ccc; - background : white; - border-radius : 3px; - box-shadow : 0px 0px 3px 0px rgba(0,0,0,0.1); + top : 26px; + right : 0px; + left : 0px; + border-color : #ccc; + border-width : 0px 0px 1px 0px; + border-style : solid; + background : #fcfcfc; color : #555; - font-size : 10px; - padding : 3px; + box-shadow : 0px 1px 1px 0px rgba(0,0,0,0.1); } div#floatingTitle > * { display : table-cell; white-space : nowrap; vertical-align : middle; + padding : 9px 5px; } -div#floatingTitle span.titleWrap { - max-width : 200px; - overflow : hidden; - text-overflow : ellipsis; +div#floatingTitle img { + margin-right : 4px; + margin-left : 4px; } -div#floatingTitle img { - padding-right : 3px; +div#floatingTitle span.author { + color : #555; + font-size : 11px; + font-weight : normal; +} + +div#floatingTitle a.title { + font-size : 14px; + color : #999; + font-weight : bold; +} +div#floatingTitle img.anchor { + margin-right : 1px; + margin-left : 0px; +} + +div#floatingTitle div.hlFeed { + padding-right : 10px; + color : #555; + font-weight : normal; + font-style : italic; + font-size : 11px; + white-space : nowrap; +} + +div#floatingTitle span.updated { + padding-right : 10px; + white-space : nowrap; + color : #555; + font-size : 11px; +} + +div#floatingTitle div.hlFeed a { + color : #555; +} + +div#floatingTitle span.titleWrap { + width : 100%; } -div#floatingTitle .dijit, -div#floatingTitle span.updated, -div#floatingTitle div.scoreWrap, -div#floatingTitle div.hlFeed, -div#floatingTitle span.author, -div#floatingTitle img.tinyFeedIcon { +div#floatingTitle .dijit, +div#floatingTitle img.hlScorePic { display : none; } -- cgit v1.2.3 From b532ef24edb5b733a7717cebe68e5e95dc3bcffe Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 10 Jul 2013 22:17:27 +0400 Subject: floating title: fix feed styling --- css/cdm.css | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 2d0797db3..475aac143 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -278,6 +278,12 @@ div#floatingTitle div.hlFeed { white-space : nowrap; } +div#floatingTitle div.hlFeed a { + border-radius : 4px; + display : inline-block; + padding : 1px 4px 1px 4px; +} + div#floatingTitle span.updated { padding-right : 10px; white-space : nowrap; -- cgit v1.2.3 From 8043035b4213aeb197e431998efac1c5fbdf7003 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 10 Jul 2013 22:24:49 +0400 Subject: fix floating title whitespace wrapping in titlewrap --- css/cdm.css | 1 + 1 file changed, 1 insertion(+) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 475aac143..65c5bf53f 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -297,6 +297,7 @@ div#floatingTitle div.hlFeed a { div#floatingTitle span.titleWrap { width : 100%; + white-space : normal; } div#floatingTitle .dijit, -- cgit v1.2.3 From da0f023745730ef2330f458945629e5ceaea89a5 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 11 Jul 2013 08:39:09 +0400 Subject: fix floating title position --- css/cdm.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 65c5bf53f..c16cf28f1 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -230,11 +230,11 @@ div.cdmHeader span.author { div#floatingTitle { position : absolute; z-index : 5; - top : 26px; + top : 25px; right : 0px; left : 0px; border-color : #ccc; - border-width : 0px 0px 1px 0px; + border-width : 1px 0px 1px 0px; border-style : solid; background : #fcfcfc; color : #555; -- cgit v1.2.3 From 7415fcf2129c4ac0cfd814b0beb917e2372447f1 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 11 Jul 2013 12:28:24 +0400 Subject: enable floating title for expandable combined mode, minor expandable mode fixes --- css/cdm.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index c16cf28f1..98fd4edf6 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -110,6 +110,10 @@ div.cdm.expandable div.cdmHeader span.titleWrap { max-width : 500px; } +div.cdm.expandable.active div.cdmHeader span.titleWrap { + white-space : normal; +} + div.cdm.expandable div.cdmHeader a.title { font-weight : bold; color : #555; -- cgit v1.2.3 From 41d37fb2c39b2b270981dac423e3d6c55293048d Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 16 Jul 2013 09:59:14 +0400 Subject: add experimental hack to show row unread status in floating title --- css/cdm.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 98fd4edf6..23b8c7767 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -268,6 +268,11 @@ div#floatingTitle a.title { color : #999; font-weight : bold; } + +div#floatingTitle.Unread a.title { + color : black; +} + div#floatingTitle img.anchor { margin-right : 1px; margin-left : 0px; -- cgit v1.2.3 From 898f86c0737835e7e24c50d45efa44a3d47c9ee6 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 16 Jul 2013 11:47:30 +0400 Subject: add some transitions for headline title color changes --- css/cdm.css | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 23b8c7767..81c481eae 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -117,6 +117,8 @@ div.cdm.expandable.active div.cdmHeader span.titleWrap { div.cdm.expandable div.cdmHeader a.title { font-weight : bold; color : #555; + -webkit-transition : color 0.2s; + transition : color 0.2s; } div.cdm.expandable.Unread div.cdmHeader a.title { @@ -135,6 +137,8 @@ div.cdm.expanded div.cdmHeader a.title { font-size : 14px; color : #999; font-weight : bold; + -webkit-transition : color 0.2s; + transition : color 0.2s; } div.cdm.expanded.active { @@ -267,6 +271,8 @@ div#floatingTitle a.title { font-size : 14px; color : #999; font-weight : bold; + -webkit-transition : color 0.2s; + transition : color 0.2s; } div#floatingTitle.Unread a.title { -- cgit v1.2.3 From 1bd46688d36ec5743c1a0246710bc6353d8fdc6f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 17 Jul 2013 22:21:27 +0400 Subject: try justify text-alignment for content --- css/cdm.css | 1 + 1 file changed, 1 insertion(+) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 81c481eae..2e1ffd2ab 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -222,6 +222,7 @@ div.cdm .hlFeed a { div.cdmContentInner p { max-width : 650px; + text-align : justify; } div.cdmContentInner iframe { -- cgit v1.2.3 From ac57b9dd19333db9bed34bc70d945568292b77de Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 26 Jul 2013 18:26:28 +0400 Subject: add experimental css hyphens support for english language --- css/cdm.css | 3 +++ 1 file changed, 3 insertions(+) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 2e1ffd2ab..234f53398 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -223,6 +223,9 @@ div.cdm .hlFeed a { div.cdmContentInner p { max-width : 650px; text-align : justify; + -webkit-hyphens: auto; + -moz-hyphens: auto; + hyphens: auto; } div.cdmContentInner iframe { -- cgit v1.2.3 From 0c0e5f3640ff6e857a978f9bdd4af35fb4716f5e Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 4 Sep 2013 17:57:04 +0400 Subject: fix wrong url() paths to toolbar.png in css --- css/cdm.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 234f53398..c91f09927 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -182,7 +182,7 @@ div.cdmFeedTitle { border-width : 0px 0px 1px 0px; border-style : solid; padding : 5px 3px 5px 5px; - background : url("images/toolbar.png") bottom left; + background : url("../images/toolbar.png") bottom left; background-repeat : repeat-x; } -- cgit v1.2.3 From 87065739cdc569bbcfe92ad6f0b6ebef3c72f3ec Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 17 Oct 2013 13:38:48 +0400 Subject: add context menu for cdmFeedTitle; change mark as read prompt for grouped headlines more clear --- css/cdm.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index c91f09927..dd4346e4c 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -341,4 +341,24 @@ div#floatingTitle img.hlScorePic { text-decoration : line-through; } +div.cdmFeedTitle > * { + display : table-cell; + vertical-align : middle; +} + +div.cdmFeedTitle a.title { + width : 100%; +} + +div.cdmFeedTitle a.catchup { + text-align : right; + color : #555; + padding-right : 10px; + font-size : 11px; + white-space : nowrap; +} + +div.cdmFeedTitle a.catchup:hover { + color : #4684ff; +} -- cgit v1.2.3 From 8d75f5b193f7a494d7f1dd698105d19db16489fa Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 26 Dec 2013 11:36:07 +0400 Subject: disable content text justification for the time being --- css/cdm.css | 1 - 1 file changed, 1 deletion(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index dd4346e4c..70f7f6ad9 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -222,7 +222,6 @@ div.cdm .hlFeed a { div.cdmContentInner p { max-width : 650px; - text-align : justify; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; -- cgit v1.2.3 From ef8e54a16dc0888b6db886a132b10617e3f1c5bf Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 25 Jan 2014 11:28:32 +0400 Subject: increase headline title font sizes a bit --- css/cdm.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 70f7f6ad9..c6e309d27 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -117,6 +117,7 @@ div.cdm.expandable.active div.cdmHeader span.titleWrap { div.cdm.expandable div.cdmHeader a.title { font-weight : bold; color : #555; + font-size : 14px; -webkit-transition : color 0.2s; transition : color 0.2s; } @@ -127,6 +128,7 @@ div.cdm.expandable.Unread div.cdmHeader a.title { div.cdm.expandable.active div.cdmHeader a.title { color : #4684ff; + font-size : 16px; } div.cdm.expanded div.cdmHeader { @@ -134,7 +136,7 @@ div.cdm.expanded div.cdmHeader { } div.cdm.expanded div.cdmHeader a.title { - font-size : 14px; + font-size : 16px; color : #999; font-weight : bold; -webkit-transition : color 0.2s; @@ -271,7 +273,7 @@ div#floatingTitle span.author { } div#floatingTitle a.title { - font-size : 14px; + font-size : 16px; color : #999; font-weight : bold; -webkit-transition : color 0.2s; -- cgit v1.2.3 From d44f3da4be8fc11543765b9dcc2743083bfd8be0 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 27 Jan 2014 19:03:35 +0400 Subject: default theme updates --- css/cdm.css | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index c6e309d27..5b004fccf 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -73,10 +73,16 @@ div.cdm.expanded { margin-bottom : 4px; } +div.cdm.expanded div.cdmFooter { + border-style : solid; + border-width : 0px 0px 1px 0px; + border-color : #f0f0f0; +} + div.cdm.expandable { background-color : #f0f0f0; border-width : 0px 0px 1px 0px; - border-color : #c0c0c0; + border-color : #ddd; border-style : solid; } @@ -98,8 +104,6 @@ div.cdm.expandable.Selected { } div.cdm.expandable.active { - box-shadow : inset 0px 0px 3px 0px rgba(0,0,0,0.1); - border-color : #88b0f0; background : white ! important; } @@ -247,9 +251,9 @@ div#floatingTitle { right : 0px; left : 0px; border-color : #ccc; - border-width : 1px 0px 1px 0px; + border-width : 0px 0px 1px 0px; border-style : solid; - background : #fcfcfc; + background : white; color : #555; box-shadow : 0px 1px 1px 0px rgba(0,0,0,0.1); } -- cgit v1.2.3 From 1bffd1068faee6c33ea86dcec188679d5f1ea4c8 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 27 Jan 2014 22:03:42 +0400 Subject: unify main and headlines toolbar --- css/cdm.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 5b004fccf..ef3ef52d6 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -247,7 +247,7 @@ div.cdmHeader span.author { div#floatingTitle { position : absolute; z-index : 5; - top : 25px; + top : 0px; right : 0px; left : 0px; border-color : #ccc; -- cgit v1.2.3 From a1f4151ecdb0a19c19f2678b41ecfd24f795f5d1 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 28 Jan 2014 00:04:36 +0400 Subject: prefs style updates, etc --- css/cdm.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index ef3ef52d6..3c6f72e1e 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -250,8 +250,8 @@ div#floatingTitle { top : 0px; right : 0px; left : 0px; - border-color : #ccc; - border-width : 0px 0px 1px 0px; + border-color : #eee; + border-width : 0px 0px 1px 1px; border-style : solid; background : white; color : #555; -- cgit v1.2.3 From 752b3f64049b7b3deedea522a46d4058b70b0b46 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 28 Jan 2014 00:37:52 +0400 Subject: improve contrast a bit --- css/cdm.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 3c6f72e1e..a784b04dd 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -255,7 +255,7 @@ div#floatingTitle { border-style : solid; background : white; color : #555; - box-shadow : 0px 1px 1px 0px rgba(0,0,0,0.1); + box-shadow : 0px 1px 1px -1px rgba(0,0,0,0.1); } div#floatingTitle > * { -- cgit v1.2.3 From 1c51dc736cb16455c3541a0d09a293fd0f1e08e3 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 28 Jan 2014 00:40:53 +0400 Subject: minor css tweak --- css/cdm.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index a784b04dd..1c2311399 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -251,7 +251,7 @@ div#floatingTitle { right : 0px; left : 0px; border-color : #eee; - border-width : 0px 0px 1px 1px; + border-width : 0px 0px 1px 0px; border-style : solid; background : white; color : #555; -- cgit v1.2.3 From 03700cb6398e26c197ccc91ce4d8b85b60f49ba8 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 28 Jan 2014 15:40:33 +0400 Subject: increase border contrast a bit --- css/cdm.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 1c2311399..a7b7c74f5 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -68,6 +68,10 @@ div.cdmFooter { clear : both; } +div.cdm { + margin-right : 4px; +} + div.cdm.expanded { margin-top : 4px; margin-bottom : 4px; @@ -76,7 +80,7 @@ div.cdm.expanded { div.cdm.expanded div.cdmFooter { border-style : solid; border-width : 0px 0px 1px 0px; - border-color : #f0f0f0; + border-color : #ddd; } div.cdm.expandable { @@ -250,7 +254,7 @@ div#floatingTitle { top : 0px; right : 0px; left : 0px; - border-color : #eee; + border-color : #ddd; border-width : 0px 0px 1px 0px; border-style : solid; background : white; -- cgit v1.2.3 From 5470cfab6dc09c1e6fda29d145d746d2c46ae42d Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 28 Jan 2014 23:37:07 +0400 Subject: add some experimental font family updates for headlines and chrome elements --- css/cdm.css | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index a7b7c74f5..eb4a2243c 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -123,11 +123,15 @@ div.cdm.expandable.active div.cdmHeader span.titleWrap { } div.cdm.expandable div.cdmHeader a.title { - font-weight : bold; + font-weight : 600; color : #555; font-size : 14px; -webkit-transition : color 0.2s; transition : color 0.2s; + text-rendering: optimizelegibility; + font-family : "Segoe WP Semibold", "Segoe UI Semibold", + "Segoe UI Web Semibold", "Segoe UI", "Helvetica Neue", + Helvetica, Arial, sans-serif; } div.cdm.expandable.Unread div.cdmHeader a.title { @@ -137,6 +141,11 @@ div.cdm.expandable.Unread div.cdmHeader a.title { div.cdm.expandable.active div.cdmHeader a.title { color : #4684ff; font-size : 16px; + font-weight : 600; + text-rendering: optimizelegibility; + font-family : "Segoe WP Semibold", "Segoe UI Semibold", + "Segoe UI Web Semibold", "Segoe UI", "Helvetica Neue", + Helvetica, Arial, sans-serif; } div.cdm.expanded div.cdmHeader { @@ -146,9 +155,13 @@ div.cdm.expanded div.cdmHeader { div.cdm.expanded div.cdmHeader a.title { font-size : 16px; color : #999; - font-weight : bold; + font-weight : 600; -webkit-transition : color 0.2s; transition : color 0.2s; + text-rendering: optimizelegibility; + font-family : "Segoe WP Semibold", "Segoe UI Semibold", + "Segoe UI Web Semibold", "Segoe UI", "Helvetica Neue", + Helvetica, Arial, sans-serif; } div.cdm.expanded.active { @@ -283,9 +296,13 @@ div#floatingTitle span.author { div#floatingTitle a.title { font-size : 16px; color : #999; - font-weight : bold; -webkit-transition : color 0.2s; transition : color 0.2s; + font-weight : 600; + text-rendering: optimizelegibility; + font-family : "Segoe WP Semibold", "Segoe UI Semibold", + "Segoe UI Web Semibold", "Segoe UI", "Helvetica Neue", + Helvetica, Arial, sans-serif; } div#floatingTitle.Unread a.title { @@ -293,7 +310,6 @@ div#floatingTitle.Unread a.title { } div#floatingTitle img.anchor { - margin-right : 1px; margin-left : 0px; } -- cgit v1.2.3 From b4eff716b2d515a32d71813de872529d827df71d Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 29 Jan 2014 00:04:36 +0400 Subject: reduce size of h1,2,3 elements inside article content --- css/cdm.css | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index eb4a2243c..560c68fdd 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -61,6 +61,15 @@ div.cdmContentInner img { height : auto; } +div.cdmContentInner h1 { + font-size : 16px; +} + +div.cdmContentInner h2, +div.cdmContentInner h3 { + font-size : 14px; +} + div.cdmFooter { padding : 5px; font-weight : normal; -- cgit v1.2.3 From 029005c49b29bc5deaebb45ccfb098a0196a2ff3 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 29 Jan 2014 00:21:57 +0400 Subject: minor style updates to make 3panel headlines mode look closer to cdm --- css/cdm.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 560c68fdd..5de6cd824 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -199,7 +199,7 @@ div.cdm.active div.cdmContent { span.cdmExcerpt { font-size : 11px; - color : #555; + color : #999; font-weight : normal; cursor : pointer; } -- cgit v1.2.3 From 013507bff4fc5f30e80b77335a042ccd6ae4e391 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 29 Jan 2014 16:53:42 +0400 Subject: apply heading style to h4 --- css/cdm.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 5de6cd824..b8c763b31 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -66,7 +66,8 @@ div.cdmContentInner h1 { } div.cdmContentInner h2, -div.cdmContentInner h3 { +div.cdmContentInner h3, +div.cdmContentInner h4 { font-size : 14px; } -- cgit v1.2.3 From d2cd36fb52af4e8809b8899b7bfa920eaa505769 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 29 Jan 2014 21:05:04 +0400 Subject: increase main reading font to 15px and set line-height to 1.5 --- css/cdm.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index b8c763b31..c4f9111c9 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -52,7 +52,8 @@ div.cdmHeader input { div.cdmContentInner { margin : 10px; - line-height : 20px; + line-height : 1.5; + font-size : 15px; } div.cdmContentInner img { @@ -68,7 +69,7 @@ div.cdmContentInner h1 { div.cdmContentInner h2, div.cdmContentInner h3, div.cdmContentInner h4 { - font-size : 14px; + font-size : 15px; } div.cdmFooter { -- cgit v1.2.3 From 92d9e4f5623ee67265d0ce5425589992fc02942c Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 9 Feb 2014 01:40:17 +0400 Subject: use ubuntu fontset as one of the alternatives for headings --- css/cdm.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index c4f9111c9..353fe2e71 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -141,7 +141,7 @@ div.cdm.expandable div.cdmHeader a.title { transition : color 0.2s; text-rendering: optimizelegibility; font-family : "Segoe WP Semibold", "Segoe UI Semibold", - "Segoe UI Web Semibold", "Segoe UI", "Helvetica Neue", + "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "Helvetica Neue", Helvetica, Arial, sans-serif; } @@ -155,7 +155,7 @@ div.cdm.expandable.active div.cdmHeader a.title { font-weight : 600; text-rendering: optimizelegibility; font-family : "Segoe WP Semibold", "Segoe UI Semibold", - "Segoe UI Web Semibold", "Segoe UI", "Helvetica Neue", + "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "Helvetica Neue", Helvetica, Arial, sans-serif; } @@ -171,7 +171,7 @@ div.cdm.expanded div.cdmHeader a.title { transition : color 0.2s; text-rendering: optimizelegibility; font-family : "Segoe WP Semibold", "Segoe UI Semibold", - "Segoe UI Web Semibold", "Segoe UI", "Helvetica Neue", + "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "Helvetica Neue", Helvetica, Arial, sans-serif; } @@ -312,7 +312,7 @@ div#floatingTitle a.title { font-weight : 600; text-rendering: optimizelegibility; font-family : "Segoe WP Semibold", "Segoe UI Semibold", - "Segoe UI Web Semibold", "Segoe UI", "Helvetica Neue", + "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "Helvetica Neue", Helvetica, Arial, sans-serif; } -- cgit v1.2.3 From e9db9f945c745ea100dc13702c4bb29b42ae392d Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 9 Feb 2014 02:50:02 +0400 Subject: add dejavu sans to heading font list --- css/cdm.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'css/cdm.css') diff --git a/css/cdm.css b/css/cdm.css index 353fe2e71..70ed6d732 100644 --- a/css/cdm.css +++ b/css/cdm.css @@ -141,7 +141,7 @@ div.cdm.expandable div.cdmHeader a.title { transition : color 0.2s; text-rendering: optimizelegibility; font-family : "Segoe WP Semibold", "Segoe UI Semibold", - "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "Helvetica Neue", + "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "DejaVu Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; } @@ -155,7 +155,7 @@ div.cdm.expandable.active div.cdmHeader a.title { font-weight : 600; text-rendering: optimizelegibility; font-family : "Segoe WP Semibold", "Segoe UI Semibold", - "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "Helvetica Neue", + "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "DejaVu Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; } @@ -171,7 +171,7 @@ div.cdm.expanded div.cdmHeader a.title { transition : color 0.2s; text-rendering: optimizelegibility; font-family : "Segoe WP Semibold", "Segoe UI Semibold", - "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "Helvetica Neue", + "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "DejaVu Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; } @@ -312,7 +312,7 @@ div#floatingTitle a.title { font-weight : 600; text-rendering: optimizelegibility; font-family : "Segoe WP Semibold", "Segoe UI Semibold", - "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "Helvetica Neue", + "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "DejaVu Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; } -- cgit v1.2.3