anentrypoint-design 0.0.317 → 0.0.318
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 +4 -2
- package/chat.css +4 -5
- package/dist/247420.css +8 -7
- package/dist/247420.js +12 -12
- package/package.json +1 -1
- package/src/components/chat.js +13 -4
- package/src/components/content.js +1 -1
- package/src/components.js +1 -1
package/app-shell.css
CHANGED
|
@@ -1653,10 +1653,12 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
|
|
|
1653
1653
|
.ds-file-row[data-file-type="archive"] .ds-file-icon { color: var(--flame); }
|
|
1654
1654
|
.ds-file-row[data-file-type="document"] .ds-file-icon { color: var(--amber, var(--sun)); }
|
|
1655
1655
|
|
|
1656
|
-
/* Row actions —
|
|
1656
|
+
/* Row actions — a faint baseline keeps them discoverable at rest (not fully
|
|
1657
|
+
hidden, which left mouse/trackpad users unable to find rename/move/delete
|
|
1658
|
+
without accidentally hovering a row), full opacity on hover/focus. */
|
|
1657
1659
|
.ds-file-actions {
|
|
1658
1660
|
display: inline-flex; gap: 2px; align-items: center;
|
|
1659
|
-
opacity: 0; transition: opacity var(--dur-base) var(--ease);
|
|
1661
|
+
opacity: 0.35; transition: opacity var(--dur-base) var(--ease);
|
|
1660
1662
|
}
|
|
1661
1663
|
.ds-file-row:hover .ds-file-actions,
|
|
1662
1664
|
.ds-file-row:focus-within .ds-file-actions { opacity: 1; }
|
package/chat.css
CHANGED
|
@@ -715,14 +715,13 @@ button.chat-composer-context:focus-visible { outline: var(--focus-w) solid var(-
|
|
|
715
715
|
windowed thread, dashboard stopping/external states, cwd validation.
|
|
716
716
|
============================================================================ */
|
|
717
717
|
|
|
718
|
-
/* Enter-to-send hint: visible
|
|
719
|
-
|
|
718
|
+
/* Enter-to-send hint: visible at rest so a new user with an empty composer
|
|
719
|
+
can discover Enter-vs-Shift+Enter without having to focus it first;
|
|
720
|
+
hidden under 420px to save rows. */
|
|
720
721
|
.chat-composer-hint {
|
|
721
|
-
display:
|
|
722
|
+
display: block; width: 100%; order: 5; padding: 2px var(--space-1) 0;
|
|
722
723
|
font-size: var(--fs-micro); color: var(--fg-3);
|
|
723
724
|
}
|
|
724
|
-
.chat-composer:focus-within .chat-composer-hint,
|
|
725
|
-
.chat-composer.has-draft .chat-composer-hint { display: block; }
|
|
726
725
|
@media (max-width: 420px) {
|
|
727
726
|
.chat-composer .chat-composer-hint { display: none; }
|
|
728
727
|
}
|
package/dist/247420.css
CHANGED
|
@@ -2205,10 +2205,12 @@
|
|
|
2205
2205
|
.ds-247420 .ds-file-row[data-file-type="archive"] .ds-file-icon { color: var(--flame); }
|
|
2206
2206
|
.ds-247420 .ds-file-row[data-file-type="document"] .ds-file-icon { color: var(--amber, var(--sun)); }
|
|
2207
2207
|
|
|
2208
|
-
/* Row actions —
|
|
2208
|
+
/* Row actions — a faint baseline keeps them discoverable at rest (not fully
|
|
2209
|
+
hidden, which left mouse/trackpad users unable to find rename/move/delete
|
|
2210
|
+
without accidentally hovering a row), full opacity on hover/focus. */
|
|
2209
2211
|
.ds-247420 .ds-file-actions {
|
|
2210
2212
|
display: inline-flex; gap: 2px; align-items: center;
|
|
2211
|
-
opacity: 0; transition: opacity var(--dur-base) var(--ease);
|
|
2213
|
+
opacity: 0.35; transition: opacity var(--dur-base) var(--ease);
|
|
2212
2214
|
}
|
|
2213
2215
|
.ds-247420 .ds-file-row:hover .ds-file-actions,
|
|
2214
2216
|
.ds-247420 .ds-file-row:focus-within .ds-file-actions { opacity: 1; }
|
|
@@ -7668,14 +7670,13 @@
|
|
|
7668
7670
|
windowed thread, dashboard stopping/external states, cwd validation.
|
|
7669
7671
|
============================================================================ */
|
|
7670
7672
|
|
|
7671
|
-
/* Enter-to-send hint: visible
|
|
7672
|
-
|
|
7673
|
+
/* Enter-to-send hint: visible at rest so a new user with an empty composer
|
|
7674
|
+
can discover Enter-vs-Shift+Enter without having to focus it first;
|
|
7675
|
+
hidden under 420px to save rows. */
|
|
7673
7676
|
.ds-247420 .chat-composer-hint {
|
|
7674
|
-
display:
|
|
7677
|
+
display: block; width: 100%; order: 5; padding: 2px var(--space-1) 0;
|
|
7675
7678
|
font-size: var(--fs-micro); color: var(--fg-3);
|
|
7676
7679
|
}
|
|
7677
|
-
.ds-247420 .chat-composer:focus-within .chat-composer-hint,
|
|
7678
|
-
.ds-247420 .chat-composer.has-draft .chat-composer-hint { display: block; }
|
|
7679
7680
|
@media (max-width: 420px) {
|
|
7680
7681
|
.ds-247420 .chat-composer .chat-composer-hint { display: none; }
|
|
7681
7682
|
}
|