ComboBox.less 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. // ComboBox
  2. .@{prefix}-combobox {
  3. position: relative;
  4. .inline-block();
  5. .border-radius(3px);
  6. .box-shadow(@textbox-box-shadow);
  7. *height: 32px;
  8. }
  9. .@{prefix}-combobox input {
  10. border: 1px solid @textbox-border;
  11. border-right-color: @combobox-border;
  12. height: 28px;
  13. }
  14. .@{prefix}-combobox.@{prefix}-disabled input {
  15. color: mix(@text, @textbox-bg, 40%);
  16. }
  17. .@{prefix}-combobox.@{prefix}-has-open input {
  18. .border-radius(4px 0 0 4px);
  19. }
  20. .@{prefix}-combobox .@{prefix}-btn {
  21. border: 1px solid @textbox-border;
  22. border-left: 0;
  23. .border-radius(0 4px 4px 0);
  24. margin: 0;
  25. }
  26. .@{prefix}-combobox button {
  27. padding-right: 8px;
  28. padding-left: 8px;
  29. }
  30. .@{prefix}-combobox.@{prefix}-disabled .@{prefix}-btn button {
  31. cursor: default;
  32. .box-shadow(none);
  33. .opacity(@btn-box-disabled-opacity);
  34. }
  35. .@{prefix}-combobox .@{prefix}-status {
  36. position: absolute;
  37. right: 2px;
  38. top: 50%;
  39. line-height: 16px;
  40. margin-top: -8px;
  41. font-size: 12px;
  42. width: 15px;
  43. height: 15px;
  44. text-align: center;
  45. cursor: pointer;
  46. }
  47. .@{prefix}-combobox.@{prefix}-has-status input {
  48. padding-right: 20px;
  49. }
  50. .@{prefix}-combobox.@{prefix}-has-open .@{prefix}-status {
  51. right: 37px;
  52. }
  53. .@{prefix}-combobox .@{prefix}-status.@{prefix}-i-warning {
  54. color: @combobox-warning-text;
  55. }
  56. .@{prefix}-combobox .@{prefix}-status.@{prefix}-i-checkmark {
  57. color: @combobox-success-text;
  58. }
  59. .@{prefix}-menu.@{prefix}-combobox-menu {
  60. border-top: 0;
  61. margin-top: 0;
  62. max-height: 200px;
  63. .@{prefix}-menu-item {
  64. padding: 4px 6px 4px 4px;
  65. font-size: 11px;
  66. }
  67. .@{prefix}-menu-item-sep {
  68. padding: 0;
  69. }
  70. .@{prefix}-text {
  71. font-size: 11px;
  72. }
  73. .@{prefix}-menu-item-link, .@{prefix}-menu-item-link b {
  74. font-size: 11px;
  75. }
  76. .@{prefix}-text b {
  77. font-size: 11px;
  78. }
  79. }