元气智驾官网后台前端页面
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

70 rindas
1.0 KiB

  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. // to fixed https://github.com/ElemeFE/element/issues/2461
  15. .el-dialog {
  16. transform: none;
  17. left: 0;
  18. position: relative;
  19. margin: 0 auto;
  20. }
  21. // refine element ui upload
  22. .upload-container {
  23. .el-upload {
  24. width: 100%;
  25. .el-upload-dragger {
  26. width: 100%;
  27. height: 200px;
  28. }
  29. }
  30. }
  31. // dropdown
  32. .el-dropdown-menu {
  33. a {
  34. display: block
  35. }
  36. }
  37. // to fix el-date-picker css style
  38. .el-range-separator {
  39. box-sizing: content-box;
  40. }
  41. // fix date-picker ui bug in filter-item
  42. .el-range-editor.el-input__inner {
  43. display: inline-flex !important;
  44. }
  45. //全局覆盖样式
  46. //用于解决select标签无法独占一行的情况
  47. .resetform {
  48. width: 100%;
  49. height: auto;
  50. .el-select {
  51. width: 100%;
  52. }
  53. .el-input__inner{
  54. width: 100%;
  55. }
  56. .el-cascader{
  57. width: 100%;
  58. }
  59. }