summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/mixins.scss
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2018-10-04 14:27:42 +0000
committerPhil Hughes <me@iamphill.com>2018-10-04 14:27:42 +0000
commit42a227e4397986a3adce82f786f87e9def487af9 (patch)
tree66d266c8ffc59e3535dd9c1bd800f22294d27266 /app/assets/stylesheets/framework/mixins.scss
parent4d30215a0f6109fb71023fe583b3128220920b22 (diff)
downloadgitlab-ce-42a227e4397986a3adce82f786f87e9def487af9.tar.gz
Fix markdown table border and background color
Diffstat (limited to 'app/assets/stylesheets/framework/mixins.scss')
-rw-r--r--app/assets/stylesheets/framework/mixins.scss10
1 files changed, 7 insertions, 3 deletions
diff --git a/app/assets/stylesheets/framework/mixins.scss b/app/assets/stylesheets/framework/mixins.scss
index 11597c7e85e..be41dbfc61f 100644
--- a/app/assets/stylesheets/framework/mixins.scss
+++ b/app/assets/stylesheets/framework/mixins.scss
@@ -20,20 +20,24 @@
display: inline-block;
overflow-x: auto;
border: 0;
- border-color: $gray-100;
+ border-color: $gl-gray-100;
@supports (width: fit-content) {
display: block;
width: fit-content;
}
+ tbody {
+ background-color: $white-light;
+ }
+
tr {
th {
- border-bottom: solid 2px $gray-100;
+ border-bottom: solid 2px $gl-gray-100;
}
td {
- border-color: $gray-100;
+ border-color: $gl-gray-100;
}
}
}