_single.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. .select2-selection--single {
  2. background-color: mix($selection-bg-top-color, $selection-bg-bottom-color);
  3. border: 1px solid $border-color;
  4. border-radius: $border-radius;
  5. outline: 0;
  6. @include gradient-vertical($selection-bg-top-color, $selection-bg-bottom-color, 50%, 100%);
  7. &:focus {
  8. border: 1px solid $focus-border-color;
  9. }
  10. .select2-selection__rendered {
  11. color: #444;
  12. line-height: 28px;
  13. }
  14. .select2-selection__clear {
  15. cursor: pointer;
  16. float: right;
  17. font-weight: bold;
  18. margin-right: 10px;
  19. }
  20. .select2-selection__placeholder {
  21. color: #999;
  22. }
  23. .select2-selection__arrow {
  24. background-color: #ddd;
  25. border: none;
  26. border-left: 1px solid $border-color;
  27. border-top-right-radius: $border-radius;
  28. border-bottom-right-radius: $border-radius;
  29. height: 26px;
  30. position: absolute;
  31. top: 1px;
  32. right: 1px;
  33. width: 20px;
  34. @include gradient-vertical(#eeeeee, #cccccc, 50%, 100%);
  35. b {
  36. border-color: #888 transparent transparent transparent;
  37. border-style: solid;
  38. border-width: 5px 4px 0 4px;
  39. height: 0;
  40. left: 50%;
  41. margin-left: -4px;
  42. margin-top: -2px;
  43. position: absolute;
  44. top: 50%;
  45. width: 0;
  46. }
  47. }
  48. }
  49. &[dir="rtl"] {
  50. .select2-selection--single {
  51. .select2-selection__clear {
  52. float: left;
  53. }
  54. .select2-selection__arrow {
  55. border: none;
  56. border-right: 1px solid $border-color;
  57. border-radius: 0;
  58. border-top-left-radius: $border-radius;
  59. border-bottom-left-radius: $border-radius;
  60. left: 1px;
  61. right: auto;
  62. }
  63. }
  64. }
  65. &.select2-container--open {
  66. .select2-selection--single {
  67. border: 1px solid $focus-border-color;
  68. .select2-selection__arrow {
  69. background: transparent;
  70. border: none;
  71. b {
  72. border-color: transparent transparent #888 transparent;
  73. border-width: 0 4px 5px 4px;
  74. }
  75. }
  76. }
  77. &.select2-container--above {
  78. .select2-selection--single {
  79. border-top: none;
  80. border-top-left-radius: 0;
  81. border-top-right-radius: 0;
  82. @include gradient-vertical($selection-opened-bg-bottom-color, $selection-opened-bg-top-color, 0%, 50%);
  83. }
  84. }
  85. &.select2-container--below {
  86. .select2-selection--single {
  87. border-bottom: none;
  88. border-bottom-left-radius: 0;
  89. border-bottom-right-radius: 0;
  90. @include gradient-vertical($selection-opened-bg-top-color, $selection-opened-bg-bottom-color, 50%, 100%);
  91. }
  92. }
  93. }