anentrypoint-design 0.0.281 → 0.0.282

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
@@ -1209,8 +1209,12 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
1209
1209
  font-size: var(--fs-xs);
1210
1210
  }
1211
1211
  .ds-file-open { gap: 10px; }
1212
- /* On mobile, fold meta under the title and keep actions inline. */
1213
- .ds-file-row .ds-file-meta { font-size: var(--fs-micro); }
1212
+ /* At mobile row widths, a fixed-size meta column (date/size) plus the
1213
+ always-visible action buttons leave the flexible title only a few px —
1214
+ not enough for even one legible character before the two collide. Drop
1215
+ the metadata column here; the title + actions still fully identify and
1216
+ operate on the row, and meta stays available in the file viewer. */
1217
+ .ds-file-row .ds-file-meta { display: none; }
1214
1218
  .ds-file-row .ds-file-actions { opacity: 1; }
1215
1219
  /* H4: floor finger-sized controls so file actions/sort/filter/breadcrumb are
1216
1220
  reachable by touch (cohesion sweep). */
@@ -2968,6 +2972,23 @@ textarea::placeholder {
2968
2972
  color: var(--fg-3);
2969
2973
  }
2970
2974
 
2975
+ /* Rubber-stamp motif — a bordered, uppercase, letter-spaced badge with a
2976
+ slight built-in rotation (variants may override via inline transform for
2977
+ a stronger tilt). Max 1 per page per the component's own caption. */
2978
+ .stamp {
2979
+ display: inline-block;
2980
+ font-family: var(--ff-mono); font-size: var(--fs-xs); font-weight: 700;
2981
+ text-transform: uppercase; letter-spacing: 0.08em;
2982
+ padding: var(--space-1-5, var(--space-2)) var(--space-3);
2983
+ border: 2px solid var(--fg);
2984
+ border-radius: var(--r-hair);
2985
+ color: var(--fg);
2986
+ transform: rotate(-2deg);
2987
+ white-space: nowrap;
2988
+ }
2989
+ .stamp.ink { background: var(--ink); border-color: var(--ink); color: var(--paper); }
2990
+ .stamp.acid { background: var(--accent); border-color: var(--accent-ink); color: var(--accent-ink); }
2991
+
2971
2992
  /* Structural hairlines — "no boxes, no cards, structure comes from rules."
2972
2993
  Three weights: .rule (default separator), .rule-double (major section
2973
2994
  break), .rule-dotted (optional/skippable). Applied to a bare <hr>, which
package/dist/247420.css CHANGED
@@ -1725,8 +1725,12 @@
1725
1725
  font-size: var(--fs-xs);
1726
1726
  }
1727
1727
  .ds-247420 .ds-file-open { gap: 10px; }
1728
- /* On mobile, fold meta under the title and keep actions inline. */
1729
- .ds-247420 .ds-file-row .ds-file-meta { font-size: var(--fs-micro); }
1728
+ /* At mobile row widths, a fixed-size meta column (date/size) plus the
1729
+ always-visible action buttons leave the flexible title only a few px —
1730
+ not enough for even one legible character before the two collide. Drop
1731
+ the metadata column here; the title + actions still fully identify and
1732
+ operate on the row, and meta stays available in the file viewer. */
1733
+ .ds-247420 .ds-file-row .ds-file-meta { display: none; }
1730
1734
  .ds-247420 .ds-file-row .ds-file-actions { opacity: 1; }
1731
1735
  /* H4: floor finger-sized controls so file actions/sort/filter/breadcrumb are
1732
1736
  reachable by touch (cohesion sweep). */
@@ -3476,6 +3480,23 @@
3476
3480
  color: var(--fg-3);
3477
3481
  }
3478
3482
 
3483
+ /* Rubber-stamp motif — a bordered, uppercase, letter-spaced badge with a
3484
+ slight built-in rotation (variants may override via inline transform for
3485
+ a stronger tilt). Max 1 per page per the component's own caption. */
3486
+ .ds-247420 .stamp {
3487
+ display: inline-block;
3488
+ font-family: var(--ff-mono); font-size: var(--fs-xs); font-weight: 700;
3489
+ text-transform: uppercase; letter-spacing: 0.08em;
3490
+ padding: var(--space-1-5, var(--space-2)) var(--space-3);
3491
+ border: 2px solid var(--fg);
3492
+ border-radius: var(--r-hair);
3493
+ color: var(--fg);
3494
+ transform: rotate(-2deg);
3495
+ white-space: nowrap;
3496
+ }
3497
+ .ds-247420 .stamp.ink { background: var(--ink); border-color: var(--ink); color: var(--paper); }
3498
+ .ds-247420 .stamp.acid { background: var(--accent); border-color: var(--accent-ink); color: var(--accent-ink); }
3499
+
3479
3500
  /* Structural hairlines — "no boxes, no cards, structure comes from rules."
3480
3501
  Three weights: .rule (default separator), .rule-double (major section
3481
3502
  break), .rule-dotted (optional/skippable). Applied to a bare <hr>, which