Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Eastwood <contact@ericeastwood.com>2017-11-03 16:53:14 +0300
committerEric Eastwood <contact@ericeastwood.com>2017-11-03 16:56:25 +0300
commit8c49097417254ca9c5852b85d0988cf6bf446297 (patch)
tree4e46256536dc5dca5fbb98db5f4c1ec09b265366 /app/assets/stylesheets/framework/responsive_tables.scss
parentf580e49713c611094029424e779f25bd9807c7cf (diff)
Remove bottom-border from last responsive table row
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/39776
Diffstat (limited to 'app/assets/stylesheets/framework/responsive_tables.scss')
-rw-r--r--app/assets/stylesheets/framework/responsive_tables.scss5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/responsive_tables.scss b/app/assets/stylesheets/framework/responsive_tables.scss
index 7adb2f113bb..8b7afdbe1a5 100644
--- a/app/assets/stylesheets/framework/responsive_tables.scss
+++ b/app/assets/stylesheets/framework/responsive_tables.scss
@@ -25,7 +25,10 @@
margin: 0;
padding: $gl-padding 0;
border: none;
- border-bottom: 1px solid $white-normal;
+
+ &:not(:last-child) {
+ border-bottom: 1px solid $white-normal;
+ }
}
}