waveterm/frontend/app/element/menu.less

62 lines
937 B
Plaintext
Raw Normal View History

2024-10-01 07:58:08 +02:00
// Copyright 2024, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
2024-10-04 15:38:02 +02:00
.menu {
2024-10-01 07:58:08 +02:00
list-style: none;
padding: 0;
}
2024-10-04 15:38:02 +02:00
.menu-item {
2024-10-01 07:58:08 +02:00
padding: 10px;
cursor: pointer;
2024-10-01 15:03:24 +02:00
user-select: none;
padding: 0;
2024-10-01 07:58:08 +02:00
}
2024-10-04 15:38:02 +02:00
.menu-item-button {
2024-10-01 07:58:08 +02:00
display: flex;
align-items: center;
justify-content: space-between;
2024-10-01 15:03:24 +02:00
width: 100%;
2024-10-01 07:58:08 +02:00
}
2024-10-04 15:38:02 +02:00
.menu-item-content {
2024-10-01 15:03:24 +02:00
display: flex;
align-items: center;
2024-10-01 08:03:58 +02:00
}
2024-10-04 15:38:02 +02:00
.menu-item-icon {
2024-10-01 15:03:24 +02:00
margin-right: 10px; /* Space between icon and text */
}
2024-10-04 15:38:02 +02:00
.menu-item-text {
2024-10-01 15:03:24 +02:00
text-decoration: none;
2024-10-01 07:58:08 +02:00
}
.nested-list {
list-style: none;
padding-left: 20px;
}
.nested-list.open {
display: block;
}
.nested-list.closed {
display: none;
}
2024-10-01 15:03:24 +02:00
2024-10-04 15:38:02 +02:00
.menu-item-button {
2024-10-01 15:03:24 +02:00
padding: 10px;
color: var(--main-text-color);
&:hover {
2024-10-03 04:11:00 +02:00
background-color: var(--button-grey-hover-bg);
2024-10-01 15:03:24 +02:00
border-radius: 4px;
}
}
2024-10-04 15:38:02 +02:00
.menu-item-button.clickable:hover {
2024-10-01 15:03:24 +02:00
background-color: #f0f0f0;
}