12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- .select2-container--default {
- @import "single";
- @import "multiple";
- &.select2-container--open.select2-container--above {
- .select2-selection--single, .select2-selection--multiple {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- }
- }
- &.select2-container--open.select2-container--below {
- .select2-selection--single, .select2-selection--multiple {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- }
- }
- .select2-search--dropdown {
- .select2-search__field {
- border: 1px solid #aaa;
- }
- }
- .select2-search--inline {
- .select2-search__field {
- background: transparent;
- border: none;
- outline: 0;
- box-shadow: none;
- -webkit-appearance: textfield;
- }
- }
- .select2-results > .select2-results__options {
- max-height: 200px;
- overflow-y: auto;
- }
- .select2-results__option {
- .select2-results__option {
- padding-left: 1em;
- .select2-results__group {
- padding-left: 0;
- }
- .select2-results__option {
- margin-left: -1em;
- padding-left: 2em;
- .select2-results__option {
- margin-left: -2em;
- padding-left: 3em;
- .select2-results__option {
- margin-left: -3em;
- padding-left: 4em;
- .select2-results__option {
- margin-left: -4em;
- padding-left: 5em;
- .select2-results__option {
- margin-left: -5em;
- padding-left: 6em;
- }
- }
- }
- }
- }
- }
- }
- .select2-results__option--group {
- padding: 0;
- }
- .select2-results__option--disabled {
- color: #999;
- }
- .select2-results__option--selected {
- background-color: #ddd;
- }
- .select2-results__option--highlighted.select2-results__option--selectable {
- background-color: #5897fb;
- color: white;
- }
- .select2-results__group {
- cursor: default;
- display: block;
- padding: 6px;
- }
- }
|