From bff23ee1fef96ba97ec15d2bbe2b81b4f852e1e1 Mon Sep 17 00:00:00 2001 From: Soheil Behnezhad Date: Mon, 16 Sep 2013 13:47:48 +0430 Subject: [PATCH] Remove unnecessary semicolons --- less/theme.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/less/theme.less b/less/theme.less index 71d1d1e6b9..9c1856bde7 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); }