You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
frontend/src/assets/css/element.less

72 lines
1.3 KiB
Plaintext

2 years ago
//表格样式
.el-table {
td.el-table__cell,
th.el-table__cell.is-leaf {
border-bottom: 1px solid #ebeef5;
}
.el-table__header-wrapper,
.el-table__fixed-header-wrapper {
border-top: 1px solid #ebeef5;
}
th.el-table__cell {
background: #f8f8f8 !important;
}
.el-button--text {
padding: 0px;
}
.el-button + .el-button,
.el-checkbox.is-bordered + .el-checkbox.is-bordered {
margin-left: 16px;
}
.deleteText {
color: #f56c6c;
}
2 years ago
.deleteText:focus,
.deleteText:hover {
color: #f56c6c;
}
2 years ago
}
.el-table::before,
.el-table__fixed-right::before,
.el-table__fixed::before {
height: 0px !important;
}
//分页
.pageNation {
margin-top: 8px;
display: flex;
justify-content: flex-end;
}
//弹窗
.el-dialog__body {
padding: 8px 20px;
}
2 years ago
.el-dialog {
background: #fff;
border-radius: 2px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
box-sizing: border-box;
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
margin-top: 0px !important;
}
.el-button--small {
padding: 9px 9px;
}
2 years ago
.el-button--default,
.el-button--primary {
width: 80px;
}
.el-dropdown [disabled] {
color: #fff;
}
2 years ago
.el-select-dropdown__item.selected {
font-weight: normal;
}
.el-dropdown-menu--small .el-dropdown-menu__item {
2 years ago
font-size: 12px;
2 years ago
}