jumbo-jekyll-theme 1.7.15 → 1.7.16
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/sidebar.html +4 -7
- data/_sass/core/nav.scss +4 -0
- 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: aa3f1a27b29579cf3825d88629650b53d9aec578
|
|
4
|
+
data.tar.gz: 814bc1862562225299bada8b9b2a54799facc879
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 97beb3eb813da5fc1564cd5305c64fc5b1d8748016f578a728140602b75abe5efd28d965b63fb297a6bb085cc6a37e3d0028d754def013f228e11bb5f35e6388
|
|
7
|
+
data.tar.gz: 6fd4d1eb1957f97e357385423005eccfb6c854623f835709781113092f010db24257283983c31ea913f899bb06993a6424948c714870e9b41de272a16b72587b
|
data/_includes/sidebar.html
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
{% assign sub-nav-tabs = site.data.sidebar-nav.pages %}
|
|
2
|
-
|
|
3
2
|
{% if sub-nav-tabs %}
|
|
4
|
-
|
|
5
3
|
{% assign page-base = page.url | split:'/' %}
|
|
6
|
-
|
|
7
4
|
{% for each in sub-nav-tabs %}
|
|
8
5
|
{% for each-url in each.urls %}
|
|
9
6
|
{% if each-url == page.url %}
|
|
@@ -20,9 +17,7 @@
|
|
|
20
17
|
{% assign custom-include = each.custom-include %}
|
|
21
18
|
{% endif %}
|
|
22
19
|
{% endfor %}
|
|
23
|
-
|
|
24
20
|
{% if tab-list %}
|
|
25
|
-
|
|
26
21
|
<ul class="nav nav-pills nav-stacked" id="stacked-nav">
|
|
27
22
|
{% for tab in tab-list %}
|
|
28
23
|
<li class="{% if page-base[1] == tab.base %}active {% elsif page.url == tab.url or tab.active %}active {% endif %}side-nav-button">
|
|
@@ -36,18 +31,20 @@
|
|
|
36
31
|
</div>
|
|
37
32
|
{% else %}
|
|
38
33
|
{{ tab.title}} {% if tab.external %}<i class="glyphicon glyphicon-new-window pull-right"></i>{% endif %}
|
|
34
|
+
{% endif %}
|
|
39
35
|
</a>
|
|
40
36
|
</li>
|
|
37
|
+
|
|
41
38
|
{% if tab.sub-tabs %}
|
|
42
39
|
{% for sub-tab in tab.sub-tabs %}
|
|
43
40
|
<li class="{% if page-base[1] == sub-tab.base %}active {% elsif page.url == sub-tab.url or sub-tab.active %}active {% endif %}side-nav-button sub-page">
|
|
44
41
|
<a href="{{sub-tab.url}}" role="link">
|
|
45
|
-
{{ tab.title}} {% if tab.external %}<i class="glyphicon glyphicon-new-window pull-right"></i>{% endif %}
|
|
42
|
+
{{ sub-tab.title}} {% if sub-tab.external %}<i class="glyphicon glyphicon-new-window pull-right"></i>{% endif %}
|
|
46
43
|
</a>
|
|
47
44
|
</li>
|
|
48
45
|
{% endfor %}
|
|
49
46
|
{% endif %}
|
|
50
|
-
|
|
47
|
+
|
|
51
48
|
{% endfor %}
|
|
52
49
|
</ul>
|
|
53
50
|
{% elsif custom-include %}
|
data/_sass/core/nav.scss
CHANGED
|
@@ -936,5 +936,9 @@ li#linaro-app-menu-item > ul:before {
|
|
|
936
936
|
opacity: 0.7;
|
|
937
937
|
}
|
|
938
938
|
|
|
939
|
+
// Style for sidebar stacked nav sub pages
|
|
940
|
+
li.side-nav-button.sub-page a {
|
|
941
|
+
padding-left: 40px;
|
|
942
|
+
}
|
|
939
943
|
// Import the CSS for the iuniversal NavBar
|
|
940
944
|
@import "universal-nav";
|