changeElement.css 890 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* element表格中表头无法对齐问题 */
  2. body .el-table th.gutter{
  3. display: table-cell!important;
  4. }
  5. /* .el-table .cell{
  6. height:20px !important;
  7. line-height:20px !important;
  8. } */
  9. .el-message {
  10. z-index: 9999 !important;
  11. }
  12. .el-message-box{
  13. width:auto !important;
  14. }
  15. .el-table__empty-block {
  16. width: 100% !important;
  17. }
  18. /* 限制提示信息宽度 */
  19. .el-tooltip__popper{
  20. max-width: 400px;
  21. }
  22. /* 超过表格的内容末尾用省略号表格 */
  23. .el-table td div {
  24. white-space: nowrap;
  25. overflow:hidden;
  26. text-overflow: ellipsis;
  27. }
  28. /*创建弹出层的时候。table会有边线透出来。*/
  29. .el-table--border::after, .el-table--group::after, .el-table::before {
  30. background-color: transparent !important;
  31. }
  32. .export-operator-wrapper .el-dialog__header{
  33. display: none !important;
  34. }
  35. .export-operator-wrapper .el-dialog__body {
  36. padding-top:10px;
  37. }