diff --git a/package.json b/package.json index 8c9ee677..33f7e325 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "5.9.0", + "version": "5.9.1", "description": "The source for my personal site. Built using 11ty and hosted on Netlify.", "type": "module", "scripts": { diff --git a/src/_includes/partials/nav/theme.liquid b/src/_includes/partials/nav/theme.liquid index 27bd12f2..5de2a914 100644 --- a/src/_includes/partials/nav/theme.liquid +++ b/src/_includes/partials/nav/theme.liquid @@ -1,4 +1,7 @@
  • + + {% tablericon "placeholder" "Toggle theme placeholder" %} + {% tablericon "sun" "Toggle light theme" %} diff --git a/src/assets/styles/index.css b/src/assets/styles/index.css index 6b43dab5..57838355 100644 --- a/src/assets/styles/index.css +++ b/src/assets/styles/index.css @@ -504,6 +504,15 @@ footer nav { .theme__toggle > .light svg { stroke: var(--sun) !important; } .theme__toggle > .dark svg { stroke: var(--moon) !important; } +.theme__toggle > .light , +.theme__toggle > .dark { + display: none; +} + +:is(.theme__light, .theme__dark) .theme__toggle > .placeholder { + display: none; +} + .theme__dark .theme__toggle > .light { display: inline; } diff --git a/src/posts/2024/adding-a-light-dark-theme-toggle.md b/src/posts/2024/adding-a-light-dark-theme-toggle.md index 4771d320..6da12db8 100644 --- a/src/posts/2024/adding-a-light-dark-theme-toggle.md +++ b/src/posts/2024/adding-a-light-dark-theme-toggle.md @@ -11,6 +11,9 @@ I built the button as a short Liquid partial: {% raw %} ```liquid
  • + + {% tablericon "placeholder" "Toggle theme placeholder" %} + {% tablericon "sun" "Toggle light theme" %} @@ -82,6 +85,15 @@ Finally, the theme is updated based on the body class applied by the JavaScript, .theme__toggle > .light svg { stroke: var(--sun) !important; } .theme__toggle > .dark svg { stroke: var(--moon) !important; } +.theme__toggle > .light , +.theme__toggle > .dark { + display: none; +} + +:is(.theme__light, .theme__dark) .theme__toggle > .placeholder { + display: none; +} + .theme__dark .theme__toggle > .light { display: inline; }