From 4034a6d942e27f083daa4e7d578c0bd9c1034c86 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 16 Apr 2024 08:43:38 -0700 Subject: [PATCH] fix: class names --- package.json | 2 +- .../partials/nav/theme-toggle.liquid | 2 +- src/assets/styles/components/buttons.css | 14 ++++----- src/assets/styles/components/theme-toggle.css | 10 +++---- .../2024/adding-a-light-dark-theme-toggle.md | 26 ++++++++-------- .../building-a-theme-toggle-web-component.md | 30 +++++++++---------- 6 files changed, 42 insertions(+), 42 deletions(-) diff --git a/package.json b/package.json index 610936c4..07973364 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "11.3.4", + "version": "11.3.5", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_includes/partials/nav/theme-toggle.liquid b/src/_includes/partials/nav/theme-toggle.liquid index fe448174..d1d0dce0 100644 --- a/src/_includes/partials/nav/theme-toggle.liquid +++ b/src/_includes/partials/nav/theme-toggle.liquid @@ -2,7 +2,7 @@ @@ -37,7 +37,7 @@ My verbose, `connectedCallback` handles appending the template and appending the ```javascript async connectedCallback() { this.append(this.template) - const btn = this.querySelector('.theme__toggle') + const btn = this.querySelector('.theme-toggle') const setTheme = (isOnLoad) => { const prefersDarkScheme = window.matchMedia('(prefers-color-scheme: dark)').matches const currentTheme = localStorage?.getItem('theme') @@ -75,41 +75,41 @@ async connectedCallback() { The CSS for this is straightforward and contains a few vars specific to my implementation (related to icon color and SVG `stroke-width`): ```css -.theme__toggle { +.theme-toggle { background: transparent; padding: 0; } -.theme__toggle svg { +.theme-toggle svg { cursor: pointer; } -.theme__toggle:hover, -.theme__toggle svg:hover { +.theme-toggle:hover, +.theme-toggle svg:hover { stroke-width: var(--stroke-width-bold); } -.theme__toggle > .light svg { stroke: var(--sun) !important; } -.theme__toggle > .dark svg { stroke: var(--moon) !important; } +.theme-toggle > .light svg { stroke: var(--sun) !important; } +.theme-toggle > .dark svg { stroke: var(--moon) !important; } -.theme__toggle > .light , -.theme__toggle > .dark { +.theme-toggle > .light , +.theme-toggle > .dark { display: none; } -.theme__dark .theme__toggle > .light { +.theme__dark .theme-toggle > .light { display: inline; } -.theme__dark .theme__toggle > .dark { +.theme__dark .theme-toggle > .dark { display: none; } -.theme__light .theme__toggle > .light { +.theme__light .theme-toggle > .light { display: none; } -.theme__light .theme__toggle > .dark { +.theme__light .theme-toggle > .dark { display: inline; } ``` @@ -119,7 +119,7 @@ The final template that leverages the component looks like this: ```liquid