select.less 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .select-trigger {
  2. display: flex;
  3. justify-content: space-between;
  4. border: 1px solid black;
  5. border-radius: 4px;
  6. padding: 5px 10px;
  7. user-select: none;
  8. color: @neutral-90;
  9. &.disabled {
  10. cursor: not-allowed;
  11. background-color: @neutral-20;
  12. border-color: @neutral-20;
  13. }
  14. }
  15. .select-highlighted:not(.select-disabled) {
  16. background-color: @neutral-10;
  17. border-radius: 4px;
  18. }
  19. .select-active {
  20. font-weight: bold;
  21. }
  22. .select-disabled {
  23. color: @text-muted;
  24. cursor: not-allowed;
  25. }
  26. .select-items {
  27. list-style: none;
  28. width: 100%;
  29. padding: 4px;
  30. margin: 0;
  31. position: absolute;
  32. background-color: white;
  33. box-shadow: 0px 2px 4px 0px #1e253029;
  34. overflow-y: auto;
  35. z-index: 1;
  36. max-height: 200px;
  37. & li {
  38. padding: 12px 8px;
  39. }
  40. }
  41. .select-wrapper {
  42. position: relative;
  43. }
  44. .select-item-title,
  45. .select-item-subtitle {
  46. display: block;
  47. user-select: none;
  48. :not(.select-disabled) {
  49. cursor: default;
  50. }
  51. }
  52. .select-item-icon {
  53. width: 30px;
  54. display: inline-block;
  55. }
  56. .select-item-subtitle {
  57. font-size: 0.9rem;
  58. }
  59. .select-icon .select-item-subtitle {
  60. margin-left: 30px;
  61. }
  62. .select-optional-label {
  63. font-weight: normal;
  64. }