combined mode: prevent left part of footer pushing right part out of viewport

This commit is contained in:
Andrew Dolgov
2023-03-20 18:33:29 +03:00
parent cddbf5bf5a
commit 0f9488ace0
7 changed files with 50 additions and 43 deletions

View File

@@ -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;