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.

select.less 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .select-item(@size-class, @item-class) {
  2. .@{item-class} {
  3. margin: 0;
  4. padding: 7px 16px;
  5. clear: both;
  6. color: @text-color;
  7. font-size: @font-size-small !important;
  8. white-space: nowrap;
  9. list-style: none;
  10. cursor: pointer;
  11. transition: background @transition-time @ease-in-out;
  12. &:hover{
  13. background: @background-color-select-hover;
  14. }
  15. &-focus {
  16. background: @background-color-select-hover;
  17. }
  18. &-disabled {
  19. color: @btn-disable-color;
  20. cursor: @cursor-disabled;
  21. &:hover {
  22. color: @btn-disable-color;
  23. background-color: #fff;
  24. cursor: @cursor-disabled;
  25. }
  26. }
  27. &-selected ,&-selected:hover{
  28. color: #fff;
  29. background: @selected-color;
  30. }
  31. &-selected&-focus {
  32. background: shade(@selected-color, 10%);
  33. }
  34. &-divided{
  35. margin-top: 5px;
  36. border-top: 1px solid @border-color-split;
  37. &:before{
  38. content: '';
  39. height: 5px;
  40. display: block;
  41. margin: 0 -16px;
  42. background-color: #fff;
  43. position: relative;
  44. top: -7px;
  45. }
  46. }
  47. }
  48. .@{size-class}-large .@{item-class} {
  49. padding: 7px 16px 8px;
  50. font-size: @font-size-base !important;
  51. }
  52. }