Added initial voice work edit logic (set favorite / delete) on Api and UI layers.
All checks were successful
ci / build-test (push) Successful in 2m44s
ci / publish-image (push) Successful in 1m45s

This commit is contained in:
2026-05-07 00:07:20 -04:00
parent 2bd7e3b970
commit 9c9e33ebec
14 changed files with 291 additions and 57 deletions

View File

@@ -669,11 +669,21 @@ code {
border: 1px solid transparent;
}
.j-chip.is-clickable {
cursor: pointer;
user-select: none;
transition: background .2s linear, color .2s linear, border-color .2s linear, filter .2s linear;
}
.j-chip-icon-only {
padding: .75em;
border-radius: 2em;
}
.j-chip-thick-border,
.j-chip.varient-outlined.j-chip-thick-border {
border-width: 2px;
}
.j-chip.is-clickable {
cursor: pointer;
user-select: none;
transition: background .2s linear, color .2s linear, border-color .2s linear, filter .2s linear;
}
.j-chip.is-clickable:hover {
filter: brightness(1.2);
@@ -770,6 +780,10 @@ code {
--chip-fg-rgb: var(--rgb-on-yellow, 255 255 255);
}
.j-chip.color-orange {
--chip-rgb: var(--rgb-orange);
}
.j-chip.color-pink {
color: rgb(var(--chip-fg-rgb));
--chip-rgb: var(--rgb-pink);
@@ -955,6 +969,14 @@ code {
mask-image: url("../svg/microphone-fill.svg");
}
.j-icon-pencil {
mask-image: url("../svg/pencil.svg");
}
.j-icon-pencil-fill {
mask-image: url("../svg/pencil-fill.svg");
}
.j-icon-2 {
background-repeat: no-repeat;
background-position: center;