You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dropdown.scss 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .select2-container.aui-select2-container {
  2. background-color: transparent !important;
  3. a.select2-choice {
  4. height: 28px !important;
  5. line-height: 18px !important;
  6. width: 100% !important;
  7. background-color: $selectBg !important;
  8. border-color: $selectBg !important;
  9. color: $selectFontColor !important;
  10. text-shadow: none !important;
  11. font-size: 12px !important;
  12. margin: 0 auto !important;
  13. &:after {
  14. border-top-color: $selectFontColor;
  15. }
  16. }
  17. &.select2-dropdown-open{
  18. a.select2-choice {
  19. background-color: $selectActiveBg !important;
  20. border-color: $selectActiveBg !important;
  21. }
  22. }
  23. }
  24. .select2-drop.aui-select2-drop.aui-style-default {
  25. z-index: $dropdownZ;
  26. background-color: $selectActiveBg;
  27. border-color: $selectActiveBg;
  28. .select2-results{
  29. background-color: $selectActiveBg;
  30. border-color: $selectActiveBg;
  31. &::-webkit-scrollbar {
  32. background-color: transparent;
  33. }
  34. &::-webkit-scrollbar-track {
  35. background-color: transparent;
  36. }
  37. &::-webkit-scrollbar-track-piece {
  38. background-color: transparent;
  39. }
  40. &::-webkit-scrollbar-thumb {
  41. background-color: $selectActiveItemBg;
  42. }
  43. .select2-result{
  44. &.select2-highlighted{
  45. background-color: $selectActiveItemBg;
  46. }
  47. .select2-result-label{
  48. font-size: 12px;
  49. line-height: 20px;
  50. }
  51. }
  52. }
  53. }
  54. .select2-drop-mask {
  55. z-index: $dropdownMaskZ;
  56. }