chore: button go click click
This commit is contained in:
parent
349a0167c1
commit
8ee40e016c
3 changed files with 14 additions and 4 deletions
|
@ -4,14 +4,14 @@
|
||||||
{% endcapture %}
|
{% endcapture %}
|
||||||
<style>{{ css }}</style>
|
<style>{{ css }}</style>
|
||||||
<template id="theme-toggle-template">
|
<template id="theme-toggle-template">
|
||||||
<div class="theme__toggle">
|
<button class="theme__toggle">
|
||||||
<span class="light">
|
<span class="light">
|
||||||
{% tablericon "sun" "Toggle light theme" %}
|
{% tablericon "sun" "Toggle light theme" %}
|
||||||
</span>
|
</span>
|
||||||
<span class="dark">
|
<span class="dark">
|
||||||
{% tablericon "moon" "Toggle dark theme" %}
|
{% tablericon "moon" "Toggle dark theme" %}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
<li class="client-side">
|
<li class="client-side">
|
||||||
<theme-toggle></theme-toggle>
|
<theme-toggle></theme-toggle>
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
.theme__toggle {
|
||||||
|
background: transparent;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.theme__toggle svg {
|
.theme__toggle svg {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,6 +75,11 @@ 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`):
|
The CSS for this is straightforward and contains a few vars specific to my implementation (related to icon color and SVG `stroke-width`):
|
||||||
|
|
||||||
```css
|
```css
|
||||||
|
.theme__toggle {
|
||||||
|
background: transparent;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.theme__toggle svg {
|
.theme__toggle svg {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
@ -118,14 +123,14 @@ The final template that leverages the component looks like this:
|
||||||
{% endcapture %}
|
{% endcapture %}
|
||||||
<style>{{ css }}</style>
|
<style>{{ css }}</style>
|
||||||
<template id="theme-toggle-template">
|
<template id="theme-toggle-template">
|
||||||
<div class="theme__toggle">
|
<button class="theme__toggle">
|
||||||
<span class="light">
|
<span class="light">
|
||||||
{% tablericon "sun" "Toggle light theme" %}
|
{% tablericon "sun" "Toggle light theme" %}
|
||||||
</span>
|
</span>
|
||||||
<span class="dark">
|
<span class="dark">
|
||||||
{% tablericon "moon" "Toggle dark theme" %}
|
{% tablericon "moon" "Toggle dark theme" %}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
<li class="client-side">
|
<li class="client-side">
|
||||||
<theme-toggle></theme-toggle>
|
<theme-toggle></theme-toggle>
|
||||||
|
|
Reference in a new issue