about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/styles/tables.scss
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-10-24 22:46:59 +0200
committerThibaut Girka <thib@sitedethib.com>2019-10-27 14:37:17 +0100
commita4dc0d2c27995ed2caf44174f2d0a394b4822699 (patch)
tree0b490eba7448a440e34ab7f0964097e97b5b396b /app/javascript/flavours/glitch/styles/tables.scss
parent59946f923148ce2efdc6ac6a1a289d0ee09b68f3 (diff)
[Glitch] Fix batch actions being hidden from mobile view
Port SCSS changes from aa884e04848a6c06dbf7c27ae7a3fcc7d379792d to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/styles/tables.scss')
-rw-r--r--app/javascript/flavours/glitch/styles/tables.scss17
1 files changed, 8 insertions, 9 deletions
diff --git a/app/javascript/flavours/glitch/styles/tables.scss b/app/javascript/flavours/glitch/styles/tables.scss
index b84f6a708..ec2ee7c1c 100644
--- a/app/javascript/flavours/glitch/styles/tables.scss
+++ b/app/javascript/flavours/glitch/styles/tables.scss
@@ -149,10 +149,6 @@ a.table-action-link {
           margin-top: 0;
         }
       }
-
-      @media screen and (max-width: $no-gap-breakpoint) {
-        display: none;
-      }
     }
 
     &__actions,
@@ -174,10 +170,6 @@ a.table-action-link {
       text-align: right;
       padding-right: 16px - 5px;
     }
-
-    @media screen and (max-width: $no-gap-breakpoint) {
-      display: none;
-    }
   }
 
   &__form {
@@ -198,7 +190,7 @@ a.table-action-link {
     background: darken($ui-base-color, 4%);
 
     @media screen and (max-width: $no-gap-breakpoint) {
-      &:first-child {
+      .optional &:first-child {
         border-top: 1px solid darken($ui-base-color, 8%);
       }
     }
@@ -264,6 +256,13 @@ a.table-action-link {
     }
   }
 
+  &.optional .batch-table__toolbar,
+  &.optional .batch-table__row__select {
+    @media screen and (max-width: $no-gap-breakpoint) {
+      display: none;
+    }
+  }
+
   .status__content {
     padding-top: 0;