From cef90a4476cc13c9acbef43ba02804a66066c93b Mon Sep 17 00:00:00 2001 From: Gaurav Dafale Date: Wed, 16 Sep 2026 14:49:52 +0530 Subject: [PATCH 1/2] fix: improve dark command text --- .../core/DatasourceIntrospectionPage.css | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/routes/pages/admin/core/DatasourceIntrospectionPage.css b/src/routes/pages/admin/core/DatasourceIntrospectionPage.css index ec311dcd..82a2a1b7 100644 --- a/src/routes/pages/admin/core/DatasourceIntrospectionPage.css +++ b/src/routes/pages/admin/core/DatasourceIntrospectionPage.css @@ -1259,6 +1259,11 @@ word-break: break-word; } +.sdix-stage-panel__command code { + color: inherit; + font: inherit; +} + .sdix-stage-progress { flex: 1 1 auto; min-height: 18rem; @@ -1778,3 +1783,20 @@ html.dark .sdix-stage-panel__eyebrow, [data-theme="dark"] .sdix-stage-panel__eyebrow { color: var(--primary); } + +html.dark .sdix-stage-panel__command, +[data-theme="dark"] .sdix-stage-panel__command { + background: color-mix(in srgb, var(--background) 74%, #ffffff 6%); + border-color: color-mix(in srgb, var(--border) 84%, #ffffff 16%); + border-radius: 0.5rem; + border-style: solid; + border-width: 1px; + color: color-mix(in srgb, var(--foreground) 92%, #ffffff 8%); + overflow-x: auto; + padding: 0.68rem 0.78rem; +} + +html.dark .sdix-stage-panel__command code, +[data-theme="dark"] .sdix-stage-panel__command code { + color: inherit; +} From 5aeadf592ff38735cd6cd473445958573e775828 Mon Sep 17 00:00:00 2001 From: Gaurav Dafale Date: Wed, 16 Sep 2026 15:43:55 +0530 Subject: [PATCH 2/2] fix: align datasource table checkboxes --- .../core/DatasourceIntrospectionPage.css | 19 +++++++++++++++++++ .../core/DatasourceIntrospectionPage.tsx | 4 +++- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/src/routes/pages/admin/core/DatasourceIntrospectionPage.css b/src/routes/pages/admin/core/DatasourceIntrospectionPage.css index 82a2a1b7..7391c830 100644 --- a/src/routes/pages/admin/core/DatasourceIntrospectionPage.css +++ b/src/routes/pages/admin/core/DatasourceIntrospectionPage.css @@ -448,6 +448,25 @@ vertical-align: middle; } +.sdix-table-area .sdix-table-selection-col { + width: 52px; + min-width: 52px; + max-width: 52px; + padding-left: 0 !important; + padding-right: 0 !important; + text-align: center; +} + +.sdix-table-area .sdix-table-selection-col .solid-table-header-button { + display: flex; + justify-content: center; + width: 100%; +} + +.sdix-table-area .sdix-table-selection-col .sdix-selection-cell { + width: 100%; +} + .sdix-table-primary-cell { display: flex; flex-direction: column; diff --git a/src/routes/pages/admin/core/DatasourceIntrospectionPage.tsx b/src/routes/pages/admin/core/DatasourceIntrospectionPage.tsx index 9b144e7c..1df5c8e9 100644 --- a/src/routes/pages/admin/core/DatasourceIntrospectionPage.tsx +++ b/src/routes/pages/admin/core/DatasourceIntrospectionPage.tsx @@ -2927,7 +2927,9 @@ npx @solidxai/solidctl@latest seed --modules-to-seed ${bootstrap?.module?.name | ); }} - style={{ width: 52, minWidth: 52 }} + className="sdix-table-selection-col" + headerClassName="sdix-table-selection-col" + style={{ width: 52, minWidth: 52, maxWidth: 52 }} />