Skip to content

Commit

Permalink
fixes #10744: back to solid borders on carets
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Nov 17, 2013
1 parent 7545da2 commit a2c6daa
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 11 deletions.
3 changes: 1 addition & 2 deletions dist/css/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -3462,7 +3462,6 @@ input[type="button"].btn-block {
vertical-align: middle;
border-top: 4px solid #000000;
border-right: 4px solid transparent;
border-bottom: 0 dotted;
border-left: 4px solid transparent;
}

Expand Down Expand Up @@ -3580,7 +3579,7 @@ input[type="button"].btn-block {

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
border-top: 0 dotted;
border-top: 0;
border-bottom: 4px solid #000000;
content: "";
}
Expand Down
2 changes: 1 addition & 1 deletion dist/css/bootstrap.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/bootstrap.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs-assets/js/raw-files.js

Large diffs are not rendered by default.

7 changes: 1 addition & 6 deletions less/dropdowns.less
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
border-top: @caret-width-base solid @dropdown-caret-color;
border-right: @caret-width-base solid transparent;
border-left: @caret-width-base solid transparent;
// Firefox fix for https://github.com/twbs/bootstrap/issues/9538. Once fixed,
// we can just straight up remove this.
border-bottom: 0 dotted;
}

// The dropdown wrapper (div)
Expand Down Expand Up @@ -163,9 +160,7 @@
.navbar-fixed-bottom .dropdown {
// Reverse the caret
.caret {
// Firefox fix for https://github.com/twbs/bootstrap/issues/9538. Once this
// gets fixed, restore `border-top: 0;`.
border-top: 0 dotted;
border-top: 0;
border-bottom: @caret-width-base solid @dropdown-caret-color;
content: "";
}
Expand Down

0 comments on commit a2c6daa

Please sign in to comment.