ovh-jekyll-doc-theme 0.2.0 → 0.2.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/_includes/navbar.html +2 -2
- data/_sass/components/_sidebar.scss +6 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73796966e9f61955beb44c0e01e1c573e1f052db
|
4
|
+
data.tar.gz: c82ae98b90dbff4a25bde01878abde68208731dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ccbee9f604981543559469a85b9cf80c0a68b5f91967e0ee6b531f69ca1794d82df388c3eb0890a91138491854c028c36763a63c2eaf58c5098f32a3004ba25
|
7
|
+
data.tar.gz: 6a4c8d81f33f66ae62958e2266e6f4ed51530e707de9e422464f1c36ce3dd07ef72f5bf8e8aa1a5d4ed2b4f2e4ae5726024b0cb42bede247cf02e194366de261
|
data/_includes/navbar.html
CHANGED
@@ -20,10 +20,10 @@
|
|
20
20
|
href="{{site.baseurl}}{{navEntry.url}}">
|
21
21
|
{% if navEntry.subnav[0] %}
|
22
22
|
{% if navEntry.url == page.url %}
|
23
|
-
<i class="navbar__link-chevron oui-icon oui-icon-chevron-right"
|
23
|
+
<i class="navbar__link-chevron navbar__link-chevron--active oui-icon oui-icon-chevron-right"
|
24
24
|
aria-hidden="true"></i>
|
25
25
|
{% else %}
|
26
|
-
<i class="navbar__link-chevron
|
26
|
+
<i class="navbar__link-chevron oui-icon oui-icon-chevron-right"
|
27
27
|
aria-hidden="true"></i>
|
28
28
|
{% endif %}
|
29
29
|
{% endif %}
|
@@ -3,7 +3,7 @@ $sidebar-color-secondary: $oui-color-rhino;
|
|
3
3
|
|
4
4
|
@keyframes openNavEntry {
|
5
5
|
from {
|
6
|
-
left: -
|
6
|
+
left: -40%;
|
7
7
|
opacity: 0;
|
8
8
|
}
|
9
9
|
to {
|
@@ -111,8 +111,9 @@ $sidebar-color-secondary: $oui-color-rhino;
|
|
111
111
|
height: auto;
|
112
112
|
|
113
113
|
.navbar__link--lvl-2 {
|
114
|
-
animation: openNavEntry .
|
114
|
+
animation: openNavEntry .35s ease-in-out .1s;
|
115
115
|
left: 0;
|
116
|
+
opacity: 1;
|
116
117
|
}
|
117
118
|
}
|
118
119
|
}
|
@@ -135,7 +136,7 @@ $sidebar-color-secondary: $oui-color-rhino;
|
|
135
136
|
&-2 {
|
136
137
|
padding-left: $space-l2;
|
137
138
|
position: relative;
|
138
|
-
left: -
|
139
|
+
left: -40%;
|
139
140
|
opacity: 0;
|
140
141
|
}
|
141
142
|
}
|
@@ -156,7 +157,8 @@ $sidebar-color-secondary: $oui-color-rhino;
|
|
156
157
|
transform: rotate(0);
|
157
158
|
|
158
159
|
&--active {
|
159
|
-
|
160
|
+
transform: rotate(90deg);
|
161
|
+
animation: selectedNavEntry .2s ease-in .1s;
|
160
162
|
}
|
161
163
|
}
|
162
164
|
|