element.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. .el-message-box {
  2. .el-message-box__status::before {
  3. font-size: 66px !important;
  4. }
  5. .el-message-box__content {
  6. font-size: 24px;
  7. }
  8. .el-message-box__btns {
  9. display: flex;
  10. justify-content: flex-end;
  11. .el-button {
  12. font-size: 16px;
  13. }
  14. // .confirmBtn{
  15. // background: #e90000 !important;
  16. // border: 1px solid #DCDFE6;
  17. // border-radius: 6px;
  18. // }
  19. }
  20. }
  21. .el-popover {
  22. padding: 0;
  23. border: none;
  24. }
  25. .el-switch {
  26. .el-switch__label {
  27. color: #50596b;
  28. }
  29. }
  30. .el-breadcrumb {
  31. font-family: Proxima Nova;
  32. margin-top: 21px;
  33. margin-bottom: 15px;
  34. line-height: 19px;
  35. .el-breadcrumb__item {
  36. .el-breadcrumb__inner.is-link {
  37. color: #303133;
  38. }
  39. .el-breadcrumb__inner {
  40. color: #606266;
  41. cursor: pointer;
  42. }
  43. .last-bread {
  44. span {
  45. color: #3882c1 !important;
  46. }
  47. }
  48. }
  49. }
  50. /**
  51. * 解决el-input设置类型为number时,中文输入法光标上移问题
  52. **/
  53. // .el-input__inner{
  54. // line-height: 1px !important;
  55. // }
  56. /**
  57. * 解决el-input设置类型为number时,去掉输入框后面上下箭头
  58. **/
  59. // input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  60. // -webkit-appearance: none;
  61. // margin: 0;
  62. // }
  63. .el-button--danger:focus,
  64. .el-button--danger:hover {
  65. background: #a12524;
  66. border-color: #a12524;
  67. }
  68. // 去掉放大图的按钮背景色
  69. .el-image-viewer__close {
  70. background-color: transparent !important;
  71. }
  72. // 隐藏放大图底部工具栏
  73. .el-image-viewer__actions{
  74. display: none;
  75. }
  76. .el-empty__description {
  77. p {
  78. font-size: 36px;
  79. }
  80. }
  81. // 应用于商品详情页的表格
  82. .el-table,
  83. .el-table__body {
  84. font-size: 16px;
  85. .el-input__inner {
  86. height: 26px;
  87. }
  88. }
  89. .el-table__cell {
  90. padding: 8px 0 !important;
  91. }
  92. .cell {
  93. word-break: break-word !important;
  94. }
  95. // 防止覆盖header
  96. .el-loading-mask{
  97. z-index: 99;
  98. // header z-index为100
  99. // .el-image-viewer__mask z-index为2000
  100. }