anentrypoint-design 0.0.157 → 0.0.158
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 +18 -6
- package/colors_and_type.css +2 -1
- package/dist/247420.css +20 -7
- package/dist/247420.js +9 -9
- package/package.json +1 -1
- package/src/components/content.js +4 -1
- package/src/components/shell.js +24 -19
package/app-shell.css
CHANGED
|
@@ -748,9 +748,8 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
|
|
|
748
748
|
Mobile Portrait Breakpoint (480px and below)
|
|
749
749
|
────────────────────────────────────────────────────────────────────── */
|
|
750
750
|
@media (max-width: 480px) {
|
|
751
|
-
/* App Layout
|
|
752
|
-
|
|
753
|
-
.app-body.no-side { grid-template-columns: 1fr; }
|
|
751
|
+
/* App Layout: single-column + drawer is handled once in the ≤900px block;
|
|
752
|
+
no need to re-declare grid-template-columns here (was a redundant !important). */
|
|
754
753
|
|
|
755
754
|
/* Topbar Navigation */
|
|
756
755
|
.app-topbar {
|
|
@@ -761,9 +760,16 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
|
|
|
761
760
|
padding: 12px 10px;
|
|
762
761
|
min-height: 44px;
|
|
763
762
|
}
|
|
763
|
+
/* Keep primary nav reachable on small screens (apps without a sidebar have
|
|
764
|
+
no other entry point). Compact it and let it scroll horizontally rather
|
|
765
|
+
than hiding it entirely. */
|
|
764
766
|
.app-topbar nav {
|
|
765
|
-
display:
|
|
767
|
+
display: flex; gap: 2px;
|
|
768
|
+
overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
|
|
769
|
+
max-width: 60vw;
|
|
766
770
|
}
|
|
771
|
+
.app-topbar nav::-webkit-scrollbar { display: none; }
|
|
772
|
+
.app-topbar nav a { padding: 10px 8px; white-space: nowrap; }
|
|
767
773
|
.brand { font-size: var(--fs-tiny); font-weight: 600; }
|
|
768
774
|
|
|
769
775
|
/* Search */
|
|
@@ -1851,7 +1857,8 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
|
|
|
1851
1857
|
border-radius: 50%; flex-shrink: 0;
|
|
1852
1858
|
}
|
|
1853
1859
|
.aicat-meta { display: flex; flex-direction: column; font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--fg-3); }
|
|
1854
|
-
.aicat-meta .name { color: var(--mascot); font-weight: 600; }
|
|
1860
|
+
.aicat-meta .name { color: var(--mascot-deep, var(--mascot)); font-weight: 600; }
|
|
1861
|
+
[data-theme="dark"] .aicat-meta .name, [data-theme="ink"] .aicat-meta .name { color: var(--mascot); }
|
|
1855
1862
|
|
|
1856
1863
|
/* ============================================================
|
|
1857
1864
|
Sidebar polish: hide zero-count badges; tonal active state;
|
|
@@ -2561,7 +2568,12 @@ input[type="password"]:not(:placeholder-shown) + .input-clear {
|
|
|
2561
2568
|
padding: 10px 12px;
|
|
2562
2569
|
}
|
|
2563
2570
|
.app-side .group { width: 100%; }
|
|
2564
|
-
|
|
2571
|
+
/* Keep the crumb on mobile — apps mount contextual controls (model picker,
|
|
2572
|
+
actions, live status) in crumb-right, so hiding it strands them. Collapse
|
|
2573
|
+
the breadcrumb trail/leaf instead and let the right cluster wrap. */
|
|
2574
|
+
.app-crumb { display: flex; flex-wrap: wrap; gap: var(--space-2); padding: 8px 12px; }
|
|
2575
|
+
.app-crumb > .sep, .app-crumb > span:not(.crumb-right):not(.leaf) { display: none; }
|
|
2576
|
+
.app-crumb .crumb-right { margin-left: 0; }
|
|
2565
2577
|
.chat-head { padding: var(--space-2) var(--space-3) var(--space-2); margin-bottom: var(--space-2); }
|
|
2566
2578
|
.app-main { padding-left: var(--space-3); padding-right: var(--space-3); }
|
|
2567
2579
|
}
|
package/colors_and_type.css
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
--mascot: #E84B8A;
|
|
32
32
|
--mascot-2: #FF3CA7;
|
|
33
33
|
--mascot-tint: #F5D2DF;
|
|
34
|
+
--mascot-deep: #B81F63;
|
|
34
35
|
|
|
35
36
|
/* Signals */
|
|
36
37
|
--sun: #F5C344;
|
|
@@ -51,7 +52,7 @@
|
|
|
51
52
|
|
|
52
53
|
--accent: var(--green);
|
|
53
54
|
--accent-fg: var(--paper);
|
|
54
|
-
--accent-tint: color-mix(in oklab, var(--accent)
|
|
55
|
+
--accent-tint: color-mix(in oklab, var(--accent) 26%, var(--bg));
|
|
55
56
|
|
|
56
57
|
--panel-bg: var(--bg);
|
|
57
58
|
--panel-bg-2: var(--bg-2);
|
package/dist/247420.css
CHANGED
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
--mascot: #E84B8A;
|
|
34
34
|
--mascot-2: #FF3CA7;
|
|
35
35
|
--mascot-tint: #F5D2DF;
|
|
36
|
+
--mascot-deep: #B81F63;
|
|
36
37
|
|
|
37
38
|
/* Signals */
|
|
38
39
|
--sun: #F5C344;
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
|
|
54
55
|
--accent: var(--green);
|
|
55
56
|
--accent-fg: var(--paper);
|
|
56
|
-
--accent-tint: color-mix(in oklab, var(--accent)
|
|
57
|
+
--accent-tint: color-mix(in oklab, var(--accent) 26%, var(--bg));
|
|
57
58
|
|
|
58
59
|
--panel-bg: var(--bg);
|
|
59
60
|
--panel-bg-2: var(--bg-2);
|
|
@@ -1079,9 +1080,8 @@
|
|
|
1079
1080
|
Mobile Portrait Breakpoint (480px and below)
|
|
1080
1081
|
────────────────────────────────────────────────────────────────────── */
|
|
1081
1082
|
@media (max-width: 480px) {
|
|
1082
|
-
/* App Layout
|
|
1083
|
-
|
|
1084
|
-
.ds-247420 .app-body.no-side { grid-template-columns: 1fr; }
|
|
1083
|
+
/* App Layout: single-column + drawer is handled once in the ≤900px block;
|
|
1084
|
+
no need to re-declare grid-template-columns here (was a redundant !important). */
|
|
1085
1085
|
|
|
1086
1086
|
/* Topbar Navigation */
|
|
1087
1087
|
.ds-247420 .app-topbar {
|
|
@@ -1092,9 +1092,16 @@
|
|
|
1092
1092
|
padding: 12px 10px;
|
|
1093
1093
|
min-height: 44px;
|
|
1094
1094
|
}
|
|
1095
|
+
/* Keep primary nav reachable on small screens (apps without a sidebar have
|
|
1096
|
+
no other entry point). Compact it and let it scroll horizontally rather
|
|
1097
|
+
than hiding it entirely. */
|
|
1095
1098
|
.ds-247420 .app-topbar nav {
|
|
1096
|
-
display:
|
|
1099
|
+
display: flex; gap: 2px;
|
|
1100
|
+
overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
|
|
1101
|
+
max-width: 60vw;
|
|
1097
1102
|
}
|
|
1103
|
+
.ds-247420 .app-topbar nav::-webkit-scrollbar { display: none; }
|
|
1104
|
+
.ds-247420 .app-topbar nav a { padding: 10px 8px; white-space: nowrap; }
|
|
1098
1105
|
.ds-247420 .brand { font-size: var(--fs-tiny); font-weight: 600; }
|
|
1099
1106
|
|
|
1100
1107
|
/* Search */
|
|
@@ -2182,7 +2189,8 @@
|
|
|
2182
2189
|
border-radius: 50%; flex-shrink: 0;
|
|
2183
2190
|
}
|
|
2184
2191
|
.ds-247420 .aicat-meta { display: flex; flex-direction: column; font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--fg-3); }
|
|
2185
|
-
.ds-247420 .aicat-meta .name { color: var(--mascot); font-weight: 600; }
|
|
2192
|
+
.ds-247420 .aicat-meta .name { color: var(--mascot-deep, var(--mascot)); font-weight: 600; }
|
|
2193
|
+
.ds-247420[data-theme="dark"] .aicat-meta .name, .ds-247420[data-theme="ink"] .aicat-meta .name { color: var(--mascot); }
|
|
2186
2194
|
|
|
2187
2195
|
/* ============================================================
|
|
2188
2196
|
Sidebar polish: hide zero-count badges; tonal active state;
|
|
@@ -2883,7 +2891,12 @@
|
|
|
2883
2891
|
padding: 10px 12px;
|
|
2884
2892
|
}
|
|
2885
2893
|
.ds-247420 .app-side .group { width: 100%; }
|
|
2886
|
-
|
|
2894
|
+
/* Keep the crumb on mobile — apps mount contextual controls (model picker,
|
|
2895
|
+
actions, live status) in crumb-right, so hiding it strands them. Collapse
|
|
2896
|
+
the breadcrumb trail/leaf instead and let the right cluster wrap. */
|
|
2897
|
+
.ds-247420 .app-crumb { display: flex; flex-wrap: wrap; gap: var(--space-2); padding: 8px 12px; }
|
|
2898
|
+
.ds-247420 .app-crumb > .sep, .ds-247420 .app-crumb > span:not(.crumb-right):not(.leaf) { display: none; }
|
|
2899
|
+
.ds-247420 .app-crumb .crumb-right { margin-left: 0; }
|
|
2887
2900
|
.ds-247420 .chat-head { padding: var(--space-2) var(--space-3) var(--space-2); margin-bottom: var(--space-2); }
|
|
2888
2901
|
.ds-247420 .app-main { padding-left: var(--space-3); padding-right: var(--space-3); }
|
|
2889
2902
|
}
|