mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-02-19 02:11:47 +01:00
36 lines
480 B
Plaintext
36 lines
480 B
Plaintext
|
// Copyright 2024, Command Line Inc.
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
.list {
|
||
|
list-style: none;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.list-item {
|
||
|
padding: 10px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.list-item-button {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.list-item-icon {
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
|
||
|
.nested-list {
|
||
|
list-style: none;
|
||
|
padding-left: 20px;
|
||
|
}
|
||
|
|
||
|
.nested-list.open {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
.nested-list.closed {
|
||
|
display: none;
|
||
|
}
|