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
.select2-container--bootstrap { | |
display: block; | |
/*------------------------------------* #COMMON STYLES | |
\*------------------------------------*/ | |
/** | |
* Search field in the Select2 dropdown. | |
*/ | |
/** | |
* No outline for all search fields - in the dropdown | |
* and inline in multi Select2s. |
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
/* To avoid mixing em and rem units during compilation */ | |
.select2-container--bootstrap { | |
display: block; | |
/*------------------------------------* #COMMON STYLES | |
\*------------------------------------*/ | |
/** | |
* Search field in the Select2 dropdown. | |
*/ | |
/** |
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
// | |
// Mixins - we need to override the Bootstrap mixins to set border-radius to 0 if $enable-rounded is false. | |
// -------------------------------------------------- | |
@mixin border-radius($radius: $border-radius) { | |
@if $enable-rounded { | |
border-radius: $radius; | |
} | |
@else { |