Add the ability to display / edit the description from the item sheet

This commit is contained in:
Oliver-Akins 2025-02-10 23:04:28 -07:00
parent 46a235b603
commit 69db3ca719
13 changed files with 168 additions and 17 deletions

View file

@ -13,6 +13,8 @@
--input-text: white;
--input-background: var(--accent-2);
--button-text: white;
--button-background: var(--accent-2);
--pill-width: 100%;
--pill-border-radius: 4px;
@ -21,6 +23,7 @@
grid-template-columns: auto 200px;
column-gap: var(--col-gap);
row-gap: var(--row-gap);
max-width: 300px;
padding: 8px;
background: var(--base-background);
@ -29,6 +32,7 @@
[data-input-type] {
display: contents;
}
> [data-input-type="group"] {
display: unset;
grid-column: 1 / -1;
@ -41,6 +45,36 @@
}
}
> [data-input-type="prose-mirror"] {
grid-column: 1 / -1;
display: flex;
flex-direction: column;
gap: var(--row-gap);
> .label-row {
display: flex;
flex-direction: row;
width: 100%;
justify-content: space-between;
}
.value {
background: var(--input-background);
color: var(--input-text);
> :first-child {
margin-top: 0;
}
> :last-child {
margin-bottom: 0;
}
&:empty {
display: none;
}
}
}
hr {
background: var(--accent-1);
grid-column: 1 / -1;
@ -62,7 +96,7 @@
font-weight: bold;
}
input, select, .value, [data-tag-count] {
button, input, select, .value, [data-tag-count] {
border-radius: 4px;
padding: 2px 4px;
}