mirror of
https://gitee.com/JavaLionLi/plus-ui.git
synced 2026-09-13 07:43:43 +08:00
111 lines
2.0 KiB
SCSS
111 lines
2.0 KiB
SCSS
/* Shared cards, panels, and content surfaces. */
|
|
|
|
.form-header {
|
|
font-size: 15px;
|
|
color: #6379bb;
|
|
border-bottom: 1px solid #ddd;
|
|
margin: 8px 10px 25px 10px;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.pagination-container {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-top: 18px;
|
|
padding: 10px 0 0 !important;
|
|
}
|
|
|
|
.tree-border {
|
|
margin-top: 8px;
|
|
border: 1px solid rgba(148, 163, 184, 0.16);
|
|
background: rgba(255, 255, 255, 0.42) none;
|
|
border-radius: 22px;
|
|
width: 100%;
|
|
padding: 12px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.pagination-container .el-pagination > .el-pagination__jump {
|
|
display: none !important;
|
|
}
|
|
|
|
.pagination-container .el-pagination > .el-pagination__sizes {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
.el-table .fixed-width .el-button--small {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
width: inherit;
|
|
}
|
|
|
|
.el-table .el-dropdown-link {
|
|
cursor: pointer;
|
|
color: #409eff;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.el-table .el-dropdown,
|
|
.el-icon-arrow-down {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.el-tree-node__content > .el-checkbox {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.list-group-striped > .list-group-item {
|
|
border-left: 0;
|
|
border-right: 0;
|
|
border-radius: 0;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.list-group {
|
|
padding-left: 0px;
|
|
list-style: none;
|
|
}
|
|
|
|
.list-group-item {
|
|
border-bottom: 1px solid #e7eaec;
|
|
border-top: 1px solid #e7eaec;
|
|
margin-bottom: -1px;
|
|
padding: 11px 0px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.pull-right {
|
|
float: right !important;
|
|
}
|
|
|
|
.el-card__header {
|
|
padding: 14px 16px 10px !important;
|
|
min-height: auto;
|
|
background: transparent;
|
|
border-bottom: 1px solid rgba(148, 163, 184, 0.14);
|
|
}
|
|
|
|
.el-card__body {
|
|
padding: 16px !important;
|
|
}
|
|
|
|
.el-card {
|
|
border-radius: var(--app-radius-lg);
|
|
box-shadow: var(--app-shadow-sm);
|
|
border-color: var(--app-surface-border);
|
|
overflow: hidden;
|
|
transition: box-shadow 0.2s ease, border-color 0.2s ease;
|
|
background: var(--app-surface-bg);
|
|
}
|
|
|
|
.el-card:hover {
|
|
box-shadow: var(--app-shadow-md);
|
|
border-color: rgba(64, 158, 255, 0.16);
|
|
}
|
|
|
|
.card-box {
|
|
margin-bottom: 10px;
|
|
}
|