diff options
| author | Mark Otto <[email protected]> | 2012-09-03 00:47:48 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-09-03 00:47:48 -0700 |
| commit | 9d5f9eca85b9d413b4389b744bbf57c20c447c2b (patch) | |
| tree | 2747047d4690afac05dbcd86e3aff2369a045a70 /less | |
| parent | 69d4c3f9a13df95267deccce9a20c5f822893155 (diff) | |
| download | bootstrap-9d5f9eca85b9d413b4389b744bbf57c20c447c2b.tar.xz bootstrap-9d5f9eca85b9d413b4389b744bbf57c20c447c2b.zip | |
fixes #4909: add color utility classes .text-warning, etc and document them
Diffstat (limited to 'less')
| -rw-r--r-- | less/type.less | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/less/type.less b/less/type.less index 669c55fd5..2e0f386ee 100644 --- a/less/type.less +++ b/less/type.less @@ -32,9 +32,23 @@ em { cite { font-style: normal; } + +// Utility classes .muted { color: @grayLight; } +.text-warning { + color: @warningText; +} +.text-error { + color: @errorText; +} +.text-info { + color: @infoText; +} +.text-success { + color: @successText; +} // Headings |
