2024-04-29 08:36:13 +02:00
|
|
|
@import "theme.less";
|
|
|
|
|
2024-05-01 10:02:33 +02:00
|
|
|
#dlg-datapoints {
|
|
|
|
}
|
|
|
|
|
2024-04-29 08:36:13 +02:00
|
|
|
.widgets {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: min-content 1fr;
|
|
|
|
gap: 8px 16px;
|
|
|
|
|
|
|
|
.label {
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="text"], textarea {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.datapoints {
|
|
|
|
font: "Roboto Mono", monospace;
|
|
|
|
display: grid;
|
2024-05-04 22:07:41 +02:00
|
|
|
grid-template-columns: min-content min-content 1fr;
|
2024-04-29 08:36:13 +02:00
|
|
|
gap: 6px 8px;
|
|
|
|
margin-bottom: 8px;
|
2024-05-04 22:07:41 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
.invalid {
|
|
|
|
color: #c83737;
|
|
|
|
}
|
|
|
|
|
|
|
|
.delete img {
|
|
|
|
height: 16px;
|
|
|
|
}
|
2024-04-29 08:36:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.action {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: min-content min-content 1fr;
|
|
|
|
grid-gap: 8px;
|
|
|
|
|
|
|
|
#run-result {
|
|
|
|
font-family: 'Roboto Mono', monospace;
|
|
|
|
margin-left: 16px;
|
|
|
|
padding: 16px;
|
|
|
|
background: @bg2;
|
|
|
|
min-height: 8em;
|
|
|
|
|
|
|
|
&.ok {
|
|
|
|
color: @text1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.error {
|
|
|
|
color: @error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|