From 9ac2c49d4e771323cf613bea57b6fd515ac3735b Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Fri, 26 Jan 2018 15:42:33 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20spacing=20of=20=E2=80=98only=20showing=20?= =?UTF-8?q?[=E2=80=A6]=20rows=E2=80=99=20message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It was too far apart. Can’t be fixed by reducing the margin on the table because this would bring the table too close to other elements when the ‘only showing’ thing isn’t present. --- app/assets/stylesheets/components/fullscreen-table.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/assets/stylesheets/components/fullscreen-table.scss b/app/assets/stylesheets/components/fullscreen-table.scss index d5c8f78fc..64d669880 100644 --- a/app/assets/stylesheets/components/fullscreen-table.scss +++ b/app/assets/stylesheets/components/fullscreen-table.scss @@ -130,9 +130,16 @@ } &-shim { + width: 100%; position: relative; z-index: 9; + margin-bottom: 30px; + + & + .table-show-more-link { + margin-top: -28px; + } + } }