A loose federation of distributed, typed datasets
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: use quarto-dark class selector for dark mode CSS styling

Switch from Bootstrap's data-bs-theme attribute selector to Quarto's
native .quarto-dark class for dark mode styling in custom CSS.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+4 -3
+1
CHANGELOG.md
··· 12 12 - Fix dark theme styling for callouts and code blocks in Quarto docs (#229) 13 13 14 14 ### Changed 15 + - Fix dark theme issues in Quarto docs (callouts and code blocks) (#229) 15 16 - Fix dark mode styling issues in Quarto docs (#230) 16 17 - Set up Quarto documentation site with tutorials, reference docs, and API reference (#224) 17 18 - Add shared sample type definitions to conftest.py (#219)
+3 -3
docs/assets/styles.css
··· 86 86 =========================================== */ 87 87 88 88 /* API reference styling in dark mode */ 89 - [data-bs-theme="dark"] .api-signature { 89 + .quarto-dark .api-signature { 90 90 background-color: #2d2d2d; 91 91 border: 1px solid #444; 92 92 } 93 93 94 94 /* Feature cards in dark mode */ 95 - [data-bs-theme="dark"] .feature-card { 95 + .quarto-dark .feature-card { 96 96 background: #2d2d2d; 97 97 border-color: #444; 98 98 } 99 99 100 100 /* Hero tagline in dark mode */ 101 - [data-bs-theme="dark"] .hero .tagline { 101 + .quarto-dark .hero .tagline { 102 102 color: #adb5bd; 103 103 }