aboutsummaryrefslogtreecommitdiff
path: root/p/themes/Flat/flat.css
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2019-11-05 16:42:29 +0100
committerGravatar GitHub <noreply@github.com> 2019-11-05 16:42:29 +0100
commitbba0b0565559fbecf5df170b472cadc58627027a (patch)
tree28e3401bc56c5240cc697d3180942c6d6b4377f4 /p/themes/Flat/flat.css
parent7a4f42df4b5e33fb62e50c2ea705ec7a126966ae (diff)
Fix favorite display for "current" articles (#2634)
Favorite articles have, in most of the themes, a gold background to distinguish them from the other articles. However, it can be distracting to have such a background when reading the articles, so we should turn them back to the "default" background when articles are opened (class `.current`). Bug introduced in e9ce27d8d991d7806ca2c2af7e5282279e378885 Related PRs: - https://github.com/FreshRSS/FreshRSS/pull/2477 - https://github.com/FreshRSS/FreshRSS/pull/2611 - https://github.com/FreshRSS/FreshRSS/pull/2612 Closes https://github.com/FreshRSS/FreshRSS/issues/2618
Diffstat (limited to 'p/themes/Flat/flat.css')
-rw-r--r--p/themes/Flat/flat.css5
1 files changed, 4 insertions, 1 deletions
diff --git a/p/themes/Flat/flat.css b/p/themes/Flat/flat.css
index f7159b46f..0989321bf 100644
--- a/p/themes/Flat/flat.css
+++ b/p/themes/Flat/flat.css
@@ -803,10 +803,13 @@ a.btn {
}
.flux.favorite {
- background: #fff6da;
border-left-color: #ffc300;
}
+.flux.favorite:not(.current) {
+ background: #fff6da;
+}
+
.flux.favorite:not(.current):hover .item.title {
background: #fff6da;
}