A loose federation of distributed, typed datasets
1
fork

Configure Feed

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

docs: move backup files to docs_src and add dark mode install-box styling

- Relocate markdown backup files from docs/.backup/ to docs_src/.backup/
- Add dark mode styling for install-box callout with cyan/teal gradient
- Add browser theme-color meta tag that updates on light/dark mode switch

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

+25 -1
+3
CHANGELOG.md
··· 12 12 - Fix dark theme styling for callouts and code blocks in Quarto docs (#229) 13 13 14 14 ### Changed 15 + - Fix browser theme-color not updating on light/dark mode switch (#233) 16 + - Add dark mode styling for install-box callout on home page (#232) 17 + - Commit CSS selector fix for dark mode (#231) 15 18 - Fix dark theme issues in Quarto docs (callouts and code blocks) (#229) 16 19 - Fix dark mode styling issues in Quarto docs (#230) 17 20 - Set up Quarto documentation site with tutorials, reference docs, and API reference (#224)
docs/.backup/atmosphere.md docs_src/.backup/atmosphere.md
docs/.backup/datasets.md docs_src/.backup/datasets.md
docs/.backup/index.md docs_src/.backup/index.md
docs/.backup/lenses.md docs_src/.backup/lenses.md
docs/.backup/load-dataset.md docs_src/.backup/load-dataset.md
docs/.backup/local-storage.md docs_src/.backup/local-storage.md
docs/.backup/packable-samples.md docs_src/.backup/packable-samples.md
docs/.backup/promotion.md docs_src/.backup/promotion.md
docs/.backup/protocols.md docs_src/.backup/protocols.md
+16
docs/assets/styles.css
··· 101 101 .quarto-dark .hero .tagline { 102 102 color: #adb5bd; 103 103 } 104 + 105 + /* Install box in dark mode - cool cyan/teal gradient */ 106 + .quarto-dark .install-box { 107 + background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%); 108 + } 109 + 110 + .quarto-dark .install-box code { 111 + background: rgba(0, 0, 0, 0.3); 112 + color: #e2e8f0; 113 + } 114 + 115 + /* Fix comment color in install-box code blocks */ 116 + .quarto-dark .install-box .co, 117 + .quarto-dark .install-box .sourceCode .co { 118 + color: #94a3b8; 119 + }
+6 -1
docs/index.html
··· 5 5 <meta name="generator" content="quarto-1.7.34"> 6 6 7 7 <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> 8 - 8 + <meta name="theme-color" content="#212529" id="theme-color-meta"> 9 9 10 10 <title>atdata</title> 11 11 <style> ··· 163 163 manageTransitions('#quarto-margin-sidebar .nav-link', true); 164 164 // Switch the toggles 165 165 setColorSchemeToggle(alternate) 166 + // Update browser theme-color meta for Safari toolbar 167 + const themeColorMeta = document.querySelector('#theme-color-meta'); 168 + if (themeColorMeta) { 169 + themeColorMeta.setAttribute('content', alternate ? '#1d1d1d' : '#212529'); 170 + } 166 171 // Hack to workaround the fact that safari doesn't 167 172 // properly recolor the scrollbar when toggling (#1455) 168 173 if (navigator.userAgent.indexOf('Safari') > 0 && navigator.userAgent.indexOf('Chrome') == -1) {