element-ui.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. // cover some element-ui styles
  2. .el-breadcrumb__inner,
  3. .el-breadcrumb__inner a {
  4. font-weight: 400 !important;
  5. }
  6. .el-upload {
  7. input[type="file"] {
  8. display: none !important;
  9. }
  10. }
  11. .el-upload__input {
  12. display: none;
  13. }
  14. // to fixed https://github.com/ElemeFE/element/issues/2461
  15. .el-dialog {
  16. transform: none;
  17. left: 0;
  18. position: relative;
  19. margin: 0 auto;
  20. }
  21. // refine element ui upload
  22. .upload-container {
  23. .el-upload {
  24. width: 100%;
  25. .el-upload-dragger {
  26. width: 100%;
  27. height: 200px;
  28. }
  29. }
  30. }
  31. // dropdown
  32. .el-dropdown-menu {
  33. a {
  34. display: block;
  35. }
  36. }
  37. // to fix el-date-picker css style
  38. .el-range-separator {
  39. box-sizing: content-box;
  40. }
  41. .b-shop-rate {
  42. .el-form-item__content {
  43. div {
  44. line-height: 51px;
  45. }
  46. }
  47. }
  48. .amap-marker {
  49. img {
  50. width: 19px !important;
  51. height: 32px !important;
  52. }
  53. }
  54. .dashboardPage {
  55. .el-table {
  56. &::before {
  57. display: none !important;
  58. }
  59. }
  60. .cell {
  61. height: 40px !important;
  62. line-height: 40px;
  63. // display: flex;
  64. // align-items: center;
  65. }
  66. .el-table__cell {
  67. padding: 0 !important;
  68. border-bottom: none !important;
  69. }
  70. .el-table__header-wrapper {
  71. .el-table__cell {
  72. background-color: #f7f8fa !important;
  73. border-radius: 4px;
  74. }
  75. }
  76. .el-tabs__item {
  77. height: 62px !important;
  78. line-height: 62px !important;
  79. color: #8c8c8c;
  80. font-size: 20px;
  81. &.is-active {
  82. font-weight: 600;
  83. color: #3d3d3d;
  84. }
  85. }
  86. .el-tabs__active-bar {
  87. width: 24px !important;
  88. margin-left: 18px;
  89. height: 4px;
  90. background-color: #495fff;
  91. }
  92. .el-tabs__nav-wrap {
  93. &::after {
  94. height: 1px !important;
  95. }
  96. }
  97. .el-select {
  98. .el-input__inner {
  99. background-color: #F7F8FA;
  100. border: none;
  101. }
  102. }
  103. }