diff options
| author | Soheil Behnezhad <[email protected]> | 2013-09-16 13:47:48 +0430 |
|---|---|---|
| committer | Soheil Behnezhad <[email protected]> | 2013-09-16 13:47:48 +0430 |
| commit | bff23ee1fef96ba97ec15d2bbe2b81b4f852e1e1 (patch) | |
| tree | f818772147f91738a67fe1072cd5c33ee8fbe552 /less/theme.less | |
| parent | 559fcbfbd6c876c2a65b37015d953c9708c02cb7 (diff) | |
| download | bootstrap-bff23ee1fef96ba97ec15d2bbe2b81b4f852e1e1.tar.xz bootstrap-bff23ee1fef96ba97ec15d2bbe2b81b4f852e1e1.zip | |
Remove unnecessary semicolons
Diffstat (limited to 'less/theme.less')
| -rw-r--r-- | less/theme.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/theme.less b/less/theme.less index 71d1d1e6b..9c1856bde 100644 --- a/less/theme.less +++ b/less/theme.less @@ -31,7 +31,7 @@ } // Mixin for generating new styles -.btn-styles(@btn-color: #555;) { +.btn-styles(@btn-color: #555) { #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%)); background-repeat: repeat-x; border-color: darken(@btn-color, 14%); @@ -59,7 +59,7 @@ } // Apply the mixin to the buttons -.btn-default { .btn-styles(@btn-default-bg;); text-shadow: 0 1px 0 #fff; border-color: #ccc; } +.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; } .btn-primary { .btn-styles(@btn-primary-bg); } .btn-success { .btn-styles(@btn-success-bg); } .btn-warning { .btn-styles(@btn-warning-bg); } |
