diff options
| author | Mark Otto <[email protected]> | 2014-01-18 14:28:33 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-01-18 14:28:33 -0800 |
| commit | 9c9a2f3e08309145f86264687d267db347102cb7 (patch) | |
| tree | 711f3f78d34a69f34ee40fa24a7e8fc4f961ae00 | |
| parent | b1721f42cc8298fb691530614ee6d52389872e25 (diff) | |
| parent | 689e75e4b1b8055e657b30eb692b34ebf9d549da (diff) | |
| download | bootstrap-9c9a2f3e08309145f86264687d267db347102cb7.tar.xz bootstrap-9c9a2f3e08309145f86264687d267db347102cb7.zip | |
Merge pull request #12247 from twbs/text-emphasis-variant
refactoring: add & use .text-emphasis-variant() mixin
| -rw-r--r-- | less/mixins.less | 9 | ||||
| -rw-r--r-- | less/type.less | 25 |
2 files changed, 14 insertions, 20 deletions
diff --git a/less/mixins.less b/less/mixins.less index 3af3c8208..1edaa3f4e 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -577,6 +577,15 @@ } } +// Typography +// ------------------------- +.text-emphasis-variant(@color) { + color: @color; + &:hover { + color: darken(@color, 10%); + } +} + // Navbar vertical align // ------------------------- // Vertically center elements in the navbar. diff --git a/less/type.less b/less/type.less index 91496dc8c..aaf654f70 100644 --- a/less/type.less +++ b/less/type.less @@ -92,34 +92,19 @@ cite { font-style: normal; } color: @text-muted; } .text-primary { - color: @brand-primary; - &:hover { - color: darken(@brand-primary, 10%); - } + .text-emphasis-variant(@brand-primary); } .text-success { - color: @state-success-text; - &:hover { - color: darken(@state-success-text, 10%); - } + .text-emphasis-variant(@state-success-text); } .text-info { - color: @state-info-text; - &:hover { - color: darken(@state-info-text, 10%); - } + .text-emphasis-variant(@state-info-text); } .text-warning { - color: @state-warning-text; - &:hover { - color: darken(@state-warning-text, 10%); - } + .text-emphasis-variant(@state-warning-text); } .text-danger { - color: @state-danger-text; - &:hover { - color: darken(@state-danger-text, 10%); - } + .text-emphasis-variant(@state-danger-text); } // Contextual backgrounds |
