Skip to content

Commit

Permalink
Fix for Bootstrap @dropdown-caret-color deprecation (fixes selectize#232
Browse files Browse the repository at this point in the history
).
  • Loading branch information
brianreavis committed Jan 23, 2014
1 parent 1f53e85 commit aef256d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/css/selectize.bootstrap3.css
Original file line number Diff line number Diff line change
Expand Up @@ -333,15 +333,15 @@
width: 0;
height: 0;
margin-top: -3px;
border-color: #000000 transparent transparent transparent;
border-color: #333333 transparent transparent transparent;
border-style: solid;
border-width: 5px 5px 0 5px;
content: ' ';
}

.selectize-control.single .selectize-input.dropdown-active:after {
margin-top: -4px;
border-color: transparent transparent #000000 transparent;
border-color: transparent transparent #333333 transparent;
border-width: 0 5px 5px 5px;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/less/selectize.bootstrap3.less
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
@selectize-caret-margin: 0;

@selectize-arrow-size: 5px;
@selectize-arrow-color: @dropdown-caret-color;
@selectize-arrow-color: @selectize-color-text;
@selectize-arrow-offset: @selectize-padding-x + 5px;

.selectize-dropdown, .selectize-dropdown.form-control {
Expand Down
2 changes: 1 addition & 1 deletion src/less/selectize.bootstrap3.less
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
@selectize-caret-margin: 0;

@selectize-arrow-size: 5px;
@selectize-arrow-color: @dropdown-caret-color;
@selectize-arrow-color: @selectize-color-text;
@selectize-arrow-offset: @selectize-padding-x + 5px;

.selectize-dropdown, .selectize-dropdown.form-control {
Expand Down

0 comments on commit aef256d

Please sign in to comment.