From ff4ff3bd0619035313ef245839fae7865039dd25 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 8 Jul 2014 19:22:19 -0700 Subject: Drop: .opacity() mixin because we no longer support IE8 --- less/button-groups.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/button-groups.less') diff --git a/less/button-groups.less b/less/button-groups.less index 912d2e68f..36d165b20 100644 --- a/less/button-groups.less +++ b/less/button-groups.less @@ -239,7 +239,7 @@ input[type="checkbox"] { position: absolute; z-index: -1; - .opacity(0); + opacity: 0; } } } -- cgit v1.2.3 From f380ca21e207e688e40a8cbef6d0b5a2c2a00472 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 8 Jul 2014 21:19:14 -0700 Subject: Use .box-shadow() mixin so we can enable/disable them --- less/button-groups.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'less/button-groups.less') diff --git a/less/button-groups.less b/less/button-groups.less index 36d165b20..1e9a8c53d 100644 --- a/less/button-groups.less +++ b/less/button-groups.less @@ -117,11 +117,11 @@ // The clickable button for toggling the menu // Remove the gradient and set the same inset shadow as the :active state .btn-group.open .dropdown-toggle { - box-shadow: inset 0 3px 5px rgba(0,0,0,.125); + .box-shadow(inset 0 3px 5px rgba(0,0,0,.125)); // Show no shadow for `.btn-link` since it has no other button styles. &.btn-link { - box-shadow: none; + .box-shadow(none); } } -- cgit v1.2.3