| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377 |
- [data-component="markdown"] {
- --markdown-inline-code-path-color: var(--v2-text-text-code-accent);
- --markdown-inline-code-color: var(--v2-text-text-code-accent);
- --markdown-inline-code-bg-mix: 8%;
- --markdown-shell-code-background: var(--v2-background-bg-layer-02);
- --markdown-shell-code-border: var(--v2-border-border-muted);
- --markdown-shell-code-color: var(--v2-text-text-base);
- --markdown-shell-code-token-color: currentColor;
- /* Reset & Base Typography */
- min-width: 0;
- max-width: 100%;
- overflow-wrap: break-word;
- color: var(--v2-text-text-base);
- font-family: var(--font-family-sans);
- font-size: var(--font-size-base); /* 14px */
- line-height: 160%;
- /* Spacing for flow */
- > *:first-child {
- margin-top: 0;
- }
- > *:last-child {
- margin-bottom: 0;
- }
- > [data-markdown-block]:first-child > *:first-child {
- margin-top: 0;
- }
- > [data-markdown-block]:last-child > *:last-child {
- margin-bottom: 0;
- }
- /* Headings: Sized by level, distinguished by color and spacing */
- h1 {
- font-size: 17px;
- color: var(--v2-text-text-base);
- font-weight: 600;
- margin-top: 28px;
- margin-bottom: 12px;
- line-height: var(--line-height-large);
- }
- h2 {
- font-size: 15px;
- color: var(--v2-text-text-base);
- font-weight: 600;
- margin-top: 24px;
- margin-bottom: 10px;
- line-height: var(--line-height-large);
- }
- h3 {
- font-size: 13px;
- color: var(--v2-text-text-base);
- font-weight: var(--font-weight-medium);
- margin-top: 20px;
- margin-bottom: 8px;
- line-height: var(--line-height-large);
- }
- h4,
- h5,
- h6 {
- font-size: 13px;
- color: var(--v2-text-text-muted);
- font-weight: var(--font-weight-medium);
- margin-top: 20px;
- margin-bottom: 8px;
- line-height: var(--line-height-large);
- }
- /* Emphasis & Strong: Neutral strong color */
- strong,
- b {
- color: var(--v2-text-text-base);
- font-weight: var(--font-weight-medium);
- }
- /* Paragraphs */
- p {
- margin-bottom: 12px;
- }
- /* Links */
- a {
- color: var(--text-interactive-base);
- text-decoration: none;
- font-weight: inherit;
- }
- a:hover {
- text-decoration: underline;
- text-underline-offset: 2px;
- }
- /* Lists */
- ul,
- ol {
- margin-top: 8px;
- margin-bottom: 12px;
- margin-left: 0;
- padding-left: 32px;
- list-style-position: outside;
- }
- ul {
- list-style-type: disc;
- }
- ol {
- list-style-type: decimal;
- padding-left: 2.25rem;
- }
- li {
- margin-bottom: 8px;
- }
- li > p:first-child {
- display: inline;
- margin: 0;
- }
- li:has(> input[type="checkbox"]),
- li:has(> p > input[type="checkbox"]) {
- position: relative;
- list-style-type: none;
- }
- li > input[type="checkbox"],
- li > p > input[type="checkbox"] {
- position: absolute;
- top: 4px;
- left: -20px;
- margin: 0;
- }
- li > p + p {
- display: block;
- margin-top: 0.5rem;
- }
- li::marker {
- color: var(--v2-text-text-muted);
- }
- /* Nested lists spacing */
- li > ul,
- li > ol {
- margin-top: 0.25rem;
- margin-bottom: 0.25rem;
- padding-left: 1rem; /* Minimal indent for nesting only */
- }
- li > ol {
- padding-left: 1.75rem;
- }
- /* Blockquotes */
- blockquote {
- border-left: 0.5px solid var(--v2-border-border-base);
- margin: 1rem 0;
- padding-left: 0.5rem;
- color: var(--v2-text-text-muted);
- font-style: normal;
- }
- /* Horizontal Rule - Invisible spacing only */
- hr {
- border: none;
- height: 0;
- margin: 32px 0;
- }
- .shiki {
- background: var(--color-background-stronger);
- color: var(--text-base);
- font-size: 13px;
- padding: 12px;
- border-radius: 6px;
- border: 0.5px solid var(--v2-border-border-base);
- }
- [data-component="markdown-code"] {
- position: relative;
- }
- [data-component="markdown-code"][data-code-kind="shell"] .shiki {
- background: var(--markdown-shell-code-background);
- border-color: var(--markdown-shell-code-border);
- color: var(--markdown-shell-code-color);
- }
- [data-component="markdown-code"][data-code-kind="shell"] code {
- color: var(--markdown-shell-code-color);
- }
- [data-component="markdown-code"][data-code-kind="shell"] code span {
- color: var(--markdown-shell-code-token-color) !important;
- }
- [data-slot="markdown-copy-button"] {
- position: absolute;
- top: 4px;
- right: 4px;
- opacity: 0;
- transition: opacity 0.15s ease;
- z-index: 1;
- }
- [data-component="markdown-code"]:hover [data-slot="markdown-copy-button"],
- [data-slot="markdown-copy-button"]:focus-within {
- opacity: 1;
- }
- [data-slot="markdown-copy-button"] [data-check-icon] {
- display: none;
- }
- [data-slot="markdown-copy-button"][data-copied="true"] [data-copy-icon] {
- display: none;
- }
- [data-slot="markdown-copy-button"][data-copied="true"] [data-check-icon] {
- display: inline-flex;
- }
- pre {
- margin-top: 12px;
- margin-bottom: 24px;
- overflow: auto;
- scrollbar-width: none;
- &::-webkit-scrollbar {
- display: none;
- }
- }
- :not(pre) > code {
- font-family: var(--font-family-mono);
- font-feature-settings: var(--font-family-mono--font-feature-settings);
- color: var(--v2-text-text-base);
- font-weight: var(--font-weight-medium);
- padding: 2px 4px;
- border-radius: 4px;
- background: color-mix(in oklch, var(--v2-text-text-base) var(--markdown-inline-code-bg-mix), transparent);
- }
- :not(pre) > code[data-inline-code-kind="path"] {
- color: var(--markdown-inline-code-path-color);
- background: color-mix(
- in oklch,
- var(--markdown-inline-code-path-color) var(--markdown-inline-code-bg-mix),
- transparent
- );
- }
- a.external-link > code[data-inline-code-kind="url"] {
- color: var(--markdown-inline-code-color);
- background: none;
- text-decoration: underline;
- text-decoration-color: color-mix(in oklch, var(--markdown-inline-code-color) 25%, transparent);
- text-underline-offset: 2px;
- }
- /* Tables */
- table {
- width: 100%;
- border-collapse: collapse;
- margin: 16px 0;
- font-size: var(--font-size-base);
- display: block;
- overflow-x: auto;
- }
- th,
- td {
- /* Minimal borders for structure, matching TUI "lines" roughly but keeping it web-clean */
- border-bottom: 0.5px solid var(--v2-border-border-muted);
- padding: 12px;
- text-align: left;
- vertical-align: top;
- }
- th {
- color: var(--v2-text-text-base);
- font-weight: var(--font-weight-medium);
- border-bottom: 0.5px solid var(--v2-border-border-base);
- }
- /* Images */
- img {
- max-width: 100%;
- height: auto;
- border-radius: 4px;
- margin: 1.5rem 0;
- display: block;
- }
- }
- body[data-new-layout] [data-component="markdown"] {
- [data-slot="markdown-copy-button"]::after {
- box-sizing: border-box;
- display: inline-flex;
- flex-direction: row;
- align-items: center;
- gap: 6px;
- padding: 5px 6px;
- border: 0;
- border-radius: 4px;
- background: var(--v2-background-bg-layer-01);
- box-shadow: var(--v2-elevation-floating);
- color: var(--v2-text-text-base);
- user-select: none;
- font-size: 11px;
- font-weight: 530;
- line-height: 12px;
- letter-spacing: 0.05px;
- font-variant-numeric: tabular-nums;
- font-variation-settings: "slnt" 0;
- }
- }
- body:not([data-new-layout]) [data-component="markdown"] {
- color: var(--text-strong);
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- font-size: 14px;
- color: var(--text-strong);
- font-weight: var(--font-weight-medium);
- }
- strong,
- b {
- color: var(--text-strong);
- }
- li::marker {
- color: var(--text-weak);
- }
- blockquote {
- border-left: 2px solid var(--border-weak-base);
- color: var(--text-weak);
- }
- .shiki {
- border-color: var(--border-weak-base);
- }
- :not(pre) > code {
- color: var(--syntax-string);
- padding: 0;
- border-radius: 0;
- background: none;
- }
- th,
- td {
- border-bottom: 1px solid var(--border-weaker-base);
- }
- th {
- color: var(--text-strong);
- border-bottom-color: var(--border-weak-base);
- }
- }
- [data-component="markdown"] a.external-link:hover > code {
- text-decoration: underline;
- text-underline-offset: 2px;
- }
|