65 lines
1.0 KiB
CSS
Executable File
65 lines
1.0 KiB
CSS
Executable File
.tree-list li {
|
|
list-style-type: none;
|
|
}
|
|
|
|
.tree-list>li {
|
|
background: #F0F9FF;
|
|
}
|
|
.tree-list>li>div>label {
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.tree-list li label,
|
|
.tree-list li label input[type="checkbox"] {
|
|
cursor: pointer;
|
|
margin: 0;
|
|
}
|
|
|
|
.list-find {
|
|
background-color: #fbfeff;
|
|
padding-left: 3rem;
|
|
}
|
|
|
|
.list-find>li {
|
|
border-bottom: 0.1rem solid #EBF4FA;
|
|
}
|
|
|
|
.list-find>li label span {
|
|
font-weight: normal;
|
|
}
|
|
|
|
/* 插件权限 */
|
|
.tree-plugins {
|
|
background: transparent;
|
|
}
|
|
|
|
.tree-plugins li {
|
|
min-width: 180px;
|
|
width: 10%;
|
|
border-radius: var(--border-radius);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.tree-plugins label.am-checkbox-inline {
|
|
font-size: 1.4rem;
|
|
color: #333;
|
|
}
|
|
|
|
.tree-plugins label.am-checkbox-inline .am-ucheck-icons {
|
|
top: 0.2rem;
|
|
}
|
|
.tree-plugins li label.am-checkbox-inline .am-ucheck-icons {
|
|
top: 0.3rem;
|
|
}
|
|
|
|
.tree-plugins li>div {
|
|
background: #fff;
|
|
padding: 1rem;
|
|
}
|
|
|
|
@media only screen and (max-width:641px) {
|
|
.tree-plugins li {
|
|
width: 50%;
|
|
min-width: auto;
|
|
}
|
|
} |