index.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. // we can add this to custom namespace, default is 'el'
  2. //@forward "element-plus/theme-chalk/src/mixins/config.scss" with (
  3. // $namespace: "el"
  4. //);
  5. //base-theme
  6. @use "./base";
  7. //theme style such as dark-theme lighting
  8. @use "./dark";
  9. @use "./lighting";
  10. @use "./china-red";
  11. .el-button,
  12. .el-input,
  13. .el-textarea,
  14. .el-textarea__inner,
  15. .el-input__wrapper {
  16. border-radius: 4px;
  17. }
  18. .el-input__wrapper.is-focus {
  19. box-shadow: 0 0 0 1px #ac014d inset;
  20. }
  21. .el-textarea__inner {
  22. &:focus {
  23. box-shadow: 0 0 0 1px #ac014d inset;
  24. }
  25. }
  26. .el-radio__input.is-checked .el-radio__inner,
  27. .el-checkbox__input.is-checked .el-checkbox__inner,
  28. .el-checkbox__input.is-indeterminate .el-checkbox__inner {
  29. background: #ac014d;
  30. border-color: #ac014d;
  31. }
  32. .el-radio__input.is-checked + .el-radio__label {
  33. color: #ac014d;
  34. }
  35. .el-checkbox__input.is-checked + .el-checkbox__label {
  36. color: #303133;
  37. }
  38. .el-form-item__label {
  39. color: #303133;
  40. font-weight: 400;
  41. }
  42. .el-date-editor.el-input,
  43. .el-date-editor.el-input__wrapper {
  44. width: 100%;
  45. }
  46. .manageTitle {
  47. position: relative;
  48. padding-left: 12px;
  49. margin-right: 48px;
  50. margin-top: 0;
  51. margin-bottom: 0;
  52. font-size: 20px;
  53. font-family: Microsoft YaHei;
  54. font-weight: bold;
  55. color: #303133;
  56. line-height: 30px;
  57. &::after {
  58. position: absolute;
  59. content: '';
  60. width: 4px;
  61. height: 20px;
  62. top: 0;
  63. bottom: 0;
  64. left: 0;
  65. margin: auto;
  66. background: #ac014d;
  67. }
  68. .btn-back {
  69. margin-left: 24px;
  70. font-size: 16px;
  71. font-weight: normal;
  72. color: #2d67e3;
  73. cursor: pointer;
  74. }
  75. }
  76. .box {
  77. background: #ffffff;
  78. border-radius: 4px;
  79. padding: 30px 24px;
  80. }
  81. .t30 {
  82. margin-top: 30px;
  83. }
  84. .t24 {
  85. margin-top: 24px;
  86. }
  87. .el-button.is-plain {
  88. color: #ac014d;
  89. &:hover,
  90. &:focus {
  91. color: #fff;
  92. border-color: #ac014d;
  93. background-color: #ac014d;
  94. }
  95. }
  96. .el-button--primary {
  97. color: #fff;
  98. border-color: #ac014d;
  99. background-color: #ac014d;
  100. &:hover,
  101. &:focus {
  102. color: #fff;
  103. border-color: #ac014d;
  104. background-color: #ac014d;
  105. }
  106. }
  107. .el-button--primary.is-link {
  108. color: #ac014d;
  109. &:hover,
  110. &:focus {
  111. color: #ac014d;
  112. }
  113. }
  114. .el-button--danger {
  115. color: #fff;
  116. border-color: #ac014d;
  117. background-color: #ac014d;
  118. &:hover,
  119. &:focus {
  120. color: #fff;
  121. border-color: #ac014d;
  122. background-color: #ac014d;
  123. }
  124. }
  125. .el-form-item--small {
  126. margin-bottom: 20px;
  127. }
  128. .r10 {
  129. margin-right: 10px;
  130. }
  131. .t30 {
  132. margin-top: 30px;
  133. }
  134. .r24 {
  135. margin-right: 24px;
  136. }