aboutsummaryrefslogtreecommitdiff
path: root/p/themes/base-theme
diff options
context:
space:
mode:
authorGravatar maTh <1645099+math-GH@users.noreply.github.com> 2024-05-11 23:41:21 +0200
committerGravatar GitHub <noreply@github.com> 2024-05-11 23:41:21 +0200
commitb4eca4ba03f2455389396dc6d7965055177d9a2c (patch)
tree7997471a76e921bc2fe61bc961a3774a35784864 /p/themes/base-theme
parentfa731db2861fef5cd0911a1566bed4328a12ab78 (diff)
Fixed: clickable link block (#6444)
* <span><a> => only <a> * update frss.css * update themes
Diffstat (limited to 'p/themes/base-theme')
-rw-r--r--p/themes/base-theme/frss.css12
-rw-r--r--p/themes/base-theme/frss.rtl.css12
2 files changed, 10 insertions, 14 deletions
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) {