anentrypoint-design 1.0.27 → 1.0.29
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/dist/247420.css
CHANGED
|
@@ -4798,6 +4798,26 @@
|
|
|
4798
4798
|
fell back to the paper tone at 3.13:1 on ink. */
|
|
4799
4799
|
.ds-247420 .aicat-meta .name { color: var(--mascot-deep, var(--mascot)); font-weight: var(--fw-medium, 500); }
|
|
4800
4800
|
|
|
4801
|
+
/* Mascot identity folded into AICat's own .chat-head row (passed as its
|
|
4802
|
+
`header` prop) instead of a standalone .aicat-portrait block stacked above
|
|
4803
|
+
the chat panel -- reuses the existing 32px .aicat-face circle, just placed
|
|
4804
|
+
inline before the title instead of above the whole surface. */
|
|
4805
|
+
.ds-247420 .aicat-portrait-head { gap: var(--space-2-5); }
|
|
4806
|
+
.ds-247420 .aicat-face-inline { margin-right: var(--space-1); }
|
|
4807
|
+
|
|
4808
|
+
/* Centers the transcript+composer as the page's dominant focal surface
|
|
4809
|
+
(hero-composer framing): a bounded column with generous top margin so the
|
|
4810
|
+
chat panel reads as the first thing the eye lands on, not one card in a
|
|
4811
|
+
top-aligned marketing stack. Docs/heading content is demoted into
|
|
4812
|
+
.ds-kit-controls below it (see kits-appended.css) so nothing above the
|
|
4813
|
+
panel competes with it. */
|
|
4814
|
+
.ds-247420 .aicat-focus-col {
|
|
4815
|
+
max-width: 720px;
|
|
4816
|
+
margin-left: auto;
|
|
4817
|
+
margin-right: auto;
|
|
4818
|
+
padding-top: var(--space-6);
|
|
4819
|
+
}
|
|
4820
|
+
|
|
4801
4821
|
/* ============================================================
|
|
4802
4822
|
Composer attachment-detected badge, context line, hint, toolbar,
|
|
4803
4823
|
note strip, elapsed counter, dragover state — all referenced from
|
|
@@ -4984,6 +5004,50 @@
|
|
|
4984
5004
|
.ds-247420 .app-side a .glyph { font-family: var(--ff-body); font-size: 13px; font-weight: 600; color: var(--fg-3); text-align: center; }
|
|
4985
5005
|
.ds-247420 .app-side a.active .glyph { color: var(--accent-ink); }
|
|
4986
5006
|
|
|
5007
|
+
/* .ds-side-tree — two-level project-tree group (parent <details> + nested
|
|
5008
|
+
child rows), the sidebar's hierarchy primitive. Sits alongside Side()'s
|
|
5009
|
+
own flat .app-side-group rows but carries genuine nesting: a summary row
|
|
5010
|
+
(parent) disclosing child conversation rows, closer to a project-tree
|
|
5011
|
+
sidebar than a single flat list. */
|
|
5012
|
+
.ds-247420 .ds-side-tree { border: 0; }
|
|
5013
|
+
.ds-247420 .ds-side-tree-summary {
|
|
5014
|
+
display: flex; align-items: center; gap: var(--space-2);
|
|
5015
|
+
padding: var(--space-1-5) var(--space-2);
|
|
5016
|
+
border-radius: var(--r-1);
|
|
5017
|
+
font-family: var(--ff-mono); font-size: var(--fs-sm); color: var(--fg-2);
|
|
5018
|
+
cursor: pointer; list-style: none;
|
|
5019
|
+
}
|
|
5020
|
+
.ds-247420 .ds-side-tree-summary::-webkit-details-marker { display: none; }
|
|
5021
|
+
.ds-247420 .ds-side-tree-summary:hover { background: var(--bg-2); color: var(--fg); }
|
|
5022
|
+
.ds-247420 .ds-side-tree-summary:focus-visible {
|
|
5023
|
+
outline: var(--focus-w) solid var(--focus-color);
|
|
5024
|
+
outline-offset: var(--focus-offset);
|
|
5025
|
+
}
|
|
5026
|
+
.ds-247420 .ds-side-tree-summary .glyph { font-family: var(--ff-body); font-size: 13px; font-weight: 600; color: var(--fg-3); }
|
|
5027
|
+
.ds-247420 .ds-side-tree-summary .count {
|
|
5028
|
+
margin-left: auto; padding: 1px 8px; font-size: var(--fs-micro); font-weight: 700;
|
|
5029
|
+
font-family: var(--ff-body); letter-spacing: 0.04em; min-width: 18px; text-align: center;
|
|
5030
|
+
color: var(--fg-3); background: var(--bg-2); border-radius: var(--r-pill, 999px);
|
|
5031
|
+
}
|
|
5032
|
+
.ds-247420 .ds-side-tree-children {
|
|
5033
|
+
display: flex; flex-direction: column;
|
|
5034
|
+
padding-left: var(--space-4);
|
|
5035
|
+
gap: var(--space-hair);
|
|
5036
|
+
}
|
|
5037
|
+
.ds-247420 .ds-side-tree-child {
|
|
5038
|
+
display: flex; align-items: center; gap: var(--space-2);
|
|
5039
|
+
padding: var(--space-1) var(--space-2);
|
|
5040
|
+
border-radius: var(--r-1);
|
|
5041
|
+
font-family: var(--ff-mono); font-size: var(--fs-xs); color: var(--fg-3);
|
|
5042
|
+
text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
|
|
5043
|
+
}
|
|
5044
|
+
.ds-247420 .ds-side-tree-child:hover, .ds-247420 .ds-side-tree-child:focus-visible { background: var(--bg-2); color: var(--fg); }
|
|
5045
|
+
.ds-247420 .ds-side-tree-child:focus-visible {
|
|
5046
|
+
outline: var(--focus-w) solid var(--focus-color);
|
|
5047
|
+
outline-offset: var(--focus-offset);
|
|
5048
|
+
}
|
|
5049
|
+
.ds-247420 .ds-side-tree-child .glyph { font-family: var(--ff-body); color: var(--fg-3); }
|
|
5050
|
+
|
|
4987
5051
|
/* -- select primitive --------------------------------------------------- */
|
|
4988
5052
|
.ds-247420 .ds-select {
|
|
4989
5053
|
width: 100%;
|