Procházet zdrojové kódy

Fix weird hover issues on overflowing .item-element.title (#9140)

Just remove the whole shebang leftover from the pre-grid CSS.

Fix #8824.
Frans de Jonge před 5 dny
rodič
revize
6e7bd22c1b
2 změnil soubory, kde provedl 2 přidání a 10 odebrání
  1. 1 5
      p/themes/base-theme/frss.css
  2. 1 5
      p/themes/base-theme/frss.rtl.css

+ 1 - 5
p/themes/base-theme/frss.css

@@ -1516,11 +1516,6 @@ a.website:hover .favicon {
 	font-weight: bold;
 }
 
-.flux:not(.current):hover .flux_header.has-date .item .title {
-	padding-right: 0.5rem;
-	z-index: 2;
-}
-
 .flux:not(.current):hover .item .title {
 	background-color: inherit;
 }
@@ -1581,6 +1576,7 @@ a.website:hover .favicon {
 	grid-template-columns: minmax(0, 1fr) auto;
 	grid-template-areas: "title date"
 		"summary .";
+	column-gap: 0.5rem;
 	align-content: center;
 }
 

+ 1 - 5
p/themes/base-theme/frss.rtl.css

@@ -1516,11 +1516,6 @@ a.website:hover .favicon {
 	font-weight: bold;
 }
 
-.flux:not(.current):hover .flux_header.has-date .item .title {
-	padding-left: 0.5rem;
-	z-index: 2;
-}
-
 .flux:not(.current):hover .item .title {
 	background-color: inherit;
 }
@@ -1581,6 +1576,7 @@ a.website:hover .favicon {
 	grid-template-columns: minmax(0, 1fr) auto;
 	grid-template-areas: "title date"
 		"summary .";
+	column-gap: 0.5rem;
 	align-content: center;
 }