diff options
| author | Mark Otto <[email protected]> | 2012-09-12 15:48:56 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-09-12 15:48:56 -0700 |
| commit | bbadd429a8e4704c55ac0d9a228decf4a77f484a (patch) | |
| tree | 0d8c9314c50ffba1e88c2ad2f3828c591825ba42 /less/buttons.less | |
| parent | 0489c708c7104fffa7bddad18399f46db78e56fa (diff) | |
| download | bootstrap-bbadd429a8e4704c55ac0d9a228decf4a77f484a.tar.xz bootstrap-bbadd429a8e4704c55ac0d9a228decf4a77f484a.zip | |
change up box-shadow mixin usage everywhere to use escaping again, or local var if necessary for further var evaluation
Diffstat (limited to 'less/buttons.less')
| -rw-r--r-- | less/buttons.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/buttons.less b/less/buttons.less index 3fd1e95f5..c80986ea7 100644 --- a/less/buttons.less +++ b/less/buttons.less @@ -24,7 +24,7 @@ border-bottom-color: darken(@btnBorder, 10%); .border-radius(4px); .ie7-restore-left-whitespace(); // Give IE7 some love - .box-shadow(inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)); + .box-shadow(~"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)"); // Hover state &:hover { @@ -51,7 +51,7 @@ background-color: darken(@white, 15%) e("\9"); background-image: none; outline: 0; - .box-shadow(inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)); + .box-shadow(~"inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)"); } // Disabled state |
