select2-bootstrap.min.scss 20.1 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766
/*! Select2 Bootstrap Theme v0.1.0-beta.4 | MIT License | github.com/select2/select2-bootstrap-theme */

//
// Variables
// --------------------------------------------------

@import "../../../../../sass/global/variables";

// Bootstrap defaults not available as pre-defined variables
// These should not be overridden.
// @see https://github.com/twbs/bootstrap-sass/blob/master/assets/stylesheets/bootstrap/_forms.scss#L127

$form-control-default-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);

// @see https://github.com/twbs/bootstrap-sass/blob/master/assets/stylesheets/bootstrap/mixins/_forms.scss#L43
$form-control-focus-box-shadow: $form-control-default-box-shadow, 0 0 8px rgba($input-border-focus, 0.6);

// @see https://github.com/twbs/bootstrap-sass/blob/master/assets/stylesheets/bootstrap/_forms.scss#L128
$form-control-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;

// Custom variables
// -------------------------

$dropdown-arrow-color: $input-color-placeholder !default;
$dropdown-box-shadow: 0 6px 12px rgba(0,0,0,.175) !default;
$clear-selection-color: $dropdown-arrow-color !default;

//
// Mixins
// --------------------------------------------------

// @see https://github.com/twbs/bootstrap-sass/blob/master/assets/stylesheets/bootstrap/_forms.scss#L115
@mixin bootstrap-input-defaults {
    @include box-shadow($form-control-default-box-shadow);
    background-color: $input-bg;
    border: 1px solid $input-border;
    border-radius: $input-border-radius;
    color: $input-color;
    font-family: $font-family-base;
    font-size: $font-size-base;
}

// @see http://getbootstrap.com/css/#forms-control-validation
// @see https://github.com/twbs/bootstrap-sass/blob/master/assets/stylesheets/bootstrap/_forms.scss#L388
@mixin validation-state-focus($color) {
    $shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten($color, 20%);

    .select2-dropdown,
    .select2-selection {
        border-color: $color;
    }

    .select2-container--focus .select2-selection,
    .select2-container--open .select2-selection {
        @include box-shadow($shadow);
        border-color: darken($color, 10%);
    }

    &.select2-drop-active {
        border-color: darken($color, 10%);

        &.select2-drop.select2-drop-above {
            border-top-color: darken($color, 10%);
        }
    }
}

// dropdown arrow when dropdown is open
@mixin dropdown-arrow {
        .select2-selection--single {
        /**
         * Make the dropdown arrow point up while the dropdown is visible.
         */

        .select2-selection__arrow b {
            border-color: transparent transparent $dropdown-arrow-color transparent;
            border-width: 0 $caret-width-large $caret-width-large $caret-width-large;
        }
    }
}





