mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
font-style: italic !important (#1452)
* is-rounded * Rollback * font-style: italic; * Update CHANGELOG.md
This commit is contained in:
parent
dc892413f1
commit
e385d3dd9a
@ -1,5 +1,11 @@
|
|||||||
# Bulma Changelog
|
# Bulma Changelog
|
||||||
|
|
||||||
|
## 0.6.3
|
||||||
|
|
||||||
|
### Improvements
|
||||||
|
|
||||||
|
* New `.is-italic` helper
|
||||||
|
|
||||||
## 0.6.2
|
## 0.6.2
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
|
@ -333,7 +333,7 @@ doc-subtab: typography-helpers
|
|||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<p>
|
<p>
|
||||||
You can transform the text with the use of one of <strong>3 text transformation helpers</strong>:
|
You can transform the text with the use of one of <strong>4 text transformation helpers</strong>:
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -361,6 +361,10 @@ doc-subtab: typography-helpers
|
|||||||
<td><code>is-uppercase</code></td>
|
<td><code>is-uppercase</code></td>
|
||||||
<td>Transforms <strong>all characters</strong> to <strong>uppercase</strong></td>
|
<td>Transforms <strong>all characters</strong> to <strong>uppercase</strong></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code>is-italic</code></td>
|
||||||
|
<td>Transforms <strong>all characters</strong> to <strong>italic</strong></td>
|
||||||
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -89,6 +89,9 @@ $alignments: ('centered': 'center', 'justified': 'justify', 'left': 'left', 'rig
|
|||||||
.is-uppercase
|
.is-uppercase
|
||||||
text-transform: uppercase !important
|
text-transform: uppercase !important
|
||||||
|
|
||||||
|
.is-italic
|
||||||
|
font-style: italic !important
|
||||||
|
|
||||||
@each $name, $pair in $colors
|
@each $name, $pair in $colors
|
||||||
$color: nth($pair, 1)
|
$color: nth($pair, 1)
|
||||||
.has-text-#{$name}
|
.has-text-#{$name}
|
||||||
|
Loading…
Reference in New Issue
Block a user