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.

125 lines
2.5 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. .el-buttonBak {
  2. background: #FFF;
  3. border: 1px solid #0B663D;
  4. /*原始 默认值 1px solid #DCDFE6; */
  5. color: #0B663D !important;
  6. /*原始 默认值 #606266 */
  7. font-weight: 700;
  8. /*原始 默认值 500 */
  9. font-family: 'Microsoft YaHei';
  10. /*原始 默认值 Arial */
  11. padding: 10px 5px;
  12. /*原始 默认值 12px 20px */
  13. min-width: 60px;
  14. /*
  15. display: inline-block;
  16. line-height: 1;
  17. white-space: nowrap;
  18. cursor: pointer;
  19. -webkit-appearance: none;
  20. text-align: center;
  21. box-sizing: border-box;
  22. outline: 0;
  23. margin: 0;
  24. transition: .1s;
  25. font-size: 14px;
  26. border-radius: 4px;
  27. */
  28. }
  29. .el-button {
  30. background: #396FFA;
  31. /*原始 默认值 1px solid #DCDFE6; */
  32. color: #fff !important;
  33. border: none;
  34. /*原始 默认值 #606266 */
  35. font-weight: 500;
  36. /*原始 默认值 500 */
  37. font-family: 'NotoSansSC-Medium';
  38. /*原始 默认值 Arial */
  39. padding: 10px 5px;
  40. /*原始 默认值 12px 20px */
  41. min-width: 60px;
  42. }
  43. .commonbutton {
  44. width: 100px;
  45. height: 32px;
  46. font-size: 14px;
  47. font-weight: 500;
  48. font-family: "NotoSansSC-Medium";
  49. padding: 0;
  50. background-color: #396FFA;
  51. color: #fff !important;
  52. border: none;
  53. }
  54. .el-button.is-disabled {
  55. background-color: rgba(20, 96, 243, 0.4);
  56. }
  57. .el-button.is-disabled:hover,
  58. .el-button.is-disabled:focus {
  59. background-color: rgba(20, 96, 243, 0.4);
  60. }
  61. .commonbutton:hover,
  62. .commonbutton:focus {
  63. border-color: #c6e2ff;
  64. background-color: #0046FB;
  65. }
  66. .el-button:hover,
  67. .el-button:focus {
  68. border-color: #c6e2ff;
  69. background-color: #0046FB;
  70. }
  71. /* 白底按钮 */
  72. .difference {
  73. border: 1px solid #396FFA;
  74. color: #396FFA !important;
  75. background-color: #fff;
  76. font-size: 14px;
  77. font-weight: 500;
  78. font-family: "NotoSansSC-Medium";
  79. width: 100px;
  80. height: 32px;
  81. padding: 0;
  82. }
  83. .difference:hover,
  84. .difference:focus {
  85. color: #396FFA;
  86. background-color: #f4f4f4;
  87. border-color: #396FFA;
  88. }
  89. /* 红底按钮 */
  90. .deleteButton {
  91. width: 100px;
  92. height: 32px;
  93. font-size: 14px;
  94. font-weight: 500;
  95. font-family: "NotoSansSC-Medium";
  96. padding: 0;
  97. background-color: #FF5054;
  98. color: #fff !important;
  99. border: none;
  100. }
  101. .deleteButton:hover,
  102. .deleteButton:focus {
  103. background-color: #FF1F24;
  104. }
  105. .deleteButton.is-disabled {
  106. background-color: rgba(255, 80, 84, 0.4);
  107. }
  108. .deleteButton.is-disabled:hover,
  109. .deleteButton.is-disabled:focus {
  110. background-color: rgba(255, 80, 84, 0.4);
  111. }