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.
26 lines
633 B
26 lines
633 B
|
2 weeks ago
|
/* tree-select-global.css */
|
||
|
|
.el-select-dropdown__item.is-disabled {
|
||
|
|
background-color: unset !important;
|
||
|
|
color: #606266 !important;
|
||
|
|
cursor: default;
|
||
|
|
}
|
||
|
|
|
||
|
|
.el-checkbox__input.is-disabled .el-checkbox__inner {
|
||
|
|
background-color: #e9e9eb;
|
||
|
|
border-color: #c8c9cc;
|
||
|
|
cursor: not-allowed;
|
||
|
|
}
|
||
|
|
|
||
|
|
.el-select-dropdown__item {
|
||
|
|
box-sizing: border-box;
|
||
|
|
color: var(--el-text-color-regular);
|
||
|
|
cursor: default;
|
||
|
|
font-size: var(--el-font-size-base);
|
||
|
|
height: 34px;
|
||
|
|
line-height: 34px;
|
||
|
|
overflow: hidden;
|
||
|
|
padding: 0 32px 0 20px;
|
||
|
|
position: relative;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|