aboutsummaryrefslogtreecommitdiff
path: root/less/button-groups.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-07-08 02:04:48 -0700
committerMark Otto <[email protected]>2014-07-08 02:04:48 -0700
commitd7b38d8c4a2669f54f204bc2e555bf58b9717441 (patch)
treee042db88d9a9c9ec77e684d50d867b8230fac9a8 /less/button-groups.less
parent6fda4098538693259226b1f67d57ff4905a4c173 (diff)
downloadbootstrap-d7b38d8c4a2669f54f204bc2e555bf58b9717441.tar.xz
bootstrap-d7b38d8c4a2669f54f204bc2e555bf58b9717441.zip
Drop: all vendor prefix mixins because autoprefixer
Diffstat (limited to 'less/button-groups.less')
-rw-r--r--less/button-groups.less4
1 files changed, 2 insertions, 2 deletions
diff --git a/less/button-groups.less b/less/button-groups.less
index c2e2260f0..912d2e68f 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;
}
}