Explorar o código

Fix: Thumbnails alt text overflow (#4085)

* CSS fix

* Fix RTL CSS

* fix CSS (order)
maTh %!s(int64=4) %!d(string=hai) anos
pai
achega
9fc98317f9
Modificáronse 2 ficheiros con 6 adicións e 0 borrados
  1. 3 0
      p/themes/base-theme/template.css
  2. 3 0
      p/themes/base-theme/template.rtl.css

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

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

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

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