5f5cae27d9e1cb5be9f91a8fca880fdbdda0111d.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. .cell {
  15. .el-tag {
  16. margin-right: 0px;
  17. }
  18. }
  19. .small-padding {
  20. .cell {
  21. padding-left: 5px;
  22. padding-right: 5px;
  23. }
  24. }
  25. .fixed-width {
  26. .el-button--mini {
  27. padding: 7px 10px;
  28. width: 60px;
  29. }
  30. }
  31. .status-col {
  32. .cell {
  33. padding: 0 10px;
  34. text-align: center;
  35. .el-tag {
  36. margin-right: 0px;
  37. }
  38. }
  39. }
  40. // to fixed https://github.com/ElemeFE/element/issues/2461
  41. .el-dialog {
  42. transform: none;
  43. left: 0;
  44. position: relative;
  45. margin: 0 auto;
  46. width: 70%;
  47. }
  48. // refine element ui upload
  49. .upload-container {
  50. .el-upload {
  51. width: 100%;
  52. .el-upload-dragger {
  53. width: 100%;
  54. height: 200px;
  55. }
  56. }
  57. }
  58. // dropdown
  59. .el-dropdown-menu {
  60. a {
  61. display: block
  62. }
  63. }
  64. // fix date-picker ui bug in filter-item
  65. .el-range-editor.el-input__inner {
  66. display: inline-flex !important;
  67. }