]> cat aescling's git repositories - mastodon.git/commitdiff
Fix style settings for images in media modal (#4220)
authorLynx Kotoura <lynx@lv9.org>
Sun, 16 Jul 2017 09:52:11 +0000 (18:52 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Sun, 16 Jul 2017 09:52:11 +0000 (11:52 +0200)
* Shrink too wide single image modal

Fix too wide react-swipeable-view-container

Fix 0067f80 shrinking all react-swipeable-view-container

Change to apply max-width of react-swipeable-view-container only under media-modal.

Fix b30b03b just a typo

* Centering contents in image-loader

Centering small img, canvas, and video in image-loader.

app/javascript/styles/components.scss

index fc797a508657cb5682b34a07106858a34e356ad3..1c4c97f18ac1c7f9cac25f122171e7bd59dd4fc8 100644 (file)
     top: 0;
     left: 0;
     right: 0;
-    width: 100%;
-    height: 100%;
+    max-width: 100%;
+    max-height: 100%;
     background-image: none;
   }
 
@@ -2967,8 +2967,9 @@ button.icon-button.active i.fa-retweet {
   video {
     max-width: 80vw;
     max-height: 80vh;
-    width: 100%;
+    width: auto;
     height: auto;
+    margin: auto;
   }
 
   .extended-video-player,
@@ -2984,6 +2985,10 @@ button.icon-button.active i.fa-retweet {
     background: url('../images/void.png') repeat;
     object-fit: contain;
   }
+
+  .react-swipeable-view-container {
+    max-width: 80vw;
+  }
 }
 
 .media-modal__close {