From aac3b21a8b4fd1a2f351a63fdb70d39ac2851921 Mon Sep 17 00:00:00 2001 From: maTh <1645099+math-GH@users.noreply.github.com> Date: Thu, 25 Apr 2024 08:45:59 +0200 Subject: Fix: overflow expanding title in entry header (#6373) * change HTML structure * CSS --- p/themes/Pafat/pafat.css | 6 ++++-- p/themes/Pafat/pafat.rtl.css | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) (limited to 'p/themes/Pafat') 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); -- cgit v1.2.3