1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-18 05:41:31 +00:00

Normalized attribute name in HTML

Add prefix `data-` for following attributes:
- `topbar-visible`
- `mode`
- `label-text`
- `title-succeed`
This commit is contained in:
Cotes Chung
2022-01-13 00:23:08 +08:00
parent 96e7cd79af
commit f8f4dd889e
14 changed files with 43 additions and 40 deletions

View File

@@ -11,22 +11,22 @@
}
}
html:not([mode]),
html[mode=light] {
html:not([data-mode]),
html[data-mode=light] {
@include mode-toggle();
}
html[mode=dark] {
html[data-mode=dark] {
@include mode-toggle(true);
}
@media (prefers-color-scheme: dark) {
html:not([mode]),
html[mode=dark] {
html:not([data-mode]),
html[data-mode=dark] {
@include mode-toggle(true);
}
html[mode=light] {
html[data-mode=light] {
@include mode-toggle();
}
}
@@ -247,7 +247,7 @@ img[data-src] {
}
}
[topbar-visible=true] & > div {
[data-topbar-visible=true] & > div {
top: 6rem;
}
}
@@ -873,7 +873,7 @@ $sidebar-display: "sidebar-display";
border-bottom: 1px solid rgba(0, 0, 0, 0.07);
background-color: var(--topbar-wrapper-bg);
[topbar-visible=false] & {
[data-topbar-visible=false] & {
top: -$topbar-height; /* same as topbar height. */
}
}
@@ -1301,7 +1301,7 @@ $sidebar-display: "sidebar-display";
} // max-width: 849px
@media all and (max-width: 849px) and (orientation: portrait) {
[topbar-visible=false] #topbar-wrapper {
[data-topbar-visible=false] #topbar-wrapper {
top: 0;
}
}