Fix for FreshRSS 1.23.2-dev (#221)

This commit is contained in:
maTh 2024-03-17 20:11:24 +01:00 committed by GitHub
parent 109246223f
commit 5bd68a10e8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 11 deletions

View file

@ -2,7 +2,7 @@
"name": "Title-Wrap", "name": "Title-Wrap",
"author": "₣rans de Jonge, Joris Kinable", "author": "₣rans de Jonge, Joris Kinable",
"description": "Applies a line-wrap to long article titles, as opposed to truncating the title when it overflows its display area.", "description": "Applies a line-wrap to long article titles, as opposed to truncating the title when it overflows its display area.",
"version": "0.2", "version": "0.2.1",
"entrypoint": "TitleWrap", "entrypoint": "TitleWrap",
"type": "user" "type": "user"
} }

View file

@ -6,21 +6,20 @@
display: table; display: table;
} }
.flux .item { .flux .flux_header .item {
flex-shrink: 0; flex-shrink: 0;
line-height: normal; line-height: normal;
padding: .3em 0;
} }
.flux .item > a { .flux .flux_header .item > a {
white-space: normal; white-space: normal;
} }
.flux:not(.current):hover .item.title { .flux:not(.current):hover .flux_header .item.title {
position: relative; position: relative;
max-width: inherit; max-width: inherit;
} }
.flux_header .title { .flux .flux_header .title {
flex: auto; flex: auto;
} }

View file

@ -6,21 +6,20 @@
display: table; display: table;
} }
.flux .item { .flux .flux_header .item {
flex-shrink: 0; flex-shrink: 0;
line-height: normal; line-height: normal;
padding: .3em 0;
} }
.flux .item > a { .flux .flux_header .item > a {
white-space: normal; white-space: normal;
} }
.flux:not(.current):hover .item.title { .flux:not(.current):hover .flux_header .item.title {
position: relative; position: relative;
max-width: inherit; max-width: inherit;
} }
.flux_header .title { .flux .flux_header .title {
flex: auto; flex: auto;
} }