about summary refs log tree commit diff
path: root/app/javascript/styles
diff options
context:
space:
mode:
authorOndřej Hruška <ondra@ondrovo.com>2017-09-22 21:47:14 +0200
committerOndřej Hruška <ondra@ondrovo.com>2017-09-22 21:47:14 +0200
commit31dd261375aa50a56aff8552d9feeb571ba0e11e (patch)
tree058d246721244b393bf6278c8a6d37c58e748db9 /app/javascript/styles
parentc2b479efecf1ce1f4a45e626963b7ce7e203b8d6 (diff)
applied blackle's fix for gallery offset with full-width media
Diffstat (limited to 'app/javascript/styles')
-rw-r--r--app/javascript/styles/components.scss30
1 files changed, 13 insertions, 17 deletions
diff --git a/app/javascript/styles/components.scss b/app/javascript/styles/components.scss
index c79a2654c..503fb41f1 100644
--- a/app/javascript/styles/components.scss
+++ b/app/javascript/styles/components.scss
@@ -1,6 +1,14 @@
 @import 'variables';
 @import 'variables-glitch';
 
+@mixin fullwidth-gallery {
+  &.full-width {
+    margin-left: -22px;
+    margin-right: -22px;
+    width: inherit;
+  }
+}
+
 .app-body {
   -webkit-overflow-scrolling: touch;
   -ms-overflow-style: -ms-autohiding-scrollbar;
@@ -2706,10 +2714,7 @@ button.icon-button.active i.fa-retweet {
     margin-top: 15px; // Add margin when used bare for NSFW video player
   }
 
-  &.full-width {
-    margin-left: -68px;
-    width: calc(100% + 80px);
-  }
+  @include fullwidth-gallery;
 }
 
 .media-spoiler__warning {
@@ -4135,15 +4140,12 @@ button.icon-button.active i.fa-retweet {
   background: $base-shadow-color;
   width: 100%;
 
-  &.full-width {
-    margin-left: -68px;
-    width: calc(100% + 80px);
-  }
-
   .detailed-status & {
     margin-left:-10px;
     width: calc(100% + 22px);
   }
+
+  @include fullwidth-gallery;
 }
 
 .media-gallery__item {
@@ -4214,10 +4216,7 @@ button.icon-button.active i.fa-retweet {
   position: relative;
   width: 100%;
 
-  &.full-width {
-    margin-left: -68px;
-    width: calc(100% + 80px);
-  }
+  @include fullwidth-gallery;
 }
 
 .status__video-player-video {
@@ -4273,10 +4272,7 @@ button.icon-button.active i.fa-retweet {
   position: relative;
   width: 100%;
 
-  &.full-width {
-    margin-left: -68px;
-    width: calc(100% + 80px);
-  }
+  @include fullwidth-gallery;
 
   border: 0;
   display: block;