Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

dropdown.scss 1.7KB

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