1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-01 17:38:37 +00:00

feat(ui): avoid showing an excessive number of tags

This commit is contained in:
Frédéric Guillot 2025-06-08 15:21:59 -07:00
parent f9dce3d10f
commit 33a0e121cd
23 changed files with 471 additions and 339 deletions

View file

@ -994,6 +994,29 @@ article.category-has-unread {
font-weight: 600;
}
.entry-tags-list {
display: inline;
margin: 0;
padding: 0;
}
.entry-tags-list li {
display: inline-block;
}
.entry-tags-list li::after {
content: ", ";
}
.entry-tags-list li:last-child::after {
content: "";
}
.entry-additional-tags {
font-size: 0.8em;
margin-top: 10px;
}
.entry-website img {
vertical-align: top;
}