From c9f70650a0e6c793139f4efe745784ad585339c3 Mon Sep 17 00:00:00 2001 From: ekovi Date: Wed, 26 Feb 2014 21:07:31 +0100 Subject: [PATCH 1/2] Create _dark.scss new theme --- src/main/webapp/sass/themes/_dark.scss | 63 ++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 src/main/webapp/sass/themes/_dark.scss diff --git a/src/main/webapp/sass/themes/_dark.scss b/src/main/webapp/sass/themes/_dark.scss new file mode 100644 index 00000000..a6702666 --- /dev/null +++ b/src/main/webapp/sass/themes/_dark.scss @@ -0,0 +1,63 @@ +.btn { + border: 0; + outline: 0; +} +body { + color: #000; + background: #526b94; +} +body #toolbar { + background: #526b94; +} +[type='button'], +[ng-click='toSettings()'], +button[type='submit']:not(.btn-primary) { + background: #bc6d75; +} +button[data-toggle='dropdown'] { + background: #e6c6c9; +} +button[ui-sref*='feed'] { + background: #e6c6c9; +} +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; +} +.entry-heading-link { + background: #c7cbcc; +} +a[ng-click*='goToFeed'] { + color: #e6c6c9; +} +.entry-body-content a[target='_blank'][href^='http'] { + color: #e6c6c9; +} +span[ng-class*='unread'][unread] { + color: #000; +} +a[ng-click*='feedClicked'][selected] { + color: #526b94; +} +.unread-counter { + color: #000 !important; +} +div.entry-title a { + text-decoration: underline; + color: #bc6d75; +} +.entry { + box-shadow: none !important; +} +div.settings a { + color: #e6c6c9; +} +div.about-module a { + color: #e6c6c9; +} From 16dd5deed4135dd0a66222d79d3d15b65f892b24 Mon Sep 17 00:00:00 2001 From: ekovi Date: Wed, 26 Feb 2014 21:09:24 +0100 Subject: [PATCH 2/2] update forgot to enclose in #theme {} --- src/main/webapp/sass/themes/_dark.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/webapp/sass/themes/_dark.scss b/src/main/webapp/sass/themes/_dark.scss index a6702666..ae2111bf 100644 --- a/src/main/webapp/sass/themes/_dark.scss +++ b/src/main/webapp/sass/themes/_dark.scss @@ -1,3 +1,5 @@ +#theme-dark { + .btn { border: 0; outline: 0; @@ -61,3 +63,4 @@ div.settings a { div.about-module a { color: #e6c6c9; } +}