button.less 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .btn {
  2. // height: 33px;
  3. // line-height: 33px;
  4. // flex: 0 0 auto;
  5. background-color: transparent !important;
  6. border: 1px solid @darkgray !important;
  7. // padding: 0 1.481vh;
  8. color: @gray !important;
  9. font-size: @fontsize-s !important;
  10. // cursor: pointer;
  11. &:hover {
  12. border-color: @green !important;
  13. color: @green !important;
  14. background: fade(@green, 20) !important;
  15. }
  16. &.green {
  17. border-color: @green !important;
  18. color: @green !important;
  19. background: fade(@green, 20) !important;
  20. }
  21. & + button {
  22. margin-left: 16px;
  23. }
  24. }
  25. .tabCut1 {
  26. display: flex;
  27. flex-direction: row;
  28. align-items: center;
  29. margin: 10px 0px 0px 20px;
  30. .tabCut-item {
  31. width: 93px;
  32. height: 23px;
  33. display: flex;
  34. align-items: center;
  35. justify-content: center;
  36. margin-right: 10px;
  37. background: fade(@green, 50);
  38. color: fade(@white, 50);
  39. position: relative;
  40. font-size: 12px;
  41. &.green1 {
  42. background: fade(@green, 80);
  43. color: fade(@white, 80);
  44. }
  45. &.green1:before {
  46. content: "";
  47. width: 1px;
  48. height: 7px;
  49. background-color: #ffffff;
  50. position: absolute;
  51. left: 0;
  52. }
  53. &.green1:after {
  54. content: "";
  55. width: 1px;
  56. height: 7px;
  57. background-color: #ffffff;
  58. position: absolute;
  59. right: 0;
  60. }
  61. }
  62. }