summaryrefslogtreecommitdiff
path: root/themes/night.css
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-03-20 18:33:29 +0300
committerAndrew Dolgov <[email protected]>2023-03-20 18:33:29 +0300
commit0f9488ace075b62bbc38ca77ce5a1b7c881a3a3e (patch)
treed0929b966dded143c5b36bd70582959803c0d5c0 /themes/night.css
parentcddbf5bf5a7e2c433275a3bec089f318d4f211af (diff)
combined mode: prevent left part of footer pushing right part out of viewport
Diffstat (limited to 'themes/night.css')
-rw-r--r--themes/night.css13
1 files changed, 7 insertions, 6 deletions
diff --git a/themes/night.css b/themes/night.css
index b1d0f61ce..33a239af0 100644
--- a/themes/night.css
+++ b/themes/night.css
@@ -1300,12 +1300,6 @@ 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;
@@ -1324,6 +1318,7 @@ body.ttrss_utility hr {
}
.cdm .footer .left {
flex-grow: 2;
+ min-width: 0;
}
.cdm .footer .left > * {
margin-right: 4px;
@@ -1331,6 +1326,12 @@ body.ttrss_utility hr {
.cdm .footer .right > * {
margin-left: 4px;
}
+.cdm .footer .tags {
+ max-width: 50%;
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+}
.cdm .content-inner {
margin: 10px;
line-height: 1.5;