From e385d3dd9a5366b1eea9ab44880e302f8e63faca Mon Sep 17 00:00:00 2001 From: Oleksii Potiekhin Date: Thu, 30 Nov 2017 11:56:28 +0100 Subject: [PATCH] font-style: italic !important (#1452) * is-rounded * Rollback * font-style: italic; * Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ docs/documentation/modifiers/typography-helpers.html | 6 +++++- sass/base/helpers.sass | 3 +++ 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dec861672..38e52b1ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Bulma Changelog +## 0.6.3 + +### Improvements + +* New `.is-italic` helper + ## 0.6.2 ### Improvements diff --git a/docs/documentation/modifiers/typography-helpers.html b/docs/documentation/modifiers/typography-helpers.html index 7b296e71d..ef7dc867d 100644 --- a/docs/documentation/modifiers/typography-helpers.html +++ b/docs/documentation/modifiers/typography-helpers.html @@ -333,7 +333,7 @@ doc-subtab: typography-helpers

- You can transform the text with the use of one of 3 text transformation helpers: + You can transform the text with the use of one of 4 text transformation helpers:

@@ -361,6 +361,10 @@ doc-subtab: typography-helpers is-uppercase Transforms all characters to uppercase + + is-italic + Transforms all characters to italic + diff --git a/sass/base/helpers.sass b/sass/base/helpers.sass index ea5868420..936905c78 100644 --- a/sass/base/helpers.sass +++ b/sass/base/helpers.sass @@ -89,6 +89,9 @@ $alignments: ('centered': 'center', 'justified': 'justify', 'left': 'left', 'rig .is-uppercase text-transform: uppercase !important +.is-italic + font-style: italic !important + @each $name, $pair in $colors $color: nth($pair, 1) .has-text-#{$name} -- 2.47.2