1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /* element表格中表头无法对齐问题 */
- body .el-table th.gutter{
- display: table-cell!important;
- }
- /* .el-table .cell{
- height:20px !important;
- line-height:20px !important;
- } */
- .el-message {
- z-index: 9999 !important;
- }
- .el-message-box{
- width:auto !important;
- }
- .el-table__empty-block {
- width: 100% !important;
- }
- /* 限制提示信息宽度 */
- .el-tooltip__popper{
- max-width: 400px;
- }
- /* 超过表格的内容末尾用省略号表格 */
- .el-table td div {
- white-space: nowrap;
- overflow:hidden;
- text-overflow: ellipsis;
- }
- /*创建弹出层的时候。table会有边线透出来。*/
- .el-table--border::after, .el-table--group::after, .el-table::before {
- background-color: transparent !important;
- }
- .export-operator-wrapper .el-dialog__header{
- display: none !important;
- }
- .export-operator-wrapper .el-dialog__body {
- padding-top:10px;
- }
|