Kaynağa Gözat

Fix thumbnail not filling entire space sometimes (#6709)

master
Eugen Rochko 6 yıl önce
committed by GitHub
ebeveyn
işleme
11697d6894
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 4AEE18F83AFDEB23
1 değiştirilmiş dosya ile 6 ekleme ve 4 silme
  1. +6
    -4
      app/javascript/mastodon/components/media_gallery.js

+ 6
- 4
app/javascript/mastodon/components/media_gallery.js Dosyayı Görüntüle

@@ -168,11 +168,13 @@ class Item extends React.PureComponent {
}

if (originalWidth > originalHeight) {
imageStyle.height = '100%';
imageStyle.width = 'auto';
imageStyle.height = '100%';
imageStyle.width = 'auto';
imageStyle.minWidth = '100%';
} else {
imageStyle.height = 'auto';
imageStyle.width = '100%';
imageStyle.height = 'auto';
imageStyle.width = '100%';
imageStyle.minHeight = '100%';
}

imageStyle.top = vShift;


Yükleniyor…
İptal
Kaydet