Fix: Thumbnails alt text overflow (#4085)

* CSS fix

* Fix RTL CSS

* fix CSS (order)
pull/4059/head^2
maTh 3 years ago committed by GitHub
parent f905ad772e
commit 9fc98317f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      p/themes/base-theme/template.css
  2. 3
      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;
}

@ -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;
}

Loading…
Cancel
Save