mirror of
https://github.com/jgthms/bulma
synced 2026-03-22 05:04:28 -07:00
Fix #934
This commit is contained in:
@@ -7,6 +7,7 @@
|
|||||||
* [List of tags](http://bulma.io/documentation/elements/tag/#list-of-tags)
|
* [List of tags](http://bulma.io/documentation/elements/tag/#list-of-tags)
|
||||||
* New **variable naming system**: `component`-`subcomponent`-`state`-`property`
|
* New **variable naming system**: `component`-`subcomponent`-`state`-`property`
|
||||||
* Improved **customization** thanks to new set of variables
|
* Improved **customization** thanks to new set of variables
|
||||||
|
* #934 New `.is-shadowless` helper
|
||||||
|
|
||||||
Variable name changes (mostly appending `-color`):
|
Variable name changes (mostly appending `-color`):
|
||||||
|
|
||||||
@@ -106,6 +107,8 @@ Variable name changes (mostly appending `-color`):
|
|||||||
### Issues closed
|
### Issues closed
|
||||||
|
|
||||||
* #909 `.dropdown` wrapping
|
* #909 `.dropdown` wrapping
|
||||||
|
* #938 `.is-fullwidth` removed from docs
|
||||||
|
* #900 Variable `.navbar-item` for hover+active background/color
|
||||||
|
|
||||||
## 0.4.4
|
## 0.4.4
|
||||||
|
|
||||||
|
|||||||
@@ -960,6 +960,10 @@ a.has-text-danger:hover, a.has-text-danger:focus {
|
|||||||
border-radius: 0 !important;
|
border-radius: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.is-shadowless {
|
||||||
|
box-shadow: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
.is-unselectable {
|
.is-unselectable {
|
||||||
-webkit-touch-callout: none;
|
-webkit-touch-callout: none;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
|
|||||||
@@ -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="4">Other</th>
|
<th rowspan="5">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>
|
||||||
@@ -48,6 +48,10 @@ doc-subtab: helpers
|
|||||||
<td><code>is-radiusless</code></td>
|
<td><code>is-radiusless</code></td>
|
||||||
<td>Removes any <strong>radius</strong></td>
|
<td>Removes any <strong>radius</strong></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code>is-shadowless</code></td>
|
||||||
|
<td>Removes any <strong>shadow</strong></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<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>
|
||||||
|
|||||||
@@ -151,5 +151,8 @@ $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'
|
|||||||
.is-radiusless
|
.is-radiusless
|
||||||
border-radius: 0 !important
|
border-radius: 0 !important
|
||||||
|
|
||||||
|
.is-shadowless
|
||||||
|
box-shadow: none !important
|
||||||
|
|
||||||
.is-unselectable
|
.is-unselectable
|
||||||
+unselectable
|
+unselectable
|
||||||
|
|||||||
Reference in New Issue
Block a user