diff options
| author | Chris Rebert <[email protected]> | 2015-11-12 17:01:40 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-11-12 17:01:40 -0800 |
| commit | 019069a8b349c16d8438eb238a5b9da23a443bcc (patch) | |
| tree | 5c39fb18e64fb6260e60704c87bf41e7dad77921 | |
| parent | 8e34b21dab22ce11215033d37345e17b7599197d (diff) | |
| parent | 62aecae328781b1944b7af8a96a55d4d5cc9a930 (diff) | |
| download | bootstrap-019069a8b349c16d8438eb238a5b9da23a443bcc.tar.xz bootstrap-019069a8b349c16d8438eb238a5b9da23a443bcc.zip | |
Merge pull request #18032 from twbs/text-transform-important
Add !important to text transform utility classes
| -rw-r--r-- | scss/_utilities.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scss/_utilities.scss b/scss/_utilities.scss index ea04f9a34..7ed0629dd 100644 --- a/scss/_utilities.scss +++ b/scss/_utilities.scss @@ -70,9 +70,9 @@ // Transformation -.text-lowercase { text-transform: lowercase; } -.text-uppercase { text-transform: uppercase; } -.text-capitalize { text-transform: capitalize; } +.text-lowercase { text-transform: lowercase !important; } +.text-uppercase { text-transform: uppercase !important; } +.text-capitalize { text-transform: capitalize !important; } // Contextual colors |
