2024-10-26 17:57:34 +09:00
|
|
|
.item {
|
|
|
|
background-color: #1e1e1e;
|
|
|
|
border-radius: 6px;
|
|
|
|
display: flex;
|
|
|
|
padding: 10px;
|
|
|
|
flex-direction: column;
|
2024-10-29 21:04:49 +09:00
|
|
|
|
2024-10-26 17:57:34 +09:00
|
|
|
.toolbar {
|
|
|
|
display: flex;
|
|
|
|
gap: 10px;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0px 10px;
|
|
|
|
background-color: #323232;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
2024-11-13 15:12:48 +09:00
|
|
|
.error {
|
|
|
|
color: #ffcaca;
|
|
|
|
}
|
|
|
|
|
2024-10-26 17:57:34 +09:00
|
|
|
.name {
|
|
|
|
font-size: inherit;
|
2024-10-27 12:34:54 +09:00
|
|
|
padding: 14px 6px;
|
2024-11-12 10:50:42 +09:00
|
|
|
|
|
|
|
&:hover:not(.previewDisabled) {
|
|
|
|
cursor: pointer;
|
2024-10-29 21:04:49 +09:00
|
|
|
text-decoration: underline dotted;
|
|
|
|
}
|
2024-10-26 17:57:34 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.options {
|
|
|
|
flex-grow: 1;
|
|
|
|
display: flex;
|
|
|
|
padding: 14px 2px;
|
|
|
|
gap: 10px;
|
|
|
|
height: 100%;
|
2024-11-13 14:33:11 +09:00
|
|
|
overflow-x: auto;
|
2024-10-26 17:57:34 +09:00
|
|
|
scrollbar-width: thin;
|
|
|
|
scrollbar-color: gray #323232;
|
|
|
|
align-items: center;
|
|
|
|
|
2024-10-28 21:33:41 +09:00
|
|
|
* {
|
2024-10-26 17:57:34 +09:00
|
|
|
display: flex;
|
2024-10-27 12:34:54 +09:00
|
|
|
gap: 6px;
|
2024-10-26 17:57:34 +09:00
|
|
|
}
|
|
|
|
}
|
2024-10-30 20:56:12 +09:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.output {
|
|
|
|
height: 200px;
|
2024-10-26 17:57:34 +09:00
|
|
|
}
|
2024-10-27 12:34:54 +09:00
|
|
|
|
|
|
|
.error {
|
|
|
|
color: #ffcaca;
|
|
|
|
}
|
2024-10-26 17:57:34 +09:00
|
|
|
}
|