From 4f8cd53b83a72d183f8b36f1a67e472ae2bd964a Mon Sep 17 00:00:00 2001 From: ekovi Date: Mon, 10 Mar 2014 13:07:23 +0100 Subject: [PATCH] Update _dark.scss cleaned style and reworked a bit --- src/main/webapp/sass/themes/_dark.scss | 118 ++++++++++++++++--------- 1 file changed, 74 insertions(+), 44 deletions(-) diff --git a/src/main/webapp/sass/themes/_dark.scss b/src/main/webapp/sass/themes/_dark.scss index 20146442..22eaac58 100644 --- a/src/main/webapp/sass/themes/_dark.scss +++ b/src/main/webapp/sass/themes/_dark.scss @@ -1,11 +1,6 @@ #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; } @@ -19,23 +14,27 @@ body #toolbar { [type='button'], [ng-click='toSettings()'], button[type='submit']:not(.btn-primary) { - background: #bc6d75; + background: #c7cbcc; } button[data-toggle='dropdown'] { - background: #e6c6c9; + background: #d8dadb; } button[ui-sref*='feed'] { - background: #DEE2E3; + background: #c7cbcc; } input[ng-model='keywords'] { background: #526b94; - margin-top: 1px; height: 32px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; + color: #d8dadb; +} +input[ng-model='keywords']:focus { + background: #d8dadb; + color: #000; } .entry-heading-link { background: #c7cbcc; @@ -63,60 +62,91 @@ div.entry-title a { box-shadow: none !important; } div.settings a { - color: #e6c6c9; + color: #d8dadb; +} +.page-header { + border: none; +} +a[ng-click^='tab ='] { + color: #d8dadb; +} +a[ng-click^='tab =']:hover { + color: #000; } div.about-module a { - color: #e6c6c9; + color: #d8dadb; } - -/* opened feed bg color - changed to grey?*, added padding*/ div.entry-body.ng-scope { - background: #D8DADB; + background: #d8dadb; padding-left: 15px; } - - -/* opened feed link - color changed to default blue */ -div.entry-body.ng-scope a[href^="http"] { - color: #428BCF; +div.entry-body.ng-scope a[href^='http'] { + color: #428bcf; } - -/* opened feed icon panel - changed to grey?*/ - #feed-accordion .entry-buttons { - /*background-color: transparent;*/ - background-color: #BC6D75; +#feed-accordion .entry-buttons { + background: #bc6d75; margin-left: -15px; border: none; - padding-left: -15px; } - -/* future */ -/*[ng-controller="CategoryTreeCtrl"]{ -display: none; -} */ - -/*____________________________________ -last - transitions - btn -> top, img shadow, tool icon frame */ - +#feed-accordion .entry-body .entry-subtitle { + display: inline; +} +.main .spinner { + margin-left: 25px; +} +div#uvTab { + visibility: hidden; +} +pre { + background: transparent; +} .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); + -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); + 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; + transition: all 390ms linear; +} +.btn { + -webkit-transition: all 400ms linear; + -moz-transition: all 400ms linear; + -ms-transition: all 400ms linear; + -o-transition: all 400ms linear; + transition: all 400ms linear; +} +input[ng-model='keywords'] { + -webkit-transition: all 400ms linear; + -moz-transition: all 400ms linear; + -ms-transition: all 400ms linear; + -o-transition: all 400ms linear; + transition: all 400ms linear; +} +a[ng-click^='tab ='] { + -webkit-transition: all 390ms linear; + -moz-transition: all 390ms linear; + -ms-transition: all 390ms linear; + -o-transition: all 390ms linear; + transition: all 390ms linear; } -.page-header { - border: none; + +/*______________ +original buttons +_______________*/ +/* +[type='button'], [ng-click='toSettings()'], button[type='submit']:not(.btn-primary) { + background: #bc6d75; } +button[data-toggle='dropdown'], button[ui-sref*='feed'] { + background: #e6c6c9; +} +*/ }