fortitude-sass 0.4.4 → 0.4.5
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/Gemfile.lock +1 -1
- data/app/assets/stylesheets/fortitude/blocks/_navigationbar.scss +8 -10
- data/bower.json +1 -1
- data/lib/fortitude-sass/version.rb +1 -1
- 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: 28cebfae52fec0113a5ade8c285cc3696f698e16
|
|
4
|
+
data.tar.gz: 0670354971d729370d108a6485323f0785c8ebe6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c972985f390515528cad36e97d91f0ea1957349d87f66be0386b01edc2800a77410e934767161af973ce7e37aae6836883c8e0466b01027ee96b00ccb97eb614
|
|
7
|
+
data.tar.gz: 975142c3f167c39c2a895b0f5442dbb54a49d92af27295be3b8369831a177b750d9021ab1d112d0ce7c77a66e2a4599b7316bb7b860613231e43a04299ae0738
|
data/Gemfile.lock
CHANGED
|
@@ -88,14 +88,9 @@ $fortitude-navigationbar-height: 4rem !default;
|
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
.navigationbar__toggle {
|
|
91
|
+
@include fortitude-clearfix;
|
|
91
92
|
margin-top: -$fortitude-navigationbar-height;
|
|
92
93
|
|
|
93
|
-
&:after {
|
|
94
|
-
content: "";
|
|
95
|
-
display: table;
|
|
96
|
-
clear: both;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
94
|
> .icon {
|
|
100
95
|
float: right;
|
|
101
96
|
display: block;
|
|
@@ -111,6 +106,13 @@ $fortitude-navigationbar-height: 4rem !default;
|
|
|
111
106
|
-moz-appearance: none;
|
|
112
107
|
appearance: none;
|
|
113
108
|
|
|
109
|
+
+ .navigationbar__navigation {
|
|
110
|
+
display: none;
|
|
111
|
+
position: absolute;
|
|
112
|
+
top: 100%;
|
|
113
|
+
width: 100%;
|
|
114
|
+
}
|
|
115
|
+
|
|
114
116
|
&:checked + .navigationbar__navigation {
|
|
115
117
|
display: block;
|
|
116
118
|
}
|
|
@@ -118,11 +120,7 @@ $fortitude-navigationbar-height: 4rem !default;
|
|
|
118
120
|
|
|
119
121
|
.navigationbar__navigation {
|
|
120
122
|
clear: both;
|
|
121
|
-
display: none;
|
|
122
123
|
margin-right: 0;
|
|
123
|
-
position: absolute;
|
|
124
|
-
top: 100%;
|
|
125
|
-
width: 100%;
|
|
126
124
|
}
|
|
127
125
|
|
|
128
126
|
.navigationbar__item {
|
data/bower.json
CHANGED