Add Measurements tab and #new form

This commit is contained in:
2025-01-22 16:03:26 +01:00
parent 3d7daa8944
commit 9d60eee16b
11 changed files with 74 additions and 16 deletions

View File

@@ -200,9 +200,7 @@ textarea:read-only {
}
.header {
display: flex;
gap: 0.8em;
header {
grid-area: header;
}
@@ -243,6 +241,18 @@ textarea:read-only {
}
.buttongrid {
display: grid;
gap: 0.4em;
grid-template-areas: "context empty tools";
grid-template-columns: auto 1fr auto;
grid-template-rows: max-content;
}
.tools {
grid-area: tools;
}
#flashes {
display: grid;
gap: 0.2em;
@@ -502,6 +512,10 @@ table.items select:focus-visible {
.extendedright {
margin-right: auto;
}
.htoolbox {
display: flex;
gap: 0.8em;
}
[disabled] {
border-color: var(--color-border-gray) !important;
color: var(--color-border-gray) !important;
@@ -512,15 +526,3 @@ table.items select:focus-visible {
.unwrappable {
white-space: nowrap;
}
.buttongrid {
display: grid;
gap: 0.4em;
grid-template-areas: "context empty tools";
grid-template-columns: auto 1fr auto;
grid-template-rows: max-content;
}
.tools {
grid-area: tools;
}