summaryrefslogtreecommitdiff
path: root/app/assets
diff options
context:
space:
mode:
authorJose <jivanvl@hotmail.com>2018-04-25 15:30:12 -0500
committerJose <jvargas@gitlab.com>2018-05-08 13:08:25 -0500
commit729572cd5b0e416bcf03aef936d8a27e93d84027 (patch)
tree41c23af7c5ef09237a9d7f145c530daa65764662 /app/assets
parentb215db37f878bfc4a753705e453f74b8db6546e4 (diff)
downloadgitlab-ce-729572cd5b0e416bcf03aef936d8a27e93d84027.tar.gz
Fix missing anchor link on wiki page44956-wiki-headings-no-longer-show-anchor-link
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/stylesheets/framework/mixins.scss10
-rw-r--r--app/assets/stylesheets/pages/wiki.scss5
2 files changed, 10 insertions, 5 deletions
diff --git a/app/assets/stylesheets/framework/mixins.scss b/app/assets/stylesheets/framework/mixins.scss
index e12b5aab381..9ff24ebc127 100644
--- a/app/assets/stylesheets/framework/mixins.scss
+++ b/app/assets/stylesheets/framework/mixins.scss
@@ -17,6 +17,16 @@
*/
@mixin markdown-table {
width: auto;
+ display: inline-block;
+ overflow-x: auto;
+ border-left: 0;
+ border-right: 0;
+ border-bottom: 0;
+
+ @supports(width: fit-content) {
+ display: block;
+ width: fit-content;
+ }
}
/*
diff --git a/app/assets/stylesheets/pages/wiki.scss b/app/assets/stylesheets/pages/wiki.scss
index 9a0ec936979..e70a57c2a67 100644
--- a/app/assets/stylesheets/pages/wiki.scss
+++ b/app/assets/stylesheets/pages/wiki.scss
@@ -180,11 +180,6 @@ ul.wiki-pages-list.content-list {
}
}
-.wiki-holder {
- overflow-x: auto;
- overflow-y: hidden;
-}
-
.wiki {
table {
@include markdown-table;