Skip to content

Commit bf94a0b

Browse files
committed
fix a few things
- some error messages - the dark mode button colors - remove the plugins tab
1 parent eda015d commit bf94a0b

8 files changed

Lines changed: 342 additions & 252 deletions

File tree

packages/admin-vanilla/src/app-profile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { addstyles, customElement, JSXElement, state } from "@tiddlywiki/jsx-lit
22
import {
33
AdminRecord,
44
} from "./app";
5-
import { FieldDefinition, IdString, FieldTypeCreateValue, FieldType, Drafter } from "./definition/tabs";
5+
import { FieldDefinition, IdString, FieldZodType, FieldType, Drafter } from "./definition/tabs";
66
import css from "./app.inline.css";
77
import { changeExistingPasswordWithCode, changeExistingPasswordWithPassword, loginWithOpaque, serverAcceptResetCode } from "./passwords";
88
import { FomController } from "./FomController";

packages/admin-vanilla/src/app.inline.css

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
--color-surface-page-bottom: #ece8dd;
3131
--color-surface-panel: rgba(255, 252, 246, 0.88);
3232
--color-surface-panel-strong: rgba(255, 252, 246, 0.92);
33-
--color-surface-tab: rgba(255, 251, 243, 0.78);
33+
--color-surface-tab: hsla(40, 100%, 98%, 0.78);
3434
--color-surface-stat: rgba(255, 255, 255, 0.82);
3535
--color-surface-modal: #fffdf7;
3636
--color-surface-modal-header-top: #fcf7ed;
@@ -80,7 +80,7 @@
8080
--color-text-subtle: #8f9ca9;
8181
--color-text-faint: #81909e;
8282
--color-text-fainter: #738292;
83-
--color-text-on-accent: #1e1c15;
83+
--color-text-on-accent: #e7bf63;
8484
--color-text-heading: #f3e6c5;
8585
--color-accent-eyebrow: #e7bf63;
8686
--color-accent-label: #d6ba7a;
@@ -93,7 +93,7 @@
9393
--color-accent-track: #d0a24a;
9494
--color-accent-track-soft: #9e7731;
9595
--color-accent-track-mid: #bc8d3f;
96-
--color-accent-fill: hsl(38deg 58% 58%);
96+
--color-accent-fill: hsl(210deg 40% 24%);
9797
--color-danger: #f08b7d;
9898
--color-white: #fff;
9999
--color-white-solid: #ffffff;
@@ -102,7 +102,7 @@
102102
--color-surface-page-bottom: #1b232c;
103103
--color-surface-panel: rgba(22, 29, 36, 0.88);
104104
--color-surface-panel-strong: rgba(22, 29, 36, 0.94);
105-
--color-surface-tab: rgba(33, 42, 51, 0.86);
105+
--color-surface-tab: hsl(210deg 20% 15%);
106106
--color-surface-stat: rgba(36, 45, 54, 0.88);
107107
--color-surface-modal: #182028;
108108
--color-surface-modal-header-top: #202a34;
@@ -111,7 +111,7 @@
111111
--color-surface-card: #202932;
112112
--color-surface-field: #26313b;
113113
--color-surface-summary-note: rgba(37, 47, 58, 0.96);
114-
--color-surface-ghost-button: #33414d;
114+
--color-surface-ghost-button: hsl(208, 20%, 25%);
115115
--color-surface-row-action: #394754;
116116
--color-surface-pill: #3f3424;
117117
--color-surface-input: #121920;
@@ -146,6 +146,10 @@
146146
box-sizing: border-box;
147147
}
148148

149+
material-symbol svg {
150+
fill: currentColor;
151+
}
152+
149153
button,
150154
input,
151155
select,
@@ -384,7 +388,7 @@ h6 {
384388

385389
.section-header {
386390
display: grid;
387-
grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
391+
grid-template-columns: minmax(0, 320px) minmax(0, 1fr) max-content;
388392
gap: 20px;
389393
align-items: end;
390394
margin-top: 26px;
@@ -1629,6 +1633,7 @@ table.value-table td {
16291633

16301634
.modal-layout {
16311635
flex-direction: column;
1636+
align-items: stretch;
16321637
}
16331638

16341639
.modal-sidebar {
@@ -1652,8 +1657,6 @@ table.value-table td {
16521657
position: relative;
16531658
}
16541659

1655-
.row-editor-row,
1656-
.row-editor-row-wide,
16571660
.meta-list,
16581661
.resolver-grid,
16591662
.tool-panel-actions {

0 commit comments

Comments
 (0)