element-custom.scss 784 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* 改变主题色变量 */
  2. // $--color-primary: #337ab7;
  3. $--color-primary: #567;
  4. /* 改变 icon 字体路径变量,必需 */
  5. $--font-path: '~element-ui/lib/theme-chalk/fonts';
  6. @import "~element-ui/packages/theme-chalk/src/index";
  7. .el-upload__input {
  8. display: none !important;
  9. }
  10. .el-table {
  11. border: 1px solid #eee;
  12. border-bottom:0;
  13. }
  14. .el-autocomplete .el-input__inner, .el-select .el-input__inner {
  15. border-radius: 0;
  16. }
  17. .el-tree-node > .el-tree-node__children {
  18. overflow: visible;
  19. }
  20. @media screen and (max-width: $--message-min-width - 1) {
  21. .el-message {
  22. min-width: 100% !important;
  23. }
  24. }
  25. @media screen and (max-width: $--msgbox-width - 1) {
  26. .el-message-box {
  27. width: 100% !important;
  28. }
  29. }