anentrypoint-design 0.0.257 → 0.0.259
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 -2
- package/chat.css +6 -0
- package/dist/247420.css +23 -4
- package/dist/247420.js +14 -14
- package/package.json +1 -1
- package/src/components/files-modals.js +1 -1
package/app-shell.css
CHANGED
|
@@ -580,7 +580,7 @@ body.canvas-host { background: transparent !important; }
|
|
|
580
580
|
rows sit on ONE left axis (the old 24/32 padding was authored for the
|
|
581
581
|
pre-padding .panel-wide era and indented the label 16px past its content). */
|
|
582
582
|
padding: var(--space-2) var(--space-3);
|
|
583
|
-
font-size: var(--fs-
|
|
583
|
+
font-size: var(--fs-tiny); font-weight: 600;
|
|
584
584
|
color: var(--fg-3);
|
|
585
585
|
letter-spacing: var(--tr-caps); text-transform: uppercase;
|
|
586
586
|
}
|
|
@@ -895,7 +895,7 @@ table {
|
|
|
895
895
|
table th {
|
|
896
896
|
text-align: left;
|
|
897
897
|
padding: 12px 16px;
|
|
898
|
-
font-size: var(--fs-
|
|
898
|
+
font-size: var(--fs-tiny); font-weight: 600;
|
|
899
899
|
color: var(--fg-3); text-transform: uppercase; letter-spacing: var(--tr-caps);
|
|
900
900
|
background: var(--bg-2);
|
|
901
901
|
}
|
|
@@ -1684,6 +1684,15 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
|
|
|
1684
1684
|
font-size: var(--fs-sm); color: var(--fg-3);
|
|
1685
1685
|
}
|
|
1686
1686
|
.ds-page-header-dense .ds-page-header-right { flex: 0 0 auto; margin-left: auto; }
|
|
1687
|
+
/* Below ~480px the single-line ellipsis truncates the majority of the lede
|
|
1688
|
+
text with no way to recover it (no title attr, no expand) - let the row
|
|
1689
|
+
wrap and the lede break onto its own line instead of clipping. */
|
|
1690
|
+
@media (max-width: 480px) {
|
|
1691
|
+
.ds-page-header-dense-row { flex-wrap: wrap; }
|
|
1692
|
+
.ds-page-header-dense-lede {
|
|
1693
|
+
flex-basis: 100%; overflow: visible; text-overflow: clip; white-space: normal;
|
|
1694
|
+
}
|
|
1695
|
+
}
|
|
1687
1696
|
.ds-file-toolbar-left,
|
|
1688
1697
|
.ds-file-toolbar-right {
|
|
1689
1698
|
display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap;
|
package/chat.css
CHANGED
|
@@ -534,6 +534,12 @@
|
|
|
534
534
|
font-family: var(--ff-mono); font-size: var(--fs-tiny);
|
|
535
535
|
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
|
|
536
536
|
}
|
|
537
|
+
/* Below ~480px a single nowrap line silently truncates most of the agent /
|
|
538
|
+
model / cwd context (no way to recover it - no title attr on the container,
|
|
539
|
+
only on individual bits). Let it wrap instead of clipping. */
|
|
540
|
+
@media (max-width: 480px) {
|
|
541
|
+
.chat-composer-context { white-space: normal; overflow: visible; text-overflow: clip; }
|
|
542
|
+
}
|
|
537
543
|
button.chat-composer-context { cursor: pointer; }
|
|
538
544
|
button.chat-composer-context:hover { color: var(--fg-2); }
|
|
539
545
|
button.chat-composer-context:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: var(--focus-offset); }
|
package/dist/247420.css
CHANGED
|
@@ -1086,7 +1086,7 @@
|
|
|
1086
1086
|
rows sit on ONE left axis (the old 24/32 padding was authored for the
|
|
1087
1087
|
pre-padding .panel-wide era and indented the label 16px past its content). */
|
|
1088
1088
|
padding: var(--space-2) var(--space-3);
|
|
1089
|
-
font-size: var(--fs-
|
|
1089
|
+
font-size: var(--fs-tiny); font-weight: 600;
|
|
1090
1090
|
color: var(--fg-3);
|
|
1091
1091
|
letter-spacing: var(--tr-caps); text-transform: uppercase;
|
|
1092
1092
|
}
|
|
@@ -1401,7 +1401,7 @@
|
|
|
1401
1401
|
.ds-247420 table th {
|
|
1402
1402
|
text-align: left;
|
|
1403
1403
|
padding: 12px 16px;
|
|
1404
|
-
font-size: var(--fs-
|
|
1404
|
+
font-size: var(--fs-tiny); font-weight: 600;
|
|
1405
1405
|
color: var(--fg-3); text-transform: uppercase; letter-spacing: var(--tr-caps);
|
|
1406
1406
|
background: var(--bg-2);
|
|
1407
1407
|
}
|
|
@@ -2190,6 +2190,15 @@
|
|
|
2190
2190
|
font-size: var(--fs-sm); color: var(--fg-3);
|
|
2191
2191
|
}
|
|
2192
2192
|
.ds-247420 .ds-page-header-dense .ds-page-header-right { flex: 0 0 auto; margin-left: auto; }
|
|
2193
|
+
/* Below ~480px the single-line ellipsis truncates the majority of the lede
|
|
2194
|
+
text with no way to recover it (no title attr, no expand) - let the row
|
|
2195
|
+
wrap and the lede break onto its own line instead of clipping. */
|
|
2196
|
+
@media (max-width: 480px) {
|
|
2197
|
+
.ds-247420 .ds-page-header-dense-row { flex-wrap: wrap; }
|
|
2198
|
+
.ds-247420 .ds-page-header-dense-lede {
|
|
2199
|
+
flex-basis: 100%; overflow: visible; text-overflow: clip; white-space: normal;
|
|
2200
|
+
}
|
|
2201
|
+
}
|
|
2193
2202
|
.ds-247420 .ds-file-toolbar-left,
|
|
2194
2203
|
.ds-247420 .ds-file-toolbar-right {
|
|
2195
2204
|
display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap;
|
|
@@ -6974,6 +6983,12 @@
|
|
|
6974
6983
|
font-family: var(--ff-mono); font-size: var(--fs-tiny);
|
|
6975
6984
|
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
|
|
6976
6985
|
}
|
|
6986
|
+
/* Below ~480px a single nowrap line silently truncates most of the agent /
|
|
6987
|
+
model / cwd context (no way to recover it - no title attr on the container,
|
|
6988
|
+
only on individual bits). Let it wrap instead of clipping. */
|
|
6989
|
+
@media (max-width: 480px) {
|
|
6990
|
+
.ds-247420 .chat-composer-context { white-space: normal; overflow: visible; text-overflow: clip; }
|
|
6991
|
+
}
|
|
6977
6992
|
.ds-247420 button.chat-composer-context { cursor: pointer; }
|
|
6978
6993
|
.ds-247420 button.chat-composer-context:hover { color: var(--fg-2); }
|
|
6979
6994
|
.ds-247420 button.chat-composer-context:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: var(--focus-offset); }
|
|
@@ -9155,15 +9170,19 @@
|
|
|
9155
9170
|
display: flex; flex-direction: column; align-items: center; justify-content: center;
|
|
9156
9171
|
gap: .4em; text-align: center; min-height: 50vh; color: var(--fg-3);
|
|
9157
9172
|
}
|
|
9158
|
-
.ds-247420 .history-empty-title { margin: 0; font-size:
|
|
9173
|
+
.ds-247420 .history-empty-title { margin: 0; font-size: var(--fs-lg); color: var(--fg-2); }
|
|
9159
9174
|
.ds-247420 .history-empty-sub { margin: 0; max-width: 42ch; }
|
|
9160
9175
|
|
|
9161
|
-
/* Settings: two-column on wide screens (backend + agents).
|
|
9176
|
+
/* Settings: two-column on wide screens (backend + agents). Grid gap is the
|
|
9177
|
+
single source of rhythm between stacked Panels here - .panel's own
|
|
9178
|
+
margin-bottom would stack on top of the gap (32px + 24px = 56px, a break
|
|
9179
|
+
used nowhere else), so it's zeroed for direct grid children. */
|
|
9162
9180
|
.ds-247420 .settings-grid {
|
|
9163
9181
|
display: grid; gap: var(--space-4, 16px);
|
|
9164
9182
|
grid-template-columns: minmax(0, 1fr);
|
|
9165
9183
|
align-items: start;
|
|
9166
9184
|
}
|
|
9185
|
+
.ds-247420 .settings-grid > .panel { margin-bottom: 0; }
|
|
9167
9186
|
.ds-247420 .agentgui-main-settings .settings-grid { margin-top: 0; }
|
|
9168
9187
|
|
|
9169
9188
|
/* The kit Chat head computes its own zero-padded count and ignores our sub
|