element-ui.scss 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. //覆盖一些element-ui样式
  2. .el-breadcrumb__inner, .el-breadcrumb__inner a{
  3. font-weight: 400!important;
  4. }
  5. .el-upload {
  6. input[type="file"] {
  7. display: none !important;
  8. }
  9. }
  10. .el-upload__input {
  11. display: none;
  12. }
  13. .cell {
  14. .el-tag {
  15. margin-right: 0px;
  16. }
  17. }
  18. .small-padding {
  19. .cell {
  20. padding-left: 5px;
  21. padding-right: 5px;
  22. }
  23. }
  24. .fixed-width{
  25. .el-button--mini{
  26. padding: 7px 10px;
  27. width: 60px;
  28. }
  29. }
  30. .status-col {
  31. .cell {
  32. padding: 0 10px;
  33. text-align: center;
  34. .el-tag {
  35. margin-right: 0px;
  36. }
  37. }
  38. }
  39. //暂时性解决dialog 问题 https://github.com/ElemeFE/element/issues/2461
  40. .el-dialog {
  41. transform: none;
  42. left: 0;
  43. position: relative;
  44. margin: 0 auto;
  45. }
  46. //文章页textarea修改样式
  47. .article-textarea {
  48. textarea {
  49. padding-right: 40px;
  50. resize: none;
  51. border: none;
  52. border-radius: 0px;
  53. border-bottom: 1px solid #bfcbd9;
  54. }
  55. }
  56. //element ui upload
  57. .upload-container {
  58. .el-upload {
  59. width: 100%;
  60. .el-upload-dragger {
  61. width: 100%;
  62. height: 200px;
  63. }
  64. }
  65. }
  66. //dropdown
  67. .el-dropdown-menu{
  68. a{
  69. display: block
  70. }
  71. }