-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca28cd5
commit 0ce13e2
Showing
3 changed files
with
65 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,32 @@ | ||
@import variables | ||
@import bootstrap | ||
|
||
@import compass/css3/border-radius | ||
|
||
// CHOSEN FIXES | ||
// ------------ | ||
// Override jQuery Chosen styles to get it to better integrate with | ||
// Bootstrap 3. | ||
.chosen-container-multi .chosen-choices li.search-field input[type=text] | ||
color: $input-color-placeholder | ||
padding: 6px 12px | ||
height: $input-height-base - 2px | ||
|
||
.chosen-container-multi .chosen-choices | ||
border: 1px solid $input-border | ||
+border-radius($input-border-radius) | ||
|
||
.chosen-container-active .chosen-choices | ||
border-color: $input-border-focus | ||
|
||
.chosen-container .chosen-drop | ||
top: 110% | ||
border: 1px solid $dropdown-border | ||
+border-radius($border-radius-base) | ||
overflow: hidden | ||
|
||
.chosen-container-multi .chosen-choices li.search-choice | ||
height: $input-height-base - 10px | ||
margin: 5px 3px |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
$(".chosen-select").chosen(); | ||
$(".chosen-select").chosen({width: "100%"}); |