| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- @use './variables.scss' as *;
- .container {
- width: 100%;
- flex: 1;
- font-weight: 400;
- }
- .component-container {
- @extend .container;
- }
- //表格
- .el-table {
- --el-table-text-color: rgba(0, 0, 0, 0.88) !important;
- --el-fill-color-light: #f8f9fa !important;
- --el-table-header-text-color: rgba(0, 0, 0, 0.88) !important;
- }
- // 表头
- .el-table th.el-table__cell {
- --el-table-header-bg-color: rgba(0, 0, 0, 0.02);
- }
- // 固定列
- .el-table__header-wrapper tr th.el-table-fixed-column--left,
- .el-table__header-wrapper tr th.el-table-fixed-column--right {
- --el-table-header-bg-color: #fafafa;
- }
- // 悬浮颜色
- // 表格下横线
- .el-table td.el-table__cell,
- .el-table th.el-table__cell.is-leaf {
- --el-table-border: 1px solid rgba(0, 0, 0, 0.06);
- }
- // 表格的padding
- .el-table .el-table__cell {
- padding: 12px 0 !important;
- }
- .el-table .cell {
- padding: 0 24px !important;
- }
- .el-button {
- --el-font-weight-primary: 0 !important;
- }
- .el-button--primary {
- --el-button-bg-color: #1980ff !important;
- }
- .el-select {
- font-weight: 0 !important;
- }
- .el-dialog {
- min-height: 500px;
- .el-dialog__title {
- color: rgba(0, 0, 0, 0.88);
- font-weight: 600;
- }
- }
|