Merge pull request #13671 from 04818419/text-transformation

text transformation added
This commit is contained in:
Mark Otto 2014-06-10 22:56:38 -07:00
commit 1d97cbed0f
3 changed files with 18 additions and 0 deletions

View file

@ -98,6 +98,11 @@ mark,
.text-justify { text-align: justify; }
.text-nowrap { white-space: nowrap; }
// Transformation
.text-lowercase { text-transform: lowercase; }
.text-uppercase { text-transform: uppercase; }
.text-capitalize { text-transform: capitalize; }
// Contextual colors
.text-muted {
color: @text-muted;