@import '~@/vendor/css/demo';
|
@import '~@/vendor/styles/common';
|
@import '~@/vendor/styles/amap-content';
|
// 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
|
//
|
/* 全局覆盖样式 */
|
.el-table td {
|
padding: 8px 0 !important;
|
}
|
.has-gutter th {
|
background: #f4fcff !important;
|
}
|
.btn-link {
|
color: #35bde7;
|
}
|
|
table.b-table > thead > tr > th.sorting,
|
table.b-table > tfoot > tr > th.sorting {
|
padding-right: 2rem;
|
}
|
|
[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;
|
}
|
}
|
.radius-circle {
|
border-radius: 50%;
|
overflow: hidden;
|
}
|
|
.radius-5 {
|
border-radius: 5px;
|
}
|
|
.radius-10 {
|
border-radius: 10px;
|
}
|
|
.radius-15 {
|
border-radius: 15px;
|
}
|
|
.radius-20 {
|
border-radius: 20px;
|
}
|
|
.radius-25 {
|
border-radius: 25px;
|
}
|
.margin0auto {
|
margin: 0 auto;
|
}
|
.alarm-checkBox {
|
.el-checkbox__input {
|
line-height: 0;
|
}
|
.el-checkbox__input.is-checked .el-checkbox__inner,
|
.el-checkbox__input.is-indeterminate .el-checkbox__inner {
|
background-color: #35bde7;
|
border-color: #35bde7;
|
}
|
.el-checkbox__inner:hover {
|
border-color: #35bde7;
|
}
|
.el-checkbox__input.is-checked + .el-checkbox__label {
|
color: #35bde7;
|
}
|
}
|
.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;
|
}
|
}
|
|
/* 新增自定义样式 */
|
.text-purple {
|
color: #6f42c1 !important;
|
}
|
|
/* 覆盖ie input X 样式 */
|
input::-ms-clear {
|
display: none;
|
}
|