aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-18 10:08:18 -0700
committerMark Otto <[email protected]>2013-08-18 10:08:18 -0700
commit73a1a4133c484d0791efff87bc41eac3e2853e42 (patch)
tree6313916006fd9524891d40ebd63770961a7324f6 /less
parenta9e741bffc47d683e8588c09afece4cdee27cfd8 (diff)
downloadbootstrap-73a1a4133c484d0791efff87bc41eac3e2853e42.tar.xz
bootstrap-73a1a4133c484d0791efff87bc41eac3e2853e42.zip
combine and simplify caret border widths
Diffstat (limited to 'less')
-rw-r--r--less/button-groups.less5
1 files changed, 2 insertions, 3 deletions
diff --git a/less/button-groups.less b/less/button-groups.less
index b137aba6d..45f2fd0a9 100644
--- a/less/button-groups.less
+++ b/less/button-groups.less
@@ -159,13 +159,12 @@
}
// Carets in other button sizes
.btn-lg .caret {
- border-width: @caret-width-large;
+ border-width: @caret-width-large @caret-width-large 0;
border-bottom-width: 0;
}
// Upside down carets for .dropup
.dropup .btn-lg .caret {
- border-width: @caret-width-large;
- border-top-width: 0;
+ border-width: 0 @caret-width-large @caret-width-large;
}