You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
183 lines
3.0 KiB
183 lines
3.0 KiB
/* 表格行背景色样式 start */
|
|
|
|
.el-table .warning {
|
|
background: #E6A23C;
|
|
}
|
|
|
|
.el-table .danger {
|
|
background: #F56C6C;
|
|
}
|
|
|
|
.el-table .success {
|
|
background: #67C23A;
|
|
}
|
|
|
|
.el-table .primary {
|
|
background: #409EFF;
|
|
}
|
|
|
|
.el-table .info {
|
|
background: #909399;
|
|
}
|
|
|
|
.el-table .purple-row {
|
|
background: rgb(255, 0, 255);
|
|
}
|
|
|
|
|
|
/* 表格选中行 颜色 ::v-deep #F4F8FF*/
|
|
|
|
.el-table__body tr.current-row>td {
|
|
background-color: #DCE7FD !important;
|
|
}
|
|
|
|
/* 表格行背景色样式 end */
|
|
|
|
|
|
/* 点击树结构项的选中颜色 */
|
|
|
|
.el-tree {
|
|
min-width: 100%;
|
|
display: inline-block !important;
|
|
}
|
|
|
|
.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content {
|
|
background-color: rgba(20, 96, 243, 0.1) !important;
|
|
color: #1460F3!important;
|
|
}
|
|
|
|
.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content .custom-tree-node .maxtitle,
|
|
.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content .custom-tree-node .mintitle {
|
|
color: #1460F3!important;
|
|
}
|
|
|
|
.el-tree-node__content {
|
|
height: 35px;
|
|
line-height: 35px;
|
|
}
|
|
|
|
.middlebox {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.maxtitle {
|
|
font-family: "NotoSansSC-Medium";
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: #232748;
|
|
}
|
|
|
|
.mintitle {
|
|
font-family: "NotoSansSC-Regular";
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: #52555f;
|
|
}
|
|
|
|
.el-tree-node__expand-icon {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.treeicons {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
|
|
/* tabs */
|
|
|
|
.el-tabs__item {
|
|
padding: 0px 12px;
|
|
/* 原始值 0 20px */
|
|
height: 28px;
|
|
/* 原始值 40px */
|
|
line-height: 28px;
|
|
/* 原始值 40px */
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
font-family: "NotoSansSC-Regular";
|
|
}
|
|
|
|
.el-tabs__item.is-active {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
font-family: "NotoSansSC-Bold";
|
|
color: #396FFA;
|
|
background-color: rgba(20, 96, 243, 0.1);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.el-tabs__header {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.el-tabs--top .el-tabs__item.is-top:nth-child(2) {
|
|
padding-left: 12px;
|
|
}
|
|
|
|
.el-tabs--top .el-tabs__item.is-top:last-child {
|
|
padding-right: 12px;
|
|
}
|
|
|
|
.el-tabs__item:hover {
|
|
color: #396FFA;
|
|
}
|
|
|
|
.el-tabs__active-bar {
|
|
width: 0 !important;
|
|
}
|
|
|
|
.el-tabs__nav-wrap::after {
|
|
width: 0 !important;
|
|
}
|
|
|
|
|
|
/* el-drawer */
|
|
|
|
.el-drawer__header {
|
|
margin-bottom: 10px;
|
|
/* 原始值 32px */
|
|
padding: 10px 10px 0;
|
|
/* 原始值 20px 20px 0 */
|
|
}
|
|
|
|
.publicfontsize {
|
|
font-size: 18px;
|
|
}
|
|
|
|
|
|
/* el-cascader 隐藏前面的radio并点击行选中 */
|
|
|
|
.example .el-cascader-panel .el-radio {
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 10;
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
}
|
|
|
|
.example .el-cascader-panel .el-radio__input {
|
|
display: none;
|
|
}
|
|
|
|
.example .el-cascader-panel .el-cascader-node__postfix {
|
|
top: 10px;
|
|
}
|
|
|
|
|
|
/* a标签样式 */
|
|
|
|
a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
|
|
/* 颜色选择器 */
|
|
|
|
.el-button.is-plain:focus,
|
|
.el-button.is-plain:hover {
|
|
border-color: #c6e2ff;
|
|
background-color: #0046FB;
|
|
}
|