aboutsummaryrefslogtreecommitdiff
path: root/p/themes/Ansum/_list-view.scss
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-11-06 21:54:13 +0100
committerGravatar GitHub <noreply@github.com> 2019-11-06 21:54:13 +0100
commit91cb165829badde07c42a002215cf52779d891b6 (patch)
treeb8ee6e04e32dcf6c6fc25b7b0b9fe2952d2991ba /p/themes/Ansum/_list-view.scss
parent3aa66f317b496ccd9a2df914bbc747c52081a7ad (diff)
parent6d596e9e54308297d423b23bf65338d62eebc415 (diff)
Merge pull request #2633 from FreshRSS/dev1.15.1
FreshRSS 1.15.1
Diffstat (limited to 'p/themes/Ansum/_list-view.scss')
-rw-r--r--p/themes/Ansum/_list-view.scss22
1 files changed, 10 insertions, 12 deletions
diff --git a/p/themes/Ansum/_list-view.scss b/p/themes/Ansum/_list-view.scss
index 8b8398c6f..e5a1f575a 100644
--- a/p/themes/Ansum/_list-view.scss
+++ b/p/themes/Ansum/_list-view.scss
@@ -20,24 +20,19 @@
border-left-color: $main-first;
}
- &.not_read {
+ &.not_read:not(.current) {
background: $unread-bg; //--------------------
- // border-left-color: #FF5300;
- &:hover {
- background: $unread-bg-light; //--------------------
- }
-
- &:not(.current):hover .item.title {
- background: $unread-bg-light;
-
+ &:hover .item.title {
+ background: $unread-bg;
}
+ }
+ &.not_read {
.item.title {
a {
color: $unread-font-color; //--------------------
}
-
}
.item.website {
@@ -52,12 +47,15 @@
}
&.favorite {
- background: $fav-light;
border-left-color: $fav-bg;
@include transition(all, 0.15s, ease-in-out);
+ }
- &:not(.current):hover .item.title {
+ &.favorite:not(.current) {
+ background: $fav-light;
+
+ &:hover .item.title {
background: $fav-light;
}
}