mirror of
https://github.com/jgthms/bulma
synced 2026-03-21 20:54:30 -07:00
visibility: hidden !important (#1289)
* visibility: hidden !important * CHANGELOG.md * docs * docs fix
This commit is contained in:
committed by
Jeremy Thomas
parent
ec9de3e57a
commit
d010b31c3f
@@ -1,5 +1,11 @@
|
|||||||
# Bulma Changelog
|
# Bulma Changelog
|
||||||
|
|
||||||
|
## 0.6.1
|
||||||
|
|
||||||
|
### New features
|
||||||
|
|
||||||
|
* #1287 New `.is-invisible` helper
|
||||||
|
|
||||||
## 0.6.0
|
## 0.6.0
|
||||||
|
|
||||||
### Breaking changes
|
### Breaking changes
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ doc-subtab: helpers
|
|||||||
<td>Removes any <strong>padding</strong></td>
|
<td>Removes any <strong>padding</strong></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th rowspan="5">Other</th>
|
<th rowspan="6">Other</th>
|
||||||
<td><code>is-overlay</code></td>
|
<td><code>is-overlay</code></td>
|
||||||
<td>Completely covers the first positioned parent</td>
|
<td>Completely covers the first positioned parent</td>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -56,6 +56,10 @@ doc-subtab: helpers
|
|||||||
<td><code>is-unselectable</code></td>
|
<td><code>is-unselectable</code></td>
|
||||||
<td>Prevents the text from being <strong>selectable</strong></td>
|
<td>Prevents the text from being <strong>selectable</strong></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code>is-invisible</code></td>
|
||||||
|
<td>Adds visibility <strong>hidden</strong></td>
|
||||||
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -185,6 +185,45 @@ $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'
|
|||||||
.is-hidden-fullhd
|
.is-hidden-fullhd
|
||||||
display: none !important
|
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
|
// Other
|
||||||
|
|
||||||
.is-marginless
|
.is-marginless
|
||||||
|
|||||||
Reference in New Issue
Block a user