tessellate 0.1.8 → 0.1.9
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/navigation.html +2 -2
- data/_sass/tessellate.scss +6 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ceb5c38f7a9941df38ae587424835e301bb3b5be92f228f5b2c507eeb91a3ebb
|
4
|
+
data.tar.gz: 3ebdcb72c9ca03adba412e48843e748b186552698a501d06aafa560bb9a817df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 820a16caac5600d567f32132bf3fae8eb32fb6e93aeb52d97cf518478cdac15904a25e2440a5daa7bd2269b3e6874928f169cd569ee086d38076d49e21f4dfe3
|
7
|
+
data.tar.gz: 9abe0f07750ae38efa7964c4f87d8452454cbc75229e707411aacb0ccfb7cc735d45b0da36164677d9e02401021d5b83b3bbdb6c624ba739441c5f0112737eeb
|
data/_includes/navigation.html
CHANGED
@@ -20,9 +20,9 @@
|
|
20
20
|
{% endfor %}
|
21
21
|
{% for item in navigation_right %}
|
22
22
|
{% if forloop.first %}
|
23
|
-
<div class="nav-item" style="margin-left: auto;">
|
23
|
+
<div class="nav-item nav-item-right" style="margin-left: auto;">
|
24
24
|
{% else %}
|
25
|
-
<div class="nav-item">
|
25
|
+
<div class="nav-item nav-item-right">
|
26
26
|
{% endif %}
|
27
27
|
<a href="{{ item.url }}" class="btn btn-primary btn-block">{{ item.title }}</a>
|
28
28
|
{% if item.dropdown %}
|
data/_sass/tessellate.scss
CHANGED
@@ -98,6 +98,7 @@
|
|
98
98
|
margin: 0;
|
99
99
|
}
|
100
100
|
.navbar {
|
101
|
+
font-size: 0.75em;
|
101
102
|
margin: 0;
|
102
103
|
overflow: visible;
|
103
104
|
position: fixed;
|
@@ -108,7 +109,7 @@
|
|
108
109
|
|
109
110
|
.nav-item {
|
110
111
|
display: inline-block;
|
111
|
-
padding: 0.
|
112
|
+
padding: 0.35em 0.75em;
|
112
113
|
text-align: center;
|
113
114
|
text-transform: uppercase;
|
114
115
|
background: #f9f9f9;
|
@@ -145,6 +146,10 @@
|
|
145
146
|
visibility: visible;
|
146
147
|
}
|
147
148
|
}
|
149
|
+
|
150
|
+
.nav-item.nav-item-right {
|
151
|
+
margin-right: 1em;
|
152
|
+
}
|
148
153
|
}
|
149
154
|
|
150
155
|
/* Basic */
|