From: Jeremy Thomas Date: Sat, 29 Jul 2017 17:43:53 +0000 (+0100) Subject: Fix #934 X-Git-Tag: 0.5.0~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34c044e475bd8f60e811916e47bf4f9c57070c47;p=thirdparty%2Fbulma.git Fix #934 --- diff --git a/CHANGELOG.md b/CHANGELOG.md index f43e7c89e..5cad65054 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ * [List of tags](http://bulma.io/documentation/elements/tag/#list-of-tags) * New **variable naming system**: `component`-`subcomponent`-`state`-`property` * Improved **customization** thanks to new set of variables +* #934 New `.is-shadowless` helper Variable name changes (mostly appending `-color`): @@ -106,6 +107,8 @@ Variable name changes (mostly appending `-color`): ### Issues closed * #909 `.dropdown` wrapping +* #938 `.is-fullwidth` removed from docs +* #900 Variable `.navbar-item` for hover+active background/color ## 0.4.4 diff --git a/docs/css/bulma-docs.css b/docs/css/bulma-docs.css index 3522e54b4..c24d6bd80 100644 --- a/docs/css/bulma-docs.css +++ b/docs/css/bulma-docs.css @@ -960,6 +960,10 @@ a.has-text-danger:hover, a.has-text-danger:focus { border-radius: 0 !important; } +.is-shadowless { + box-shadow: none !important; +} + .is-unselectable { -webkit-touch-callout: none; -webkit-user-select: none; diff --git a/docs/documentation/modifiers/helpers.html b/docs/documentation/modifiers/helpers.html index 4d8bed730..a725e7118 100644 --- a/docs/documentation/modifiers/helpers.html +++ b/docs/documentation/modifiers/helpers.html @@ -37,7 +37,7 @@ doc-subtab: helpers Removes any padding - Other + Other is-overlay Completely covers the first positioned parent @@ -48,6 +48,10 @@ doc-subtab: helpers is-radiusless Removes any radius + + is-shadowless + Removes any shadow + is-unselectable Prevents the text from being selectable diff --git a/sass/base/helpers.sass b/sass/base/helpers.sass index bd2645a43..251b03b4d 100755 --- a/sass/base/helpers.sass +++ b/sass/base/helpers.sass @@ -151,5 +151,8 @@ $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex' .is-radiusless border-radius: 0 !important +.is-shadowless + box-shadow: none !important + .is-unselectable +unselectable