anentrypoint-design 0.0.322 → 0.0.323
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app-shell.css +11 -0
- package/dist/247420.css +11 -0
- package/dist/247420.js +14 -14
- package/package.json +1 -1
- package/src/components/files-modals.js +14 -2
package/app-shell.css
CHANGED
|
@@ -2128,6 +2128,17 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
|
|
|
2128
2128
|
@media (hover: none), (pointer: coarse) {
|
|
2129
2129
|
.ds-modal-input { font-size: 16px; min-height: 44px; }
|
|
2130
2130
|
}
|
|
2131
|
+
/* PromptDialog's optional roots-chip row (destination-path prompts with more
|
|
2132
|
+
than one allowed root) - same chip idiom the cwd editor's roots row uses. */
|
|
2133
|
+
.ds-prompt-roots { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
|
|
2134
|
+
.ds-prompt-root-chip {
|
|
2135
|
+
background: var(--bg-2); border: var(--bw-hair) solid var(--rule); color: var(--fg-2);
|
|
2136
|
+
border-radius: var(--r-pill); padding: 3px 10px; font: inherit; font-size: var(--fs-tiny);
|
|
2137
|
+
cursor: pointer;
|
|
2138
|
+
}
|
|
2139
|
+
.ds-prompt-root-chip:hover { border-color: var(--accent); color: var(--fg); }
|
|
2140
|
+
.ds-prompt-root-chip:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: var(--focus-offset); }
|
|
2141
|
+
@media (pointer: coarse) { .ds-prompt-root-chip { min-height: 44px; } }
|
|
2131
2142
|
/* In-body modal error (role=alert): mutation failures (409/403) surface INSIDE
|
|
2132
2143
|
the dialog, not behind the fixed overlay. */
|
|
2133
2144
|
.ds-modal-error {
|
package/dist/247420.css
CHANGED
|
@@ -2686,6 +2686,17 @@
|
|
|
2686
2686
|
@media (hover: none), (pointer: coarse) {
|
|
2687
2687
|
.ds-247420 .ds-modal-input { font-size: 16px; min-height: 44px; }
|
|
2688
2688
|
}
|
|
2689
|
+
/* PromptDialog's optional roots-chip row (destination-path prompts with more
|
|
2690
|
+
than one allowed root) - same chip idiom the cwd editor's roots row uses. */
|
|
2691
|
+
.ds-247420 .ds-prompt-roots { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
|
|
2692
|
+
.ds-247420 .ds-prompt-root-chip {
|
|
2693
|
+
background: var(--bg-2); border: var(--bw-hair) solid var(--rule); color: var(--fg-2);
|
|
2694
|
+
border-radius: var(--r-pill); padding: 3px 10px; font: inherit; font-size: var(--fs-tiny);
|
|
2695
|
+
cursor: pointer;
|
|
2696
|
+
}
|
|
2697
|
+
.ds-247420 .ds-prompt-root-chip:hover { border-color: var(--accent); color: var(--fg); }
|
|
2698
|
+
.ds-247420 .ds-prompt-root-chip:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: var(--focus-offset); }
|
|
2699
|
+
@media (pointer: coarse) { .ds-247420 .ds-prompt-root-chip { min-height: 44px; } }
|
|
2689
2700
|
/* In-body modal error (role=alert): mutation failures (409/403) surface INSIDE
|
|
2690
2701
|
the dialog, not behind the fixed overlay. */
|
|
2691
2702
|
.ds-247420 .ds-modal-error {
|