rapido-css 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
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
OTBjOTE4ZGEzY2JmMWVmMTJhZDNiMTgyMTFhZDQwYmQ4OTNmMWI0ZQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NjdkMGUyNzNhYjc5MjU0MGI4NzM3MTJkYzA1YzllZTQzNjQwNzQ4MA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZDIyNjVmMWJhYjJmYjY2Mjg0MjJkZDg1NjA1OGI3ZWJjYzVkNmJkNzI1MjBk
|
|
10
|
+
MzZhMDA5OWI0OTAzNzNhMjk4YmYzNTJjMWMyNDMwN2NmMDI4NTQ1MTg1Yzhh
|
|
11
|
+
OTQzMGFkYzQwM2Q1ODhkYmY5YzVkMWNjNmQ0OGI3MjYxN2UxYWQ=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZjdmNDJiNmIyYTFjMjdlMzMwMDhjZDY0OTJjZDg3NzQ1YmE4NWVmYzU0NDIx
|
|
14
|
+
MjlmY2QzZmExZjViN2RjZDA5ODE2MWIwNjhiZmU4YTI3NGU1MGZiY2Y4Zjg0
|
|
15
|
+
Yjk5M2ZlNDMwMThjMjgwNDliZDYyMGRmOWUxZGQ2N2ZiZjFjZmI=
|
|
@@ -270,6 +270,17 @@ Markup:
|
|
|
270
270
|
</select>
|
|
271
271
|
</span>
|
|
272
272
|
|
|
273
|
+
If is not possibile to directly add the span it's also available a script
|
|
274
|
+
for adding them on load (only if necessary).
|
|
275
|
+
|
|
276
|
+
Include this js after including rapido.js.
|
|
277
|
+
|
|
278
|
+
$.rapido_Select();
|
|
279
|
+
|
|
280
|
+
**Options** (with default values):
|
|
281
|
+
|
|
282
|
+
selectClass: .form__select
|
|
283
|
+
|
|
273
284
|
Styleguide 8.3
|
|
274
285
|
|
|
275
286
|
*/
|
|
@@ -89,6 +89,7 @@ Styleguide 15.2
|
|
|
89
89
|
@include square(0);
|
|
90
90
|
@include transition(opacity $offcanvas-animations-duration, width $offcanvas-animations-duration/4 $offcanvas-animations-duration);
|
|
91
91
|
content: '';
|
|
92
|
+
z-index: ($zindex-offcanvas + 1);
|
|
92
93
|
|
|
93
94
|
@if $offcanvas-dim {
|
|
94
95
|
@extend %nav--offcanvas__dim !optional;
|
|
@@ -264,12 +265,16 @@ Styleguide 15.2
|
|
|
264
265
|
|
|
265
266
|
// ----------------------------------------------------------------------------
|
|
266
267
|
|
|
267
|
-
.no-csstransforms3d .
|
|
268
|
-
|
|
269
|
-
|
|
268
|
+
.no-csstransforms3d, .no-js {
|
|
269
|
+
|
|
270
|
+
.offcanvas__pusher {
|
|
271
|
+
padding-left: $offcanvas-width;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.offcanvas__menu {
|
|
275
|
+
visibility: visible;
|
|
276
|
+
}
|
|
270
277
|
|
|
271
|
-
.no-js .offcanvas__pusher {
|
|
272
|
-
padding-left: $offcanvas-width;
|
|
273
278
|
}
|
|
274
279
|
|
|
275
280
|
}
|
|
@@ -171,7 +171,7 @@ Include this js after including rapido.js.
|
|
|
171
171
|
**Options** (with default values):
|
|
172
172
|
|
|
173
173
|
offset: 500
|
|
174
|
-
|
|
174
|
+
offsetClass: .offcanvas__content (if using an offset layout with a custom class)
|
|
175
175
|
|
|
176
176
|
Example:
|
|
177
177
|
|
|
@@ -184,8 +184,10 @@ Styleguide 24.5
|
|
|
184
184
|
|
|
185
185
|
*/
|
|
186
186
|
|
|
187
|
-
|
|
188
|
-
|
|
187
|
+
.cssanimations {
|
|
188
|
+
[data-animation*="fadeIn"] {
|
|
189
|
+
@include opacity(0);
|
|
190
|
+
}
|
|
189
191
|
}
|
|
190
192
|
|
|
191
193
|
/*
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rapido-css
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Raffaele Rasini
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: susy
|