From e98139067b6278a0d28d4bc4b133167b7aece12c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ond=C5=99ej=20Va=C5=A1=C3=AD=C4=8Dek?= Date: Tue, 7 Jun 2016 11:55:31 +0200 Subject: [PATCH] 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. --- scss/forms/_input-group.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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; + } } } -- 2.47.2