summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2019-04-08 07:30:33 +0000
committerPhil Hughes <me@iamphill.com>2019-04-08 07:30:33 +0000
commit20e93beb74f7faf885de359883c6f7b4fc2dc011 (patch)
tree602f478f3e3fc64356e621725c4639fce38a736a
parentd2cd566f7205f82d83e2fe2f9fa218c7a466cdf6 (diff)
parentcc0fc4a9247db8cf1acf943f61d5e1a98ceb1481 (diff)
downloadgitlab-ce-20e93beb74f7faf885de359883c6f7b4fc2dc011.tar.gz
Merge branch '60116-fix-button-wrapping' into 'master'
Add `white-space: nowrap` to all buttons Closes #60116 See merge request gitlab-org/gitlab-ce!27069
-rw-r--r--app/assets/stylesheets/framework/buttons.scss1
-rw-r--r--changelogs/unreleased/60116-fix-button-wrapping.yml5
2 files changed, 6 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/buttons.scss b/app/assets/stylesheets/framework/buttons.scss
index 695ce014659..ab8f397f3a0 100644
--- a/app/assets/stylesheets/framework/buttons.scss
+++ b/app/assets/stylesheets/framework/buttons.scss
@@ -139,6 +139,7 @@
@include btn-white;
color: $gl-text-color;
+ white-space: nowrap;
&:focus:active {
outline: 0;
diff --git a/changelogs/unreleased/60116-fix-button-wrapping.yml b/changelogs/unreleased/60116-fix-button-wrapping.yml
new file mode 100644
index 00000000000..d6df920b51d
--- /dev/null
+++ b/changelogs/unreleased/60116-fix-button-wrapping.yml
@@ -0,0 +1,5 @@
+---
+title: Add to white-space nowrap to all buttons
+merge_request: 27069
+author:
+type: fixed