index.less 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. @import '../../app.less';
  2. .input {
  3. display: inline-block;
  4. vertical-align: middle;
  5. border-radius: 2px;
  6. input {
  7. width: 100%;
  8. border: solid 1px rgba(0, 0, 0, 0.1);
  9. background: @theme_bg_color;
  10. }
  11. input:hover {
  12. border-color: @theme_color;
  13. }
  14. input:focus {
  15. border-color: @theme_color;
  16. background: darken(@theme_bg_color, 2);
  17. }
  18. }
  19. .input.basic {
  20. input {
  21. padding: 4px 15px;
  22. line-height: 30px;
  23. font-size: 20px;
  24. }
  25. }
  26. .input.small {
  27. input {
  28. line-height: 18px;
  29. font-size: 12px;
  30. padding: 2px 8px;
  31. }
  32. }
  33. .input.lager {
  34. input {
  35. font-size: 18px;
  36. line-height: 28px;
  37. padding: 7px 20px;
  38. }
  39. }
  40. .input.disabled {
  41. cursor: no-drop;
  42. }
  43. .input.basic.radius {
  44. border-radius: 17px;
  45. }
  46. .input.small.radius {
  47. border-radius: 14px;
  48. }
  49. .input.lager.radius {
  50. border-radius: 36px;
  51. }
  52. .input.default {
  53. background: #fff;
  54. color: @holder_color;
  55. border: 1px solid @holder_color;
  56. }
  57. .button.default:hover {
  58. color: @theme_color;
  59. border-color: @theme_color;
  60. }