mirror of
https://github.com/miniflux/v2.git
synced 2025-09-15 18:57:04 +00:00
Highlight and sort feeds with unread entries in feeds list
This commit is contained in:
parent
1fc95a83b6
commit
4b2a25eed4
6 changed files with 45 additions and 3 deletions
|
@ -749,6 +749,12 @@ article.feed-parsing-error {
|
|||
border-color: #aaa;
|
||||
}
|
||||
|
||||
article.feed-has-unread {
|
||||
background-color: var(--feed-has-unread-background-color);
|
||||
border-style: var(--feed-has-unread-border-style);
|
||||
border-color: var(--feed-has-unread-border-color);
|
||||
}
|
||||
|
||||
.parsing-error {
|
||||
font-size: 0.85em;
|
||||
margin-top: 2px;
|
||||
|
|
|
@ -101,6 +101,9 @@
|
|||
|
||||
--parsing-error-color: #eee;
|
||||
--feed-parsing-error-background-color: #343434;
|
||||
--feed-has-unread-background-color: #1b1a1a;
|
||||
--feed-has-unread-border-style: solid;
|
||||
--feed-has-unread-border-color: rgba(82, 168, 236, 0.6);
|
||||
|
||||
--keyboard-shortcuts-li-color: #9b9b9b;
|
||||
|
||||
|
|
|
@ -101,6 +101,9 @@
|
|||
|
||||
--parsing-error-color: #333;
|
||||
--feed-parsing-error-background-color: #fcf8e3;
|
||||
--feed-has-unread-background-color: #dfd;
|
||||
--feed-has-unread-border-style: dotted;
|
||||
--feed-has-unread-border-color: var(--entry-header-border-color);
|
||||
|
||||
--keyboard-shortcuts-li-color: #333;
|
||||
|
||||
|
|
|
@ -100,6 +100,9 @@
|
|||
|
||||
--parsing-error-color: #333;
|
||||
--feed-parsing-error-background-color: #fcf8e3;
|
||||
--feed-has-unread-background-color: #dfd;
|
||||
--feed-has-unread-border-style: dotted;
|
||||
--feed-has-unread-border-color: var(--entry-header-border-color);
|
||||
|
||||
--keyboard-shortcuts-li-color: #333;
|
||||
|
||||
|
@ -208,6 +211,9 @@
|
|||
|
||||
--parsing-error-color: #eee;
|
||||
--feed-parsing-error-background-color: #343434;
|
||||
--feed-has-unread-background-color: #1b1a1a;
|
||||
--feed-has-unread-border-style: solid;
|
||||
--feed-has-unread-border-color: rgba(82, 168, 236, 0.6);
|
||||
|
||||
--keyboard-shortcuts-li-color: #9b9b9b;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue