Fix button text wrapping to next line

Bootstrap removed white-space nowrap from buttons in v4.2.1,
causing at least one bug, so this commit re-adds that style
to all buttons
This commit is contained in:
Annabel Dunstone Gray 2019-04-05 12:26:51 -05:00
parent 0912fd8ad2
commit cc0fc4a924
2 changed files with 6 additions and 0 deletions

View File

@ -139,6 +139,7 @@
@include btn-white; @include btn-white;
color: $gl-text-color; color: $gl-text-color;
white-space: nowrap;
&:focus:active { &:focus:active {
outline: 0; outline: 0;

View File

@ -0,0 +1,5 @@
---
title: Add to white-space nowrap to all buttons
merge_request: 27069
author:
type: fixed