Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alex-shpak/hugo-book.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorPim Snel <pim@lingewoud.nl>2021-05-03 22:18:49 +0300
committerGitHub <noreply@github.com>2021-05-03 22:18:49 +0300
commite0823c213882489bb4ee3959bf2b306061762bf1 (patch)
tree3fed97d7ea8ec6141347eb503b8c6a554f34e9cc /assets
parent51140a802646c3507436c97d39c8928c54ad701c (diff)
collapsed menu right arrow, uncollapsed down arrow (#332)
Diffstat (limited to 'assets')
-rw-r--r--assets/_main.scss8
1 files changed, 8 insertions, 0 deletions
diff --git a/assets/_main.scss b/assets/_main.scss
index 6c044cb..883fbda 100644
--- a/assets/_main.scss
+++ b/assets/_main.scss
@@ -125,6 +125,14 @@ ul.pagination {
input.toggle:checked + label + ul {
display: block;
}
+
+ input.toggle + label::after {
+ content: "▸";
+ }
+
+ input.toggle:checked + label::after {
+ content: "▾";
+ }
}
.book-section-flat {