haoxuan
2023-10-11 a1a6630f2eabfc78a379b5808b1bf7231a084d0b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// element 样式补丁
.el-card {
  &.is-always-shadow {
    box-shadow: 0 0 8px 0 rgba(232,237,250,.6), 0 2px 4px 0 rgba(232,237,250,.5);
  }
  &.is-hover-shadow {
    &:hover {
      box-shadow: 0 0 8px 0 rgba(232,237,250,.6), 0 2px 4px 0 rgba(232,237,250,.5);
    }
  }
}
 
.el-menu--horizontal {
  border-bottom: none !important;
}
 
.el-tabs__item:focus.is-active.is-focus:not(:active) {
  box-shadow: none !important;
}
 
// 修复IE宽度不能撑满
.el-table__body,
.el-table__header {
  width: 100% ;
}
 
// Chrome下表格头部错位修复
.el-table th.gutter,
.el-table colgroup.gutter {
  display: table-cell !important;
}