jekyll-theme-miniplex 0.11.1 → 0.12.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 +4 -4
- data/README.md +5 -1
- data/_sass/jekyll-theme-miniplex.sass +45 -7
- data/assets/js/main.coffee +5 -4
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f1ab9dc8b592c92d3965aa0fe9344c3e375c14f01f973f80b9cdf33a079e767
|
4
|
+
data.tar.gz: 1723b9f2f7c59944209952462163581d941ed29b4b88e80814230fc8031b13ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd276a2608f125119bac29acbb6164875fe2562eeb8459d41bc574711c0f7b9de4fe3111011ded081c7e2f9472b5b7e617c69f5cb12cb1ae7483e99c0c26d130
|
7
|
+
data.tar.gz: a7269b37cf85927bbd95ca61e3c361156d238498ebb6e1f08d48f341efcac27144dee08f58699ed1dd0a4d85f4ec30ff6d2ebb9b897c948c4c1668faa1c2ef2e
|
data/README.md
CHANGED
@@ -90,8 +90,9 @@ Optionally, put any of the following files into the `_includes` folder to overri
|
|
90
90
|
|
91
91
|
## ToDos & Missing Features
|
92
92
|
|
93
|
-
- [ ]
|
93
|
+
- [ ] Font legibility & weights optimizations
|
94
94
|
- [ ] Maximizable tables
|
95
|
+
- [ ] In-page navigation
|
95
96
|
- [ ] Breadcrumbs, if possible
|
96
97
|
- [ ] Side notes, if possible
|
97
98
|
|
@@ -100,6 +101,9 @@ Optionally, put any of the following files into the `_includes` folder to overri
|
|
100
101
|
|
101
102
|
Most recent at the top.
|
102
103
|
|
104
|
+
- [X] Tests & fixes for mobile navigation. Issues:
|
105
|
+
- [X] Chrome on Android: Navigation bar position (floating or hidden)
|
106
|
+
- [X] Missing shadow on mobile nav
|
103
107
|
- [X] Footer
|
104
108
|
- [X] Dark mode
|
105
109
|
- [X] Print CSS
|
@@ -2,6 +2,7 @@
|
|
2
2
|
@use "sass:map"
|
3
3
|
@use "sass:math"
|
4
4
|
@use "sass:list"
|
5
|
+
@use "sass:color"
|
5
6
|
|
6
7
|
@import "reset"
|
7
8
|
|
@@ -220,7 +221,11 @@ $large_breakpoint: $medium_breakpoint + $large_minimum_left_navigation_width + 2
|
|
220
221
|
@mixin quote_font
|
221
222
|
font-family: IBMPlexSerif
|
222
223
|
font-style: italic
|
223
|
-
|
224
|
+
|
225
|
+
@mixin monospaced_font
|
226
|
+
font-family: IBMPlexMono
|
227
|
+
font-weight: normal
|
228
|
+
font-style: normal
|
224
229
|
|
225
230
|
// Accessibility
|
226
231
|
.visually-hidden
|
@@ -243,6 +248,8 @@ $large_breakpoint: $medium_breakpoint + $large_minimum_left_navigation_width + 2
|
|
243
248
|
// Colors for light mode
|
244
249
|
--primary_foreground_color: #444444
|
245
250
|
--heading_foreground_color: #333333
|
251
|
+
// Needs to be written as RGB, not hex, so that CSS rgba() works
|
252
|
+
--shadow_color: 51, 51, 51, 0.4
|
246
253
|
--interactive_color: #777777
|
247
254
|
--interactive_background_color: #eeeeee
|
248
255
|
--accent_color_1: #777777
|
@@ -255,6 +262,8 @@ $large_breakpoint: $medium_breakpoint + $large_minimum_left_navigation_width + 2
|
|
255
262
|
@media (prefers-color-scheme: dark)
|
256
263
|
--primary_foreground_color: #ffffff
|
257
264
|
--heading_foreground_color: #eeeeee
|
265
|
+
// Needs to be written as RGB, not hex, so that CSS rgba() works
|
266
|
+
--shadow_color: 255, 255, 255, 1.0
|
258
267
|
--interactive_color: #eeeeee
|
259
268
|
--interactive_background_color: #777777
|
260
269
|
--accent_color_1: #dddddd
|
@@ -279,10 +288,20 @@ body
|
|
279
288
|
|
280
289
|
@include below_large_mode
|
281
290
|
display: flex
|
291
|
+
position: fixed
|
292
|
+
height: 100vh
|
293
|
+
width: 100vw
|
294
|
+
max-height: 100%
|
295
|
+
top: 0
|
296
|
+
left: 0
|
297
|
+
bottom: 0
|
298
|
+
right: 0
|
299
|
+
overflow-y: scroll
|
300
|
+
|
282
301
|
flex-flow: column nowrap
|
283
302
|
align-items: stretch
|
284
303
|
justify-content: space-between
|
285
|
-
|
304
|
+
|
286
305
|
|
287
306
|
main#content
|
288
307
|
background: var(--content_background_color)
|
@@ -344,10 +363,11 @@ body
|
|
344
363
|
|
345
364
|
a
|
346
365
|
color: var(--interactive_color)
|
347
|
-
background-
|
366
|
+
background-image: linear-gradient(to right,var(--interactive_background_color) 0,var(--interactive_background_color) 100%)
|
367
|
+
background-size: 100% 20%
|
368
|
+
background-repeat: repeat-x
|
369
|
+
background-position: bottom
|
348
370
|
text-decoration: none
|
349
|
-
padding-left: math.div($unit, 4)
|
350
|
-
padding-right: math.div($unit, 4)
|
351
371
|
|
352
372
|
@include print_mode
|
353
373
|
text-decoration: underline
|
@@ -485,11 +505,27 @@ body
|
|
485
505
|
@include quote_font
|
486
506
|
@include responsive_property(margin-top, $xs: 0.75 * $unit, $s: 0.875 * $unit, $m: 1 * $unit, $otherwise: 1 * $unit)
|
487
507
|
@include responsive_property(margin-bottom, $xs: 0.75 * $unit, $s: 0.875 * $unit, $m: 1 * $unit, $otherwise: 1 * $unit)
|
508
|
+
color: var(--accent_color_1)
|
488
509
|
background-color: var(--group_color_level_1)
|
489
510
|
padding: $unit
|
490
511
|
|
491
512
|
p
|
492
513
|
margin-bottom: 0
|
514
|
+
|
515
|
+
pre
|
516
|
+
@include monospaced_font
|
517
|
+
@include responsive_property(margin-top, $xs: 0.75 * $unit, $s: 0.875 * $unit, $m: 1 * $unit, $otherwise: 1 * $unit)
|
518
|
+
@include responsive_property(margin-bottom, $xs: 0.75 * $unit, $s: 0.875 * $unit, $m: 1 * $unit, $otherwise: 1 * $unit)
|
519
|
+
background-color: var(--group_color_level_1)
|
520
|
+
padding: $unit
|
521
|
+
overflow-x: scroll
|
522
|
+
color: var(--accent_color_1)
|
523
|
+
|
524
|
+
code
|
525
|
+
@include monospaced_font
|
526
|
+
color: var(--accent_color_1)
|
527
|
+
background-color: var(--group_color_level_1)
|
528
|
+
padding: math.div($unit, 4)
|
493
529
|
|
494
530
|
table
|
495
531
|
@include responsive_property(margin-bottom, $xs: 1.5 * $unit, $s: 1.75 * $unit, $m: 2 * $unit, $otherwise: 2 * $unit)
|
@@ -734,7 +770,9 @@ body
|
|
734
770
|
|
735
771
|
// Mobile Navigation, start state
|
736
772
|
nav#navigation-mobile
|
773
|
+
position: -webkit-sticky
|
737
774
|
position: sticky
|
775
|
+
align-self: stretch
|
738
776
|
|
739
777
|
@include print_mode
|
740
778
|
display: none
|
@@ -748,7 +786,7 @@ body
|
|
748
786
|
display: none
|
749
787
|
|
750
788
|
#navigation-controls
|
751
|
-
box-shadow: 0 math.div($unit, 2) math.div($unit, 1) rgba(var(--
|
789
|
+
box-shadow: 0 math.div($unit, 2) math.div($unit, 1) rgba(var(--shadow_color))
|
752
790
|
|
753
791
|
button#mobile-navigation-toggle
|
754
792
|
--icon-url: url("/assets/images/menu-outline.svg")
|
@@ -762,7 +800,7 @@ body
|
|
762
800
|
|
763
801
|
#navigation-items
|
764
802
|
display: block
|
765
|
-
box-shadow: 0 math.div($unit, 2) math.div($unit, 1) rgba(var(--
|
803
|
+
box-shadow: 0 math.div($unit, 2) math.div($unit, 1) rgba(var(--shadow_color))
|
766
804
|
|
767
805
|
#navigation-controls
|
768
806
|
button#mobile-navigation-toggle
|
data/assets/js/main.coffee
CHANGED
@@ -26,13 +26,13 @@ document.addEventListener "DOMContentLoaded", (DOMLoadedEvent) ->
|
|
26
26
|
# Open navigation
|
27
27
|
mobileNavigation.dataset.state = "open"
|
28
28
|
|
29
|
-
body.style.overflow = "hidden"
|
30
|
-
|
31
29
|
mobileNavigation.style.position = "fixed"
|
32
30
|
mobileNavigation.style.width = "100vw"
|
33
31
|
mobileNavigation.style.height = "100vh"
|
34
32
|
mobileNavigation.style.removeProperty("grid-template-rows")
|
35
33
|
|
34
|
+
body.style.overflow = "hidden"
|
35
|
+
|
36
36
|
navigationToggleButton.setAttribute "aria-expanded", "true"
|
37
37
|
mobileNavigationItems.setAttribute "aria-hidden", "false"
|
38
38
|
|
@@ -41,13 +41,14 @@ document.addEventListener "DOMContentLoaded", (DOMLoadedEvent) ->
|
|
41
41
|
navigationToggleButton.setAttribute "aria-expanded", "false"
|
42
42
|
mobileNavigation.dataset.state = "closed"
|
43
43
|
|
44
|
-
body.style.overflow = "initial"
|
45
|
-
|
46
44
|
mobileNavigation.style.position = "sticky"
|
47
45
|
mobileNavigation.style.removeProperty("width")
|
48
46
|
mobileNavigation.style.removeProperty("height")
|
49
47
|
mobileNavigation.style.gridTemplateRows = "[transparent-nav-close-area] 0 [navigation-items] 0 [navigation-controls] min-content"
|
50
48
|
|
49
|
+
body.style.overflow = "initial"
|
50
|
+
|
51
|
+
navigationToggleButton.setAttribute "aria-expanded", "false"
|
51
52
|
mobileNavigationItems.setAttribute "aria-hidden", "true"
|
52
53
|
|
53
54
|
mobileNavigation.scrollIntoView {block: "end"}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-miniplex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Timo Würsch
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03-
|
11
|
+
date: 2023-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -38,7 +38,7 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 2.0.0
|
41
|
-
description:
|
41
|
+
description:
|
42
42
|
email:
|
43
43
|
- twuersch@fastmail.com
|
44
44
|
executables: []
|
@@ -78,7 +78,7 @@ homepage: https://gitlab.com/twuersch/jekyll-theme-miniplex
|
|
78
78
|
licenses:
|
79
79
|
- MIT
|
80
80
|
metadata: {}
|
81
|
-
post_install_message:
|
81
|
+
post_install_message:
|
82
82
|
rdoc_options: []
|
83
83
|
require_paths:
|
84
84
|
- lib
|
@@ -93,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
93
|
- !ruby/object:Gem::Version
|
94
94
|
version: '0'
|
95
95
|
requirements: []
|
96
|
-
rubygems_version: 3.3.
|
97
|
-
signing_key:
|
96
|
+
rubygems_version: 3.3.7
|
97
|
+
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: A Jekyll theme.
|
100
100
|
test_files: []
|