@import '~@/vendor/css/demo';
|
@import '~@/vendor/styles/common';
|
// Base
|
//
|
|
.dropdown-item,
|
.page-link,
|
.nav {
|
outline: 0;
|
}
|
|
// Page transition
|
//
|
|
.router-transitions {
|
opacity: 1;
|
transition: opacity 0.2s;
|
|
body.app-loading & {
|
opacity: 0.75;
|
}
|
}
|
|
// Tables
|
//
|
|
table.b-table > thead > tr > th.sorting,
|
table.b-table > tfoot > tr > th.sorting {
|
padding-right: 2rem;
|
}
|
|
/* 全局覆盖样式 */
|
.el-table td {
|
padding: 8px 0 !important;
|
}
|
|
.has-gutter th {
|
background: #f4fcff !important;
|
}
|
|
[dir='rtl'] .b-table > thead > tr > th.sorting,
|
[dir='rtl'] .b-table > tfoot > tr > th.sorting {
|
padding-left: 2rem;
|
|
&:before {
|
right: auto;
|
left: 0.75em;
|
}
|
|
&:after {
|
right: auto;
|
left: 0.25em;
|
}
|
}
|
|
.default-style[dir='rtl'] .b-table {
|
@import '~@/vendor/styles/_appwork/include';
|
|
> thead > tr > th.sorting,
|
> tfoot > tr > th.sorting {
|
padding-right: $table-cell-padding;
|
}
|
|
&.card-table > thead > tr > th.sorting:first-child,
|
&.card-table > tfoot > tr > th.sorting:first-child {
|
padding-right: $card-spacer-x;
|
}
|
}
|
|
.material-style[dir='rtl'] .b-table {
|
@import '~@/vendor/styles/_appwork/include-material';
|
|
> thead > tr > th.sorting,
|
> tfoot > tr > th.sorting {
|
padding-right: $table-cell-padding;
|
}
|
|
&.card-table > thead > tr > th.sorting:first-child,
|
&.card-table > tfoot > tr > th.sorting:first-child {
|
padding-right: $card-spacer-x;
|
}
|
}
|
/* 多选树 样式bug 修复 */
|
#tree .el-tree-node__content > .el-checkbox > .el-checkbox__input {
|
margin-top: 10px;
|
}
|