Kaynağa Gözat

Fix: Thumbnails alt text overflow (#4085)

* CSS fix

* Fix RTL CSS

* fix CSS (order)
maTh 4 yıl önce
ebeveyn
işleme
9fc98317f9

+ 3 - 0
p/themes/base-theme/template.css

@@ -803,8 +803,11 @@ input[type="search"] {
 }
 }
 
 
 .flux .item.thumbnail img {
 .flux .item.thumbnail img {
+	background: repeating-linear-gradient( -45deg, #ddd, #ddd 5px, transparent 5px, transparent 10px );
+	display: inline-block;
 	width: 100%;
 	width: 100%;
 	height: 100%;
 	height: 100%;
+	overflow: hidden;
 	object-fit: cover;
 	object-fit: cover;
 }
 }
 
 

+ 3 - 0
p/themes/base-theme/template.rtl.css

@@ -803,8 +803,11 @@ input[type="search"] {
 }
 }
 
 
 .flux .item.thumbnail img {
 .flux .item.thumbnail img {
+	background: repeating-linear-gradient( 45deg, #ddd, #ddd 5px, transparent 5px, transparent 10px );
+	display: inline-block;
 	width: 100%;
 	width: 100%;
 	height: 100%;
 	height: 100%;
+	overflow: hidden;
 	object-fit: cover;
 	object-fit: cover;
 }
 }