From 80ff2c8ff7630808cb6634e11b33b530b77dec22 Mon Sep 17 00:00:00 2001 From: ekovi Date: Sun, 9 Mar 2014 20:40:42 +0100 Subject: [PATCH 1/2] Update _dark.scss --- src/main/webapp/sass/themes/_dark.scss | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/src/main/webapp/sass/themes/_dark.scss b/src/main/webapp/sass/themes/_dark.scss index ae2111bf..5f949d0f 100644 --- a/src/main/webapp/sass/themes/_dark.scss +++ b/src/main/webapp/sass/themes/_dark.scss @@ -20,7 +20,7 @@ button[data-toggle='dropdown'] { background: #e6c6c9; } button[ui-sref*='feed'] { - background: #e6c6c9; + background: #DEE2E3; } input[ng-model='keywords'] { background: #526b94; @@ -63,4 +63,27 @@ div.settings a { div.about-module a { color: #e6c6c9; } + +/*______________________________________________________ +opened feed bg color - changed to grey?*, added padding*/ +div.entry-body.ng-scope { +background: #D8DADB; +padding-left: 15px; +} + +/* opened feed link - color changed to default blue */ +div.entry-body.ng-scope a[href^="http"] { +color: #428BCF; +} + +/* opened feed icon panel - changed to grey?*/ +#feed-accordion .entry-buttons { +background-color: transparent; +} + +/* future */ +/*[ng-controller="CategoryTreeCtrl"]{ +display: none; +} */ + } From f78aedc30dbdc03e9ba75709fedb987b78fe9482 Mon Sep 17 00:00:00 2001 From: ekovi Date: Mon, 10 Mar 2014 00:25:20 +0100 Subject: [PATCH 2/2] Update _dark.scss some minor stuff, transition, etc. --- src/main/webapp/sass/themes/_dark.scss | 47 ++++++++++++++++++++++---- 1 file changed, 40 insertions(+), 7 deletions(-) diff --git a/src/main/webapp/sass/themes/_dark.scss b/src/main/webapp/sass/themes/_dark.scss index 5f949d0f..20146442 100644 --- a/src/main/webapp/sass/themes/_dark.scss +++ b/src/main/webapp/sass/themes/_dark.scss @@ -1,6 +1,11 @@ #theme-dark { .btn { + transition: all 400ms linear; + -webkit-transition: all 400ms linear; + -moz-transition: all 400ms linear; + -ms-transition: all 400ms linear; + -o-transition: all 400ms linear; border: 0; outline: 0; } @@ -64,21 +69,25 @@ div.about-module a { color: #e6c6c9; } -/*______________________________________________________ -opened feed bg color - changed to grey?*, added padding*/ +/* opened feed bg color - changed to grey?*, added padding*/ div.entry-body.ng-scope { -background: #D8DADB; -padding-left: 15px; + background: #D8DADB; + padding-left: 15px; } + /* opened feed link - color changed to default blue */ div.entry-body.ng-scope a[href^="http"] { -color: #428BCF; + color: #428BCF; } /* opened feed icon panel - changed to grey?*/ -#feed-accordion .entry-buttons { -background-color: transparent; + #feed-accordion .entry-buttons { + /*background-color: transparent;*/ + background-color: #BC6D75; + margin-left: -15px; + border: none; + padding-left: -15px; } /* future */ @@ -86,4 +95,28 @@ background-color: transparent; display: none; } */ +/*____________________________________ +last - transitions - btn -> top, img shadow, tool icon frame */ + +.ng-scope img { + box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3); + -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3); + -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3); + -ms-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3); + -o-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3); +} + +/* left item tree*/ +span[ng-class*='unread'] { + transition: all 390ms linear; + -webkit-transition: all 390ms linear; + -moz-transition: all 390ms linear; + -ms-transition: all 390ms linear; + -o-transition: all 390ms linear; +} + +.page-header { + border: none; +} + }