element-ui.scss 1.1 KB

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