From: Jeremy Thomas Date: Sun, 28 May 2017 14:35:14 +0000 (+0100) Subject: Fix #712 X-Git-Tag: 0.4.2~1^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7d4f806def5c952e467f65f1fb368b00b459d74;p=thirdparty%2Fbulma.git Fix #712 --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 9655b75ce..81ea39e33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ * Fix #728 selected row on striped table * Fix #747 remove flex-shrink for is-expanded * Fix #702 add icons support for select dropdown +* Fix #712 delete button as flexbox item ## 0.4.1 diff --git a/docs/css/bulma-docs.css b/docs/css/bulma-docs.css index c0db634d7..cac502ec3 100644 --- a/docs/css/bulma-docs.css +++ b/docs/css/bulma-docs.css @@ -3151,8 +3151,14 @@ input[type="submit"].button { border-radius: 290486px; cursor: pointer; display: inline-block; + flex-grow: 0; + flex-shrink: 0; font-size: 1rem; height: 20px; + max-height: 20px; + max-width: 20px; + min-height: 20px; + min-width: 20px; outline: none; position: relative; vertical-align: top; @@ -3780,8 +3786,14 @@ input[type="submit"].button { border-radius: 290486px; cursor: pointer; display: inline-block; + flex-grow: 0; + flex-shrink: 0; font-size: 1rem; height: 20px; + max-height: 20px; + max-width: 20px; + min-height: 20px; + min-width: 20px; outline: none; position: relative; vertical-align: top; diff --git a/sass/utilities/mixins.sass b/sass/utilities/mixins.sass index cd8201500..99e644670 100644 --- a/sass/utilities/mixins.sass +++ b/sass/utilities/mixins.sass @@ -38,8 +38,14 @@ border-radius: 290486px cursor: pointer display: inline-block + flex-grow: 0 + flex-shrink: 0 font-size: $size-normal height: 20px + max-height: 20px + max-width: 20px + min-height: 20px + min-width: 20px outline: none position: relative vertical-align: top