jekyll-theme-miniplex 0.7.0 → 0.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 52919686c779fb08d95767dd5263f9cac5fb60c15d65fc7eb3b7a8ac6d270b1a
4
- data.tar.gz: 8e1c22ca08f44e44b65042355dbde529194e13eda6d55483b831d2ab62a37555
3
+ metadata.gz: 3c0ff535ae019cf3fdeb97f38051550e5042a59dda0bab336c1fabc5db126659
4
+ data.tar.gz: a5196eb5ba50ab386c0b58d48f81b2367a013ca229538f8ee7d98341123822a3
5
5
  SHA512:
6
- metadata.gz: f353ab99352eb668477e3269245f83f41bc1211d021e7b4ba40c47b3bb62390d0ef3553fffeef32b7a2f23a250b00df6ab0c3e7291fbe0c2c014ca08912a7c1f
7
- data.tar.gz: 4d04b11f9876c5aa4422044c1859dc64f1be6fdd39dade78bedb6803106e0695539dde4aaca36eab3f5f32eabea32ec7e3df7df7bb318baf43c33c7250081f3c
6
+ metadata.gz: 519694b13d6df1d75435836f9c11cf401f866076dbbffaf29479ad6fe60a6021719f904db5875284ef3e3fd5ee658bb43f66b823ff1988193b67c711a1423f41
7
+ data.tar.gz: c2aad8e454b456c7be57ae481e328a5a793911edff3adeb3f5b5b60a0e0cb7231abb04d5f8559e2894683d7f632bf4f1250e2d57334bb70f0b2ad3c60d161af0
data/README.md CHANGED
@@ -63,9 +63,8 @@ miniplex:
63
63
 
64
64
  ## ToDos & Missing Features
65
65
 
66
- - [ ] Mobile nav bugfixing
67
- - [ ] Dark mode
68
66
  - [ ] Print CSS
67
+ - [ ] Dark mode
69
68
  - [ ] In-page navigation
70
69
  - [ ] Footer
71
70
  - [ ] Maximizable tables
@@ -77,6 +76,7 @@ miniplex:
77
76
 
78
77
  Most recent at the top.
79
78
 
79
+ - [X] Mobile nav bugfixing
80
80
  - [X] Post author & date flexibility
81
81
  - [X] Add a post's date to the page layout, or to a separate post layout
82
82
 
@@ -556,7 +556,7 @@ body
556
556
  left: 0px
557
557
  display: grid
558
558
  grid-template-columns: auto
559
- grid-template-rows: [transparent-nav-close-area] 4 * $unit [navigation-items] 1fr [navigation-controls] min-content
559
+ grid-template-rows: [transparent-nav-close-area] 8 * $unit [navigation-items] 1fr [navigation-controls] min-content
560
560
 
561
561
  #navigation-items
562
562
  grid-row: navigation-items / span 1
@@ -632,11 +632,12 @@ body
632
632
  background-size: 24px
633
633
  background-image: var(--icon-url)
634
634
 
635
- // Mobile Navigation, closed state
636
- nav#navigation-mobile[data-state="closed"]
635
+ // Mobile Navigation, start state
636
+ nav#navigation-mobile
637
637
  position: sticky
638
- grid-template-rows: [transparent-nav-close-area] 0 [navigation-items] 0 [navigation-controls] min-content
639
638
 
639
+ // Mobile Navigation, closed state
640
+ nav#navigation-mobile[data-state="closed"]
640
641
  #transparent-nav-close-area
641
642
  display: none
642
643
 
@@ -651,10 +652,6 @@ body
651
652
 
652
653
  // Mobile Navigation, open state
653
654
  nav#navigation-mobile[data-state="open"]
654
- position: fixed
655
- width: 100vw
656
- height: 100vh
657
-
658
655
  #transparent-nav-close-area
659
656
  display: block
660
657
 
@@ -15,6 +15,7 @@ document.addEventListener "DOMContentLoaded", (DOMLoadedEvent) ->
15
15
  # Mobile navigation
16
16
  mobileNavigation = document.querySelector "nav#navigation-mobile"
17
17
  mobileNavigationItems = document.querySelector "nav#navigation-mobilenav#navigation-mobile ul#navigation-items"
18
+ mobileNavigationControls = document.querySelector "nav#navigation-mobile #navigation-controls"
18
19
  navigationToggleButton = document.querySelector "button#mobile-navigation-toggle"
19
20
  transparentNavCloseArea = document.querySelector "div#transparent-nav-close-area"
20
21
  body = document.querySelector "body"
@@ -22,15 +23,32 @@ document.addEventListener "DOMContentLoaded", (DOMLoadedEvent) ->
22
23
  toggleNavigation = (event) ->
23
24
  switch mobileNavigation.dataset.state
24
25
  when "closed"
26
+ # Open navigation
25
27
  mobileNavigation.dataset.state = "open"
28
+
29
+ body.style.overflow = "hidden"
30
+
31
+ mobileNavigation.style.position = "fixed"
32
+ mobileNavigation.style.width = "100vw"
33
+ mobileNavigation.style.height = "100vh"
34
+ mobileNavigation.style.removeProperty("grid-template-rows")
35
+
26
36
  navigationToggleButton.setAttribute "aria-expanded", "true"
27
37
  mobileNavigationItems.setAttribute "aria-hidden", "false"
28
- body.style.overflow = "hidden"
38
+
29
39
  when "open"
40
+ # Close Navigation
30
41
  navigationToggleButton.setAttribute "aria-expanded", "false"
31
42
  mobileNavigation.dataset.state = "closed"
32
- mobileNavigationItems.setAttribute "aria-hidden", "true"
43
+
33
44
  body.style.overflow = "initial"
34
45
 
46
+ mobileNavigation.style.position = "sticky"
47
+ mobileNavigation.style.removeProperty("width")
48
+ mobileNavigation.style.removeProperty("height")
49
+ mobileNavigation.style.gridTemplateRows = "[transparent-nav-close-area] 0 [navigation-items] 0 [navigation-controls] min-content"
50
+
51
+ mobileNavigationItems.setAttribute "aria-hidden", "true"
52
+
35
53
  navigationToggleButton.addEventListener "click", toggleNavigation
36
54
  transparentNavCloseArea.addEventListener "click", toggleNavigation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-miniplex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Timo Würsch