// cover some element-ui styles
|
|
.el-breadcrumb__inner,
|
.el-breadcrumb__inner a {
|
font-weight: 400 !important;
|
}
|
|
.el-upload {
|
input[type="file"] {
|
display: none !important;
|
}
|
}
|
|
.el-upload__input {
|
display: none;
|
}
|
|
.cell {
|
.el-tag {
|
margin-right: 0px;
|
}
|
}
|
|
.small-padding {
|
.cell {
|
padding-left: 5px;
|
padding-right: 5px;
|
}
|
}
|
|
.fixed-width {
|
.el-button--mini {
|
padding: 7px 10px;
|
width: 60px;
|
}
|
}
|
|
.status-col {
|
.cell {
|
padding: 0 10px;
|
text-align: center;
|
|
.el-tag {
|
margin-right: 0px;
|
}
|
}
|
}
|
|
// to fixed https://github.com/ElemeFE/element/issues/2461
|
.el-dialog {
|
transform: none;
|
left: 0;
|
position: relative;
|
margin: 0 auto;
|
background: #001233;
|
.el-dialog__title{
|
color: #fff;
|
}
|
}
|
|
// refine element ui upload
|
.upload-container {
|
.el-upload {
|
width: 100%;
|
|
.el-upload-dragger {
|
width: 100%;
|
height: 200px;
|
}
|
}
|
}
|
|
// dropdown
|
.el-dropdown-menu {
|
a {
|
display: block
|
}
|
}
|
|
// fix date-picker ui bug in filter-item
|
.el-range-editor.el-input__inner {
|
display: inline-flex !important;
|
}
|
|
.el-form-item__label {
|
color: #fff;
|
}
|
|
.el-table {
|
background: none
|
}
|
|
.el-table .el-table__header-wrapper th, .el-table th {
|
background-color: #054586 !important;
|
color: #fff !important;
|
}
|
|
.el-table tr {
|
color: #fff;
|
background-color: #021441;
|
}
|
|
.el-table th.is-leaf, .el-table td {
|
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
|
}
|
|
.el-table__footer-wrapper td {
|
border-top: 1px solid rgba(255, 255, 255, 0.15);
|
|
}
|
|
.el-table__header-wrapper tbody td, .el-table__footer-wrapper tbody td {
|
color: #fff;
|
background-color: #021441;
|
}
|
|
.el-table--group, .el-table--border {
|
border: 1px solid #366cb9;
|
}
|
|
.el-table--border th, .el-table--border td {
|
border-right: 1px solid #366cb9 !important;
|
}
|
|
.el-table--border th {
|
border-bottom: 1px solid #366cb9;
|
}
|
|
.el-table::before, .el-table--group::after, .el-table--border::after {
|
background-color: rgba(0, 0, 0, 0);
|
}
|
|
.el-table__empty-block {
|
color: #fff;
|
background-color: #021441;
|
}
|
|
.el-table tbody tr:hover > .is-center {
|
background-color: rgba(5, 64, 149, 0.5) !important;
|
}
|
|
.el-loading-mask {
|
background-color: rgba(5, 64, 149, 0.3)
|
}
|
|
.el-tabs--card > .el-tabs__header .el-tabs__nav {
|
border: 1px solid #366CB9;
|
}
|
|
.el-tabs--card > .el-tabs__header {
|
border-bottom: 1px solid #366CB9;
|
}
|
|
.el-table__fixed::before {
|
background-color: rgba(0, 0, 0, 0);
|
}
|
|
.el-card__body{
|
.el-tabs--card {
|
.el-tabs__header {
|
.el-tabs__item{
|
border-left:0;
|
color: #95c1fd;
|
}
|
.el-tabs__item.is-active {
|
color: #fff;
|
background: #24CAFF;
|
border-bottom: 0;
|
border-left: 0;
|
}
|
}
|
}
|
}
|