mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
123 lines
2.4 KiB
SCSS
123 lines
2.4 KiB
SCSS
#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;
|
|
}
|
|
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: #DEE2E3;
|
|
}
|
|
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;
|
|
}
|
|
|
|
/* 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;*/
|
|
background-color: #BC6D75;
|
|
margin-left: -15px;
|
|
border: none;
|
|
padding-left: -15px;
|
|
}
|
|
|
|
/* future */
|
|
/*[ng-controller="CategoryTreeCtrl"]{
|
|
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;
|
|
}
|
|
|
|
}
|