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:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-11-03 19:23:26 +0300
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-11-03 19:23:26 +0300
commit0b97aa5e453c95afbdc5608c3cb072b0fc53a7dd (patch)
tree25abe4b7b1c7c442b0467c3948e01eba35428822 /app/assets/stylesheets/framework
parent97b80fefeb5da20798423b62b63fa9faa08ac118 (diff)
parent8c49097417254ca9c5852b85d0988cf6bf446297 (diff)
Merge branch '39776-remove-responsive-table-bottom-border' into 'master'
Remove bottom-border from last responsive table row Closes #39776 See merge request gitlab-org/gitlab-ce!15179
Diffstat (limited to 'app/assets/stylesheets/framework')
-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;
+ }
}
}