tags display: instead of limiting to 5 tags, limit by container width %

This commit is contained in:
Andrew Dolgov
2023-03-01 21:41:52 +03:00
parent 04c2fa9f15
commit b7a6c948d0
9 changed files with 87 additions and 3 deletions

View File

@@ -73,6 +73,12 @@ body.ttrss_main .post .header .title {
font-family: system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
word-break: break-all;
}
body.ttrss_main .post .header .tags {
max-width: 25%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
body.ttrss_main .post div.content {
padding: 10px;
font-size: 16px;
@@ -1293,6 +1299,12 @@ body.ttrss_utility hr {
font-size: 11px;
font-weight: normal;
}
.cdm .header .tags {
max-width: 50%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.cdm .footer {
height: 30px;
padding-left: 5px;