From b4eca4ba03f2455389396dc6d7965055177d9a2c Mon Sep 17 00:00:00 2001 From: maTh <1645099+math-GH@users.noreply.github.com> Date: Sat, 11 May 2024 23:41:21 +0200 Subject: Fixed: clickable link block (#6444) * => only * update frss.css * update themes --- p/themes/base-theme/frss.css | 12 +++++------- p/themes/base-theme/frss.rtl.css | 12 +++++------- 2 files changed, 10 insertions(+), 14 deletions(-) (limited to 'p/themes/base-theme') diff --git a/p/themes/base-theme/frss.css b/p/themes/base-theme/frss.css index 1f010cc31..ff1be45b9 100644 --- a/p/themes/base-theme/frss.css +++ b/p/themes/base-theme/frss.css @@ -1294,11 +1294,6 @@ a.website:hover .favicon { vertical-align: top; } -.flux .flux_header .item .title a { - color: var(--frss-font-color-dark); - text-decoration: none; -} - .flux .flux_header .item.thumbnail { line-height: 0; padding: var(--frss-padding-top-bottom) var(--frss-padding-flux-items); @@ -1353,13 +1348,16 @@ a.website:hover .favicon { } .flux .flux_header .item .title { + display: inline-block; + max-width: 100%; + min-width: calc(100% - 155px); + color: var(--frss-font-color-dark); position: absolute; top: 0; overflow: hidden; text-overflow: ellipsis; - display: inline-block; box-sizing: border-box; - max-width: 100%; + text-decoration: none; } .flux .flux_header .item .title:has(~.date) { diff --git a/p/themes/base-theme/frss.rtl.css b/p/themes/base-theme/frss.rtl.css index 3085529fc..b2a2b9265 100644 --- a/p/themes/base-theme/frss.rtl.css +++ b/p/themes/base-theme/frss.rtl.css @@ -1294,11 +1294,6 @@ a.website:hover .favicon { vertical-align: top; } -.flux .flux_header .item .title a { - color: var(--frss-font-color-dark); - text-decoration: none; -} - .flux .flux_header .item.thumbnail { line-height: 0; padding: var(--frss-padding-top-bottom) var(--frss-padding-flux-items); @@ -1353,13 +1348,16 @@ a.website:hover .favicon { } .flux .flux_header .item .title { + display: inline-block; + max-width: 100%; + min-width: calc(100% - 155px); + color: var(--frss-font-color-dark); position: absolute; top: 0; overflow: hidden; text-overflow: ellipsis; - display: inline-block; box-sizing: border-box; - max-width: 100%; + text-decoration: none; } .flux .flux_header .item .title:has(~.date) { -- cgit v1.2.3