.select2-container--bootstrap {
    display: block;





    /*------------------------------------*\
            #COMMON STYLES
    \*------------------------------------*/

    .select2-selection {
        @include bootstrap-input-defaults;
        outline: 0;
    }

    /**
     * Search field in the Select2 dropdown.
     */

    .select2-search--dropdown {
        .select2-search__field {
            @include bootstrap-input-defaults;
        }
    }

    /**
     * No outline for all search fields - in the dropdown
     * and inline in multi Select2s.
     */

    .select2-search__field {
        outline: 0;

        &::-webkit-input-placeholder {
            color: $input-color-placeholder;
        }

        /* Firefox 18- */
        &:-moz-placeholder {
            color: $input-color-placeholder;
        }

        /**
         * Firefox 19+
         *
         * @see http://stackoverflow.com/questions/24236240/color-for-styled-placeholder-text-is-muted-in-firefox
         */
        &::-moz-placeholder {
            color: $input-color-placeholder;
            opacity: 1;
        }

        &:-ms-input-placeholder {
            color: $input-color-placeholder;
        }
    }

    /**
     * Adjust Select2's choices hover and selected styles to match
     * Bootstrap 3's default dropdown styles.
     *
     * @see http://getbootstrap.com/components/#dropdowns
     */

    .select2-results__option {

        &[role=group] {
            padding: 0;
        }

        /**
         * Disabled results.
         *
         * @see https://select2.github.io/examples.html#disabled-results
         */

        &[aria-disabled=true] {
            color: $dropdown-link-disabled-color;
            cursor: $cursor-disabled;
        }

        /**
         * Hover state.
         */

        &[aria-selected=true] {
            background-color: $dropdown-link-hover-bg;
            color: $dropdown-link-hover-color;
        }

        /**
         * Selected state.
         */

        &--highlighted[aria-selected] {
            background-color: $dropdown-link-active-bg;
            color: $dropdown-link-active-color;
        }

        .select2-results__option {
            padding: $padding-base-vertical $padding-base-horizontal;

            .select2-results__group {
                padding-left: 0;
            }

            .select2-results__option {
                margin-left: -$padding-base-horizontal;
                padding-left: $padding-base-horizontal*2;

                .select2-results__option {
                    margin-left: -$padding-base-horizontal*2;
                    padding-left: $padding-base-horizontal*3;

                    .select2-results__option {
                        margin-left: -$padding-base-horizontal*3;
                        padding-left: $padding-base-horizontal*4;

                        .select2-results__option {
                            margin-left: -$padding-base-horizontal*4;
                            padding-left: $padding-base-horizontal*5;

                            .select2-results__option {
                                margin-left: -$padding-base-horizontal*5;
                                padding-left: $padding-base-horizontal*6;
                            }
                        }
                    }
                }
            }
        }
    }

    .select2-results__group {
        color: $dropdown-header-color;
        display: block;
        padding: $padding-base-vertical $padding-base-horizontal;
        font-size: $font-size-small;
        line-height: $line-height-base;
        white-space: nowrap;
    }

    &.select2-container--focus,
    &.select2-container--open {
        .select2-selection {
            @include box-shadow($form-control-focus-box-shadow);
            @include transition($form-control-transition);
            border-color: $input-border-focus;
        }
    }

    &.select2-container--open {
        /**
         * Make the dropdown arrow point up while the dropdown is visible.
         */

        .select2-selection .select2-selection__arrow b {
            border-color: transparent transparent $dropdown-arrow-color transparent;
            border-width: 0 $caret-width-base $caret-width-base $caret-width-base;
        }

        /**
         * Handle border radii of the container when the dropdown is showing.
         */

        &.select2-container--below {
            .select2-selection {
                @include border-bottom-radius(0);
                border-bottom-color: transparent;
            }
        }

        &.select2-container--above {
            .select2-selection {
                @include border-top-radius(0);
                border-top-color: transparent;
            }
        }
    }

    /**
     * Clear the selection.
     */

    .select2-selection__clear {
        color: $clear-selection-color;
        cursor: pointer;
        float: right;
        font-weight: bold;
        margin-right: 10px;

        &:hover {
            color: #333;
        }
    }

    /**
     * Address disabled Select2 styles.
     *
     * @see https://select2.github.io/examples.html#disabled
     * @see http://getbootstrap.com/css/#forms-control-disabled
     */

    &.select2-container--disabled {

        .select2-selection {
            border-color: $input-border;
            @include box-shadow(none);
        }

        .select2-selection,
        .select2-search__field {
            cursor: $cursor-disabled;
        }

        .select2-selection,
        .select2-selection--multiple .select2-selection__choice {
            background-color: $input-bg-disabled;
        }

        .select2-selection__clear,
        .select2-selection--multiple .select2-selection__choice__remove {
            display: none;
        }
    }





    /*------------------------------------*\
            #DROPDOWN
    \*------------------------------------*/

    /**
     * Dropdown border color and box-shadow.
     */

    .select2-dropdown {
        @include box-shadow($dropdown-box-shadow);
        border-color: $input-border-focus;
        overflow-x: hidden;
        margin-top: -1px;
        &--above {
            margin-top: 1px;
        }
    }

    /**
     * Limit the dropdown height.
     */

    .select2-results > .select2-results__options {
        max-height: 200px;
        overflow-y: auto;
    }





    /*------------------------------------*\
            #SINGLE SELECT2
    \*------------------------------------*/

    .select2-selection--single {
        height: $input-height-base;
        line-height: $line-height-base;
        padding: $padding-base-vertical $padding-base-horizontal + $caret-width-base*3 $padding-base-vertical $padding-base-horizontal;

        /**
         * Adjust the single Select2's dropdown arrow button appearance.
         */

        .select2-selection__arrow {
            position: absolute;
            bottom: 0;
            right: $padding-base-horizontal;
            top: 0;
            width: $caret-width-base;

            b {
                border-color: $dropdown-arrow-color transparent transparent transparent;
                border-style: solid;
                border-width: $caret-width-base $caret-width-base 0 $caret-width-base;
                height: 0;
                left: 0;
                margin-left: -$caret-width-base;
                margin-top: -$caret-width-base/2;
                position: absolute;
                top: 50%;
                width: 0;
            }
        }

        .select2-selection__rendered {
            color: $input-color;
            padding: 0;
        }

        .select2-selection__placeholder {
            color: $input-color-placeholder;
        }
    }





    /*------------------------------------*\
        #MULTIPLE SELECT2
    \*------------------------------------*/

    .select2-selection--multiple {
        min-height: $input-height-base;

        .select2-selection__rendered {
            box-sizing: border-box;
            display: block;
            line-height: $line-height-base;
            list-style: none;
            margin: 0;
            overflow: hidden;
            padding: 0;
            width: 100%;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .select2-selection__placeholder {
            color: $input-color-placeholder;
            float: left;
            margin-top: 5px;
        }

        /**
         * Make Multi Select2's choices match Bootstrap 3's default button styles.
         */

        .select2-selection__choice {
            color: $input-color;
            background: $btn-default-bg;
            border: 1px solid $btn-default-border;
            border-radius: 4px;
            cursor: default;
            float: left;
            margin: ($padding-base-vertical - 1) 0 0 $padding-base-horizontal/2;
            padding: 0 $padding-base-vertical;
        }

        /**
         * Minus 2px borders.
         */

        .select2-search--inline {
            .select2-search__field {
                background: transparent;
                padding: 0 $padding-base-horizontal;
                height: $input-height-base - 2;
                line-height: $line-height-base;
                margin-top: 0;
                min-width: 5em;
            }
        }

        .select2-selection__choice__remove {
            color: #999;
            cursor: pointer;
            display: inline-block;
            font-weight: bold;
            margin-right: $padding-base-vertical / 2;

            &:hover {
                color: #333;
            }
        }

        /**
         * Clear the selection.
         */

        .select2-selection__clear {
            margin-top: $padding-base-vertical;
        }
    }





    /**
     * Address Bootstrap control sizing classes
     *
     * 1. Reset Bootstrap defaults.
     * 2. Adjust the dropdown arrow button icon position.
     *
     * @see http://getbootstrap.com/css/#forms-control-sizes
     */

    /* 1 */
    &.input-sm,
    &.input-lg {
        border-radius: 0;
        font-size: 12px;
        height: auto;
        line-height: 1;
        padding: 0;
    }

    &.input-sm,
    .input-group-sm &,
    .form-group-sm & {
        .select2-selection--single {
            border-radius: $border-radius-small;
            font-size: $font-size-small;
            height: $input-height-small;
            line-height: $line-height-small;
            padding: $padding-small-vertical $padding-small-horizontal + $caret-width-base*3 $padding-small-vertical $padding-small-horizontal;

            /* 2 */
            .select2-selection__arrow b {
                margin-left: -$padding-small-vertical;
            }
        }

        .select2-selection--multiple {
            min-height: $input-height-small;

            .select2-selection__choice {
                font-size: $font-size-small;
                line-height: $line-height-small;
                margin: ($padding-small-vertical - 1) 0 0 $padding-small-horizontal/2;
                padding: 0 $padding-small-vertical;
            }

            .select2-search--inline .select2-search__field {
                padding: 0 $padding-small-horizontal;
                font-size: $font-size-small;
                height: $input-height-small - 2;
                line-height: $line-height-small;
            }

            .select2-selection__clear {
                margin-top: $padding-small-vertical;
            }
        }
    }

    &.input-lg,
    .input-group-lg &,
    .form-group-lg & {
        .select2-selection--single {
            border-radius: $border-radius-large;
            font-size: $font-size-large;
            height: $input-height-large;
            line-height: $line-height-large;
            padding: $padding-large-vertical $padding-large-horizontal + $caret-width-large*3 $padding-large-vertical $padding-large-horizontal;

            /* 1 */
            .select2-selection__arrow {
                width: $caret-width-large;

                b {
                    border-width: $caret-width-large $caret-width-large 0 $caret-width-large;
                    margin-left: -$caret-width-large;
                    margin-left: -$padding-large-vertical;
                    margin-top: -$caret-width-large/2;
                }
            }
        }

        .select2-selection--multiple {
            min-height: $input-height-large;

            .select2-selection__choice {
                font-size: $font-size-large;
                line-height: $line-height-large;
                border-radius: 4px;
                margin: ($padding-large-vertical - 1) 0 0 $padding-large-horizontal/2;
                padding: 0 $padding-large-vertical;
            }

            .select2-search--inline .select2-search__field {
                padding: 0 $padding-large-horizontal;
                font-size: $font-size-large;
                height: $input-height-large - 2;
                line-height: $line-height-large;
            }

            .select2-selection__clear {
                margin-top: $padding-large-vertical;
            }
        }
    }

    &.input-lg.select2-container--open {
        @include dropdown-arrow;
    }

    .input-group-lg & {
        &.select2-container--open {
            @include dropdown-arrow;
        }
    }





    /*------------------------------------*\
        #RTL SUPPORT
    \*------------------------------------*/

    &[dir="rtl"] {

        /**
         * Single Select2
         *
         * 1. Makes sure that .select2-selection__placeholder is positioned
         *    correctly.
         */

        .select2-selection--single {
            padding-left: $padding-base-horizontal + $caret-width-base*3;
            padding-right: $padding-base-horizontal;
            .select2-selection__rendered {
                padding-right: 0;
                padding-left: 0;
                text-align: right; /* 1 */
            }

            .select2-selection__clear {
                float: left;
            }

            .select2-selection__arrow {
                left: $padding-base-horizontal;
                right: auto;

                b {
                    margin-left: 0;
                }
            }
        }

        /**
         * Multiple Select2
         */

        .select2-selection--multiple {
            .select2-selection__choice,
            .select2-selection__placeholder {
                float: right;
            }

            .select2-selection__choice {
                margin-left: 0;
                margin-right: $padding-base-horizontal/2;
            }

            .select2-selection__choice__remove {
                margin-left: 2px;
                margin-right: auto;
            }
        }
    }
}





/*------------------------------------*\
    #ADDITIONAL GOODIES
\*------------------------------------*/

/**
 * Address Bootstrap's validation states
 *
 * If a Select2 widget parent has one of Bootstrap's validation state modifier
 * classes, adjust Select2's border colors and focus states accordingly.
 * You may apply said classes to the Select2 dropdown (body > .select2-container)
 * via JavaScript match Bootstraps' to make its styles match.
 *
 * @see http://getbootstrap.com/css/#forms-control-validation
 */

.has-warning {
    @include validation-state-focus($state-warning-text);
}

.has-error {
    @include validation-state-focus($state-danger-text);
}

.has-success {
    @include validation-state-focus($state-success-text);
}

/**
 * Select2 widgets in Bootstrap Input Groups
 *
 * When Select2 widgets are combined with other elements using Bootstraps
 * "Input Group" component, we don't want specific edges of the Select2
 * container to have a border-radius.
 *
 * Use .select2-bootstrap-prepend and .select2-bootstrap-append on
 * a Bootstrap 3 .input-group to let the contained Select2 widget know which
 * edges should not be rounded as they are directly followed by another element.
 *
 * @see http://getbootstrap.com/components/#input-groups
 */

/**
 * Mimick Bootstraps .input-group .form-control styles.
 *
 * @see https://github.com/twbs/bootstrap/blob/master/less/input-groups.less
 */

.input-group .select2-container--bootstrap {
    display: table;
    table-layout: fixed;
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
}

.input-group.select2-bootstrap-prepend .select2-container--bootstrap {
    .select2-selection {
        @include border-left-radius(0);
    }
}

.input-group.select2-bootstrap-append .select2-container--bootstrap {
    .select2-selection {
        @include border-right-radius(0);
    }
}

/**
 * Adjust alignment of Bootstrap buttons in Bootstrap Input Groups to address
 * Multi Select2's height which - depending on how many elements have been selected -
 * may grow taller than its initial size.
 *
 * @see http://getbootstrap.com/components/#input-groups
 */

.select2-bootstrap-append,
.select2-bootstrap-prepend {
    .select2-container--bootstrap,
    .input-group-btn,
    .input-group-btn .btn {
        vertical-align: top;
    }
}

/**
 * Temporary fix for https://github.com/select2/select2-bootstrap-theme/issues/9
 *
 * Provides `!important` for certain properties of the class applied to the
 * original `<select>` element to hide it.
 *
 * @see https://github.com/select2/select2/pull/3301
 * @see https://github.com/fk/select2/commit/31830c7b32cb3d8e1b12d5b434dee40a6e753ada
 */

.form-control.select2-hidden-accessible {
    position: absolute !important;
    width: 1px !important;
}

/**
 * Display override for inline forms
*/

.form-inline .select2-container--bootstrap {
    display: inline-block;
}