summaryrefslogtreecommitdiff
path: root/themes/night.css
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-03-01 21:41:52 +0300
committerAndrew Dolgov <[email protected]>2023-03-01 21:41:52 +0300
commitb7a6c948d078a59739f14de8454e0e7237d0722e (patch)
treeb9f6b39b13daec451dead546bf6ddde7a40be764 /themes/night.css
parent04c2fa9f156931cd4f7c3dcf468c110169f76459 (diff)
tags display: instead of limiting to 5 tags, limit by container width %
Diffstat (limited to 'themes/night.css')
-rw-r--r--themes/night.css12
1 files changed, 12 insertions, 0 deletions
diff --git a/themes/night.css b/themes/night.css
index 4c6788c2e..b1d0f61ce 100644
--- a/themes/night.css
+++ b/themes/night.css
@@ -74,6 +74,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;
@@ -1294,6 +1300,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;