From: Oleksii Potiekhin Date: Wed, 11 Oct 2017 17:03:05 +0000 (+0200) Subject: visibility: hidden !important (#1289) X-Git-Tag: 0.6.1~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d010b31c3fc8114e6b428ec1ef14fd0cdc85c5e1;p=thirdparty%2Fbulma.git visibility: hidden !important (#1289) * visibility: hidden !important * CHANGELOG.md * docs * docs fix --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 5215a0f63..36ca5a15f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Bulma Changelog +## 0.6.1 + +### New features + +* #1287 New `.is-invisible` helper + ## 0.6.0 ### Breaking changes diff --git a/docs/documentation/modifiers/helpers.html b/docs/documentation/modifiers/helpers.html index a725e7118..6dec830aa 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 @@ -56,6 +56,10 @@ doc-subtab: helpers is-unselectable Prevents the text from being selectable + + is-invisible + Adds visibility hidden + diff --git a/sass/base/helpers.sass b/sass/base/helpers.sass index dcfe1e9cf..ea5868420 100644 --- a/sass/base/helpers.sass +++ b/sass/base/helpers.sass @@ -185,6 +185,45 @@ $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex' .is-hidden-fullhd display: none !important +.is-invisible + visibility: hidden !important + ++mobile + .is-invisible-mobile + visibility: hidden !important + ++tablet + .is-invisible-tablet + visibility: hidden !important + ++tablet-only + .is-invisible-tablet-only + visibility: hidden !important + ++touch + .is-invisible-touch + visibility: hidden !important + ++desktop + .is-invisible-desktop + visibility: hidden !important + ++desktop-only + .is-invisible-desktop-only + visibility: hidden !important + ++widescreen + .is-invisible-widescreen + visibility: hidden !important + ++widescreen-only + .is-invisible-widescreen-only + visibility: hidden !important + ++fullhd + .is-invisible-fullhd + visibility: hidden !important + // Other .is-marginless