1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-07-22 17:18:37 +00:00

Show feeds with errors first

This commit is contained in:
Frédéric Guillot 2017-12-26 20:42:43 -08:00
parent 5a721e694b
commit a475b875c5
6 changed files with 47 additions and 16 deletions

View file

@ -172,6 +172,15 @@ input[type="text"]:focus {
color: #ddd;
}
/* Feeds list */
article.feed-parsing-error {
background-color: #343434;
}
.parsing-error {
color: #eee;
}
/* Entry view */
.entry header {
border-color: #333;

View file

@ -485,6 +485,22 @@ a.button {
display: none;
}
/* Feeds list */
article.feed-parsing-error {
background-color: #fcf8e3;
border-color: #aaa;
}
.parsing-error {
font-size: 0.85em;
margin-top: 2px;
color: #333;
}
.parsing-error-count {
cursor: pointer;
}
/* Entry view */
.entry header {
padding-bottom: 5px;