slow-steps 0.1.9 → 0.1.10
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e9a95b4b4dd8828879fc02993396b89d73f860150fc517f6eb107e0ec53d8bf4
|
4
|
+
data.tar.gz: b31c9f0c5bb63b9786917d63cc6b905c0e5d34ed3b93d86b204f1ee10eeb74a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d221bdd2f95a1e850aebcfbbca361e801eeb5b633488647875ffb1ed35b55a7fa8ad7485fe66a450a3f7b330ba64b1dd5597947abab1dc2ea23765f4f709d6c
|
7
|
+
data.tar.gz: 7b95604276b53832b699b118e20aef8265ca9680e559e81da82772573c8505be1513c4d7e23d67de5d8c88b83a8ac7618e41ff19b86e28c2d968fa3a7191d48c
|
@@ -33,6 +33,7 @@
|
|
33
33
|
|
34
34
|
<div class="nav-group-content {{ item.env }}-group">
|
35
35
|
{% for sub in item.submenu %}
|
36
|
+
<div class="nav-group-container">
|
36
37
|
<a
|
37
38
|
class="
|
38
39
|
nav-link
|
@@ -42,9 +43,20 @@
|
|
42
43
|
{% endif %}" href="{{ sub.url | relative_url }}">
|
43
44
|
<span>{{ sub.name }}</span></a>
|
44
45
|
|
46
|
+
{% if sub.subsubmenu %}
|
47
|
+
<div class="nav-subsub-content ">
|
48
|
+
{% for subsub in sub.subsubmenu %}
|
49
|
+
<a class="nav-link subsub-link" href="{{ subsub.url | relative_url }}">
|
50
|
+
<span>{{ subsub.name }}</span></a>
|
51
|
+
|
52
|
+
{% endfor %}
|
53
|
+
</div>
|
54
|
+
{% endif %}
|
55
|
+
|
56
|
+
</div>
|
45
57
|
{% endfor %}
|
46
|
-
</div>
|
47
58
|
|
59
|
+
</div>
|
48
60
|
</li>
|
49
61
|
{% endfor %}
|
50
62
|
|
data/_layouts/about.html
CHANGED
@@ -61,6 +61,7 @@ $brand-height: 55%
|
|
61
61
|
opacity: 1
|
62
62
|
margin: 0
|
63
63
|
overflow: hidden
|
64
|
+
position: relative
|
64
65
|
|
65
66
|
// Surround current link with lines
|
66
67
|
|
@@ -98,3 +99,44 @@ $brand-height: 55%
|
|
98
99
|
|
99
100
|
.burger
|
100
101
|
display: none
|
102
|
+
|
103
|
+
.nav-subsub-content
|
104
|
+
background-color: $pure-white
|
105
|
+
box-shadow: 1px 1px 1px rgba(0, 0, 0, .1)
|
106
|
+
visibility: hidden
|
107
|
+
opacity: 0
|
108
|
+
border-radius: 6px
|
109
|
+
z-index: 1
|
110
|
+
position: absolute
|
111
|
+
padding: 1rem 0
|
112
|
+
margin-left: 3rem
|
113
|
+
transform: translateY(10px)
|
114
|
+
.subsub-link
|
115
|
+
&:hover
|
116
|
+
background: $white
|
117
|
+
|
118
|
+
&:before
|
119
|
+
background: inherit
|
120
|
+
content: ""
|
121
|
+
display: block
|
122
|
+
height: 16px
|
123
|
+
width: 16px
|
124
|
+
left: 5px
|
125
|
+
position: absolute
|
126
|
+
bottom: 100%
|
127
|
+
border-radius: 2px
|
128
|
+
transform: rotate(-45deg) translateY(14px)
|
129
|
+
z-index: -1
|
130
|
+
|
131
|
+
.nav-group-container:hover > .nav-subsub-content
|
132
|
+
visibility: visible
|
133
|
+
opacity: 1
|
134
|
+
transform: translateY(0px)
|
135
|
+
transition: opacity .1s ease-in, transform .2s ease-in
|
136
|
+
|
137
|
+
.nav-subsub-content .sub-link
|
138
|
+
transition: background-color .1s ease-in
|
139
|
+
|
140
|
+
.nav-subsub-content .sub-link:hover
|
141
|
+
background-color: $white
|
142
|
+
transition: background-color .1s ease-in
|
@@ -25,12 +25,14 @@
|
|
25
25
|
left: 0
|
26
26
|
flex-direction: row
|
27
27
|
|
28
|
-
.nav-group-
|
28
|
+
.nav-group-container
|
29
|
+
|
29
30
|
|
30
31
|
.nav-link
|
31
32
|
font-weight: 400
|
32
33
|
color: $env-primary
|
33
34
|
text-transform: uppercase
|
34
|
-
padding:
|
35
|
-
&:
|
36
|
-
|
35
|
+
padding: 1rem 3rem
|
36
|
+
&:not(.current--url)
|
37
|
+
&:hover
|
38
|
+
text-decoration: underline
|
@@ -21,13 +21,14 @@
|
|
21
21
|
left: 0
|
22
22
|
flex-direction: row
|
23
23
|
|
24
|
-
.nav-group-
|
24
|
+
.nav-group-container
|
25
25
|
|
26
26
|
|
27
27
|
.nav-link
|
28
28
|
font-weight: 400
|
29
|
+
color: $env-primary
|
29
30
|
text-transform: uppercase
|
30
|
-
padding:
|
31
|
+
padding: 1rem 3rem
|
31
32
|
&:not(.current--url)
|
32
33
|
&:hover
|
33
34
|
text-decoration: underline
|