aboutsummaryrefslogtreecommitdiff
path: root/p/themes/Swage
diff options
context:
space:
mode:
Diffstat (limited to 'p/themes/Swage')
-rw-r--r--p/themes/Swage/swage.css10
-rw-r--r--p/themes/Swage/swage.scss18
2 files changed, 13 insertions, 15 deletions
diff --git a/p/themes/Swage/swage.css b/p/themes/Swage/swage.css
index 6528d2305..3bf510099 100644
--- a/p/themes/Swage/swage.css
+++ b/p/themes/Swage/swage.css
@@ -585,14 +585,14 @@ form th {
.flux:hover:not(.current):hover .item.title,
.flux .current:not(.current):hover .item.title {
background: #fff; }
- .flux.not_read:not(.current) {
- background: #fff3ed; }
- .flux.not_read:not(.current):hover .item.title {
- background: #fff3ed; }
- .flux.favorite {
+ .flux.favorite:not(.current) {
background: #fff6da; }
.flux.favorite:not(.current):hover .item.title {
background: #fff6da; }
+ .flux.not_read:not(.current) {
+ background: #fff3ed; }
+ .flux.not_read:not(.current):hover .item.title {
+ background: #fff3ed; }
.flux .date {
color: #969696;
font-size: 0.7rem; }
diff --git a/p/themes/Swage/swage.scss b/p/themes/Swage/swage.scss
index 9c2702fc0..f37739d03 100644
--- a/p/themes/Swage/swage.scss
+++ b/p/themes/Swage/swage.scss
@@ -928,21 +928,19 @@ form {
}
}
- &.not_read {
- &:not(.current) {
- background: $color_unread;
- }
+ &.favorite:not(.current) {
+ background: $color_stared;
- &:not(.current):hover .item.title {
- background: $color_unread;
+ &:hover .item.title {
+ background: $color_stared;
}
}
- &.favorite, {
- background: $color_stared;
+ &.not_read:not(.current) {
+ background: $color_unread;
- &:not(.current):hover .item.title {
- background: $color_stared;
+ &:hover .item.title {
+ background: $color_unread;
}
}