anentrypoint-design 0.0.97 → 0.0.99

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 CHANGED
@@ -258,7 +258,7 @@ html, body {
258
258
  margin: 16px 0;
259
259
  }
260
260
  .panel-head {
261
- padding: 14px 22px;
261
+ padding: 10px 22px 18px 22px;
262
262
  background: var(--panel-1);
263
263
  font-family: var(--ff-ui);
264
264
  font-size: 13px;
@@ -268,9 +268,9 @@ html, body {
268
268
  display: flex;
269
269
  justify-content: space-between;
270
270
  align-items: center;
271
- gap: 12px;
271
+ gap: var(--tool-gutter);
272
272
  }
273
- .panel-body { padding: 12px 16px; background: var(--panel-1); }
273
+ .panel-body { padding: 12px var(--tool-gutter); background: var(--panel-1); }
274
274
  .panel-body > .row, .panel-body > div > .row { border-radius: 0; margin-bottom: 0; }
275
275
  .panel-body > .row-form, .panel-body > form.row-form { margin-bottom: 0; }
276
276
 
@@ -1167,17 +1167,54 @@ input[type="number"]::placeholder, input:not([type])::placeholder { color: var(-
1167
1167
  font-size: 13px;
1168
1168
  line-height: 1.6;
1169
1169
  }
1170
- .ds-work-body { margin: 0 0 12px 0; max-width: 64ch; }
1171
- .ds-work-actions { display: flex; gap: 8px; }
1170
+ .ds-work-body { margin: 0; }
1171
+ .work-detail .ds-prose { margin: 0 0 var(--prose-stack-md) 0; }
1172
+ .ds-work-actions { display: flex; gap: var(--tool-gutter); }
1172
1173
 
1173
1174
  .panel.panel-inline { max-width: 560px; margin: 0; }
1174
1175
  .panel.panel-wide { max-width: 900px; }
1175
- .panel.panel-manifesto { /* width comes from style attr */ }
1176
1176
 
1177
- .ds-manifesto { padding: 20px 24px; font-size: 14px; line-height: 1.7; color: var(--panel-text); }
1178
- .ds-manifesto-para { margin: 0 0 12px 0; }
1177
+ /* ============================================================
1178
+ .ds-prose editorial prose surface. No chrome, no background,
1179
+ capped measure, asymmetric heading rhythm. Headings hug their
1180
+ own body (large space above, small space below).
1181
+ ============================================================ */
1182
+ .ds-prose {
1183
+ max-inline-size: var(--measure-prose);
1184
+ color: var(--panel-text);
1185
+ font-family: var(--ff-prose);
1186
+ font-size: 15px;
1187
+ line-height: 1.7;
1188
+ }
1189
+ .ds-prose > * { margin: 0; }
1190
+ .ds-prose > * + * { margin-top: var(--prose-stack-md); }
1191
+ .ds-prose > h1,
1192
+ .ds-prose > h2,
1193
+ .ds-prose > h3,
1194
+ .ds-prose > h4,
1195
+ .ds-prose > h5,
1196
+ .ds-prose > h6 {
1197
+ margin-top: var(--prose-stack-lg);
1198
+ margin-bottom: var(--prose-stack-sm);
1199
+ line-height: 1.2;
1200
+ }
1201
+ .ds-prose > :first-child { margin-top: 0; }
1202
+ .ds-prose > h1 + *,
1203
+ .ds-prose > h2 + *,
1204
+ .ds-prose > h3 + *,
1205
+ .ds-prose > h4 + *,
1206
+ .ds-prose > h5 + *,
1207
+ .ds-prose > h6 + * { margin-top: var(--prose-stack-sm); }
1208
+
1209
+ /* Manifesto rides .ds-prose; keep dim variant + para rhythm via prose-stack-md */
1210
+ .ds-manifesto { font-size: 15px; }
1211
+ .ds-manifesto-para { margin: 0; }
1212
+ .ds-manifesto-para + .ds-manifesto-para { margin-top: var(--prose-stack-md); }
1179
1213
  .ds-manifesto-para.dim { color: var(--panel-text-2); }
1180
1214
 
1215
+ /* Transparent section wrapper for prose-on-page placement (no .panel card) */
1216
+ .ds-prose-section { margin: var(--prose-stack-lg) 0; padding: 0; background: transparent; }
1217
+
1181
1218
  .ds-pattern-notes {
1182
1219
  padding: 14px 20px;
1183
1220
  font-size: 13px;
@@ -1561,6 +1598,14 @@ tr.clickable:hover td { background: var(--panel-hover); }
1561
1598
  background: var(--panel-1);
1562
1599
  border-radius: 20px;
1563
1600
  }
1601
+ /* A section whose only direct child is a .ds-prose drops its card chrome —
1602
+ prose surfaces are bare paper, not panel-wrapped. */
1603
+ .ds-section:has(> .ds-prose:only-child),
1604
+ .ds-section:has(> .ds-manifesto:only-child) {
1605
+ background: transparent;
1606
+ padding: 0;
1607
+ margin: var(--prose-stack-lg) 0;
1608
+ }
1564
1609
  .ds-section .ds-section-title { margin-top: 0; }
1565
1610
  .ds-section .ds-lede { opacity: 0.8; max-width: 60ch; }
1566
1611
  .ds-section .row {
@@ -80,6 +80,15 @@
80
80
 
81
81
  /* Measure */
82
82
  --measure: 72ch;
83
+ --measure-prose: 68ch;
84
+
85
+ /* Prose rhythm — asymmetric stack scale for editorial surfaces */
86
+ --prose-stack-sm: 12px;
87
+ --prose-stack-md: 24px;
88
+ --prose-stack-lg: 56px;
89
+
90
+ /* Tool rhythm — canonical gutter for dense panel internals */
91
+ --tool-gutter: 16px;
83
92
 
84
93
  /* Extended type scale */
85
94
  --fs-body: 15px;