layout.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. .select2-container--default {
  2. @import "single";
  3. @import "multiple";
  4. &.select2-container--open.select2-container--above {
  5. .select2-selection--single, .select2-selection--multiple {
  6. border-top-left-radius: 0;
  7. border-top-right-radius: 0;
  8. }
  9. }
  10. &.select2-container--open.select2-container--below {
  11. .select2-selection--single, .select2-selection--multiple {
  12. border-bottom-left-radius: 0;
  13. border-bottom-right-radius: 0;
  14. }
  15. }
  16. .select2-search--dropdown {
  17. .select2-search__field {
  18. border: 1px solid #aaa;
  19. }
  20. }
  21. .select2-search--inline {
  22. .select2-search__field {
  23. background: transparent;
  24. border: none;
  25. outline: 0;
  26. box-shadow: none;
  27. }
  28. }
  29. .select2-results > .select2-results__options {
  30. max-height: 200px;
  31. overflow-y: auto;
  32. }
  33. .select2-results__option {
  34. &[role=group] {
  35. padding: 0;
  36. }
  37. &[aria-disabled=true] {
  38. color: #999;
  39. }
  40. &[aria-selected=true] {
  41. background-color: #ddd;
  42. }
  43. .select2-results__option {
  44. padding-left: 1em;
  45. .select2-results__group {
  46. padding-left: 0;
  47. }
  48. .select2-results__option {
  49. margin-left: -1em;
  50. padding-left: 2em;
  51. .select2-results__option {
  52. margin-left: -2em;
  53. padding-left: 3em;
  54. .select2-results__option {
  55. margin-left: -3em;
  56. padding-left: 4em;
  57. .select2-results__option {
  58. margin-left: -4em;
  59. padding-left: 5em;
  60. .select2-results__option {
  61. margin-left: -5em;
  62. padding-left: 6em;
  63. }
  64. }
  65. }
  66. }
  67. }
  68. }
  69. }
  70. .select2-results__option--highlighted[aria-selected] {
  71. background-color: #5897fb;
  72. color: white;
  73. }
  74. .select2-results__group {
  75. cursor: default;
  76. display: block;
  77. padding: 6px;
  78. }
  79. }