From: Ondřej Vašíček Date: Tue, 7 Jun 2016 09:55:31 +0000 (+0200) Subject: Update _input-group.scss X-Git-Tag: v6.2.4-rc1~45^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e98139067b6278a0d28d4bc4b133167b7aece12c;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Update _input-group.scss I believe that in flexbox is no need to use display: table-cell. I tried that and it works happily without it. --- diff --git a/scss/forms/_input-group.scss b/scss/forms/_input-group.scss index 04a86ae59..5935337a2 100644 --- a/scss/forms/_input-group.scss +++ b/scss/forms/_input-group.scss @@ -122,7 +122,9 @@ $input-prefix-padding: 1rem !default; // Specificity bump needed to prevent override by buttons // scss-lint:disable QualifyingSelector - .input-group .input-group-button { - display: table-cell; + @if not $global-flexbox { + .input-group .input-group-button { + display: table-cell; + } } }