2023-06-23 10:52:03 +00:00
|
|
|
@import "button";
|
2022-02-27 14:37:11 +00:00
|
|
|
|
|
|
|
.user-label-editor {
|
|
|
|
input {
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
border: 1px solid var(--blue);
|
|
|
|
color: var(--foreground);
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
@include button;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info {
|
|
|
|
border: 1px solid var(--blue);
|
|
|
|
margin-bottom: 8px;
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-controls {
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.groups {
|
|
|
|
display: grid;
|
|
|
|
gap: 8px;
|
|
|
|
grid-template-columns: repeat(1, 1fr);
|
|
|
|
}
|
|
|
|
|
|
|
|
.group {
|
|
|
|
border: 1px solid var(--blue);
|
2023-06-25 09:41:35 +00:00
|
|
|
overflow: hidden;
|
2022-02-27 14:37:11 +00:00
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
margin-bottom: 16px;
|
2023-06-25 09:41:35 +00:00
|
|
|
overflow: auto;
|
2022-02-27 14:37:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
background-color: var(--blue);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: grid;
|
|
|
|
gap: 8px;
|
|
|
|
grid-template-columns: 40% 30% auto auto;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
display: grid;
|
|
|
|
gap: 8px;
|
|
|
|
grid-template-columns: repeat(1, 1fr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.label-preview {
|
|
|
|
font-size: 60%;
|
|
|
|
padding: 4px 8px;
|
|
|
|
text-shadow: 0 0 2px #000, 0 0 4px #000;
|
|
|
|
}
|