forked from ddrilling/asb_cloud_front
32 lines
676 B
Plaintext
32 lines
676 B
Plaintext
|
.well-case-editor {
|
||
|
gap: 10px;
|
||
|
width: 100%;
|
||
|
max-height: 70vh;
|
||
|
display: flex;
|
||
|
align-items: stretch;
|
||
|
justify-content: space-between;
|
||
|
|
||
|
& .category-list {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: stretch;
|
||
|
justify-content: space-between;
|
||
|
gap: 10px;
|
||
|
width: 300px;
|
||
|
|
||
|
& .category-list-item {
|
||
|
cursor: pointer;
|
||
|
|
||
|
&.empty {
|
||
|
background-color: #ffe58f;
|
||
|
border-color: #ffc53d;
|
||
|
}
|
||
|
|
||
|
&.active {
|
||
|
background-color: #fafafa;
|
||
|
border: 1px solid #f0f0f0;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|