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/Ansum/_list-view.scss | 8 ++++---- p/themes/Ansum/ansum.css | 8 ++++---- p/themes/Ansum/ansum.rtl.css | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) (limited to 'p/themes/Ansum') diff --git a/p/themes/Ansum/_list-view.scss b/p/themes/Ansum/_list-view.scss index ed24e8675..3de5b3f50 100644 --- a/p/themes/Ansum/_list-view.scss +++ b/p/themes/Ansum/_list-view.scss @@ -15,7 +15,7 @@ &:hover { background: variables.$grey-lighter; - &:not(.current):hover .item.title { + &:not(.current):hover .item .title { background: variables.$grey-lighter; } } @@ -33,13 +33,13 @@ &.not_read:not(.current) { background: variables.$unread-bg; - &:hover .item.title { + &:hover .item .title { background: variables.$unread-bg; } } &.not_read { - .item.title { + .item .title { a { color: variables.$unread-font-color; } @@ -65,7 +65,7 @@ &.favorite:not(.current) { background: variables.$fav-light; - &:hover .item.title { + &:hover .item .title { background: variables.$fav-light; } } diff --git a/p/themes/Ansum/ansum.css b/p/themes/Ansum/ansum.css index f7bc0ab6c..fdd9b9653 100644 --- a/p/themes/Ansum/ansum.css +++ b/p/themes/Ansum/ansum.css @@ -989,7 +989,7 @@ main.prompt { .flux .flux_header:hover { background: #fcfaf8; } -.flux .flux_header:hover:not(.current):hover .item.title { +.flux .flux_header:hover:not(.current):hover .item .title { background: #fcfaf8; } .flux.current { @@ -1002,10 +1002,10 @@ main.prompt { .flux.not_read:not(.current) { background: #f2f6f8; } -.flux.not_read:not(.current):hover .item.title { +.flux.not_read:not(.current):hover .item .title { background: #f2f6f8; } -.flux.not_read .item.title a { +.flux.not_read .item .title a { color: #161a38; } .flux.not_read .item.website a { @@ -1021,7 +1021,7 @@ main.prompt { .flux.favorite:not(.current) { background: #fff6da; } -.flux.favorite:not(.current):hover .item.title { +.flux.favorite:not(.current):hover .item .title { background: #fff6da; } .flux .website a { diff --git a/p/themes/Ansum/ansum.rtl.css b/p/themes/Ansum/ansum.rtl.css index 919455f62..19c3e1551 100644 --- a/p/themes/Ansum/ansum.rtl.css +++ b/p/themes/Ansum/ansum.rtl.css @@ -989,7 +989,7 @@ main.prompt { .flux .flux_header:hover { background: #fcfaf8; } -.flux .flux_header:hover:not(.current):hover .item.title { +.flux .flux_header:hover:not(.current):hover .item .title { background: #fcfaf8; } .flux.current { @@ -1002,10 +1002,10 @@ main.prompt { .flux.not_read:not(.current) { background: #f2f6f8; } -.flux.not_read:not(.current):hover .item.title { +.flux.not_read:not(.current):hover .item .title { background: #f2f6f8; } -.flux.not_read .item.title a { +.flux.not_read .item .title a { color: #161a38; } .flux.not_read .item.website a { @@ -1021,7 +1021,7 @@ main.prompt { .flux.favorite:not(.current) { background: #fff6da; } -.flux.favorite:not(.current):hover .item.title { +.flux.favorite:not(.current):hover .item .title { background: #fff6da; } .flux .website a { -- cgit v1.2.3