diff options
| author | 2024-04-25 08:45:59 +0200 | |
|---|---|---|
| committer | 2024-04-25 08:45:59 +0200 | |
| commit | aac3b21a8b4fd1a2f351a63fdb70d39ac2851921 (patch) | |
| tree | cc87dac0240cbd64da786136b399eca0af920042 /p/themes/Pafat | |
| parent | 7b922668551f5dcf99a79c474a09103e78e4c703 (diff) | |
Fix: overflow expanding title in entry header (#6373)
* change HTML structure
* CSS
Diffstat (limited to 'p/themes/Pafat')
| -rw-r--r-- | p/themes/Pafat/pafat.css | 6 | ||||
| -rw-r--r-- | p/themes/Pafat/pafat.rtl.css | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/p/themes/Pafat/pafat.css b/p/themes/Pafat/pafat.css index ce4ec6742..6d5a8f523 100644 --- a/p/themes/Pafat/pafat.css +++ b/p/themes/Pafat/pafat.css @@ -798,6 +798,7 @@ a.signin { } .flux .flux_header:hover, +.flux:not(.current):hover .flux_header .title, .flux.current .flux_header { background-color: var(--background-color-grey-hover); } @@ -815,8 +816,8 @@ a.signin { border-left: 2px solid var(--border-left-article-unread); } -.flux .flux_header .item.title a, -.flux.not_read:not(.current):hover .flux_header .item.title { +.flux .flux_header .item .title a, +.flux.not_read:not(.current):hover .flux_header .item .title { color: var(--font-color-link-title); } @@ -828,6 +829,7 @@ a.signin { background-color: var(--background-color-favorite); } +.flux.favorite:not(.current):hover .flux_header .title, .flux.favorite:not(.current) .flux_header:hover, .flux.favorite.current .flux_header { background-color: var(--background-color-favorite-hover); diff --git a/p/themes/Pafat/pafat.rtl.css b/p/themes/Pafat/pafat.rtl.css index cb140f021..dca0c3295 100644 --- a/p/themes/Pafat/pafat.rtl.css +++ b/p/themes/Pafat/pafat.rtl.css @@ -798,6 +798,7 @@ a.signin { } .flux .flux_header:hover, +.flux:not(.current):hover .flux_header .title, .flux.current .flux_header { background-color: var(--background-color-grey-hover); } @@ -815,8 +816,8 @@ a.signin { border-right: 2px solid var(--border-left-article-unread); } -.flux .flux_header .item.title a, -.flux.not_read:not(.current):hover .flux_header .item.title { +.flux .flux_header .item .title a, +.flux.not_read:not(.current):hover .flux_header .item .title { color: var(--font-color-link-title); } @@ -828,6 +829,7 @@ a.signin { background-color: var(--background-color-favorite); } +.flux.favorite:not(.current):hover .flux_header .title, .flux.favorite:not(.current) .flux_header:hover, .flux.favorite.current .flux_header { background-color: var(--background-color-favorite-hover); |
