rapido-css 0.1.9 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/stylesheets/components/_dropdowns.scss +4 -2
- data/stylesheets/components/_forms.scss +4 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MjRhOWZiNzBhOTY5MzBmMDU0ZDJlNDVhNDExOGI1NjUwMmM1Y2VmNg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZDVmNjUxMzA4MTc4ZTc0NGZmZWIzYjVhNGY0YjkyOGEzZjY3YjcxYg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
Y2NjYWU4YzFhMDIxZTE1MTQxOGNkYzQyMjM2NDFjN2EwMzY4MDhlNmZiNjcw
|
10
|
+
MzkyOGMxYzE3MTc4MzlmYzFkY2EzYTc0NjY5YWI1MGVmODAxZmRjYzVlMzU0
|
11
|
+
NDM3MzBjOWViZjdhNmFmMWE0NDg0NjJhYjAxNzk2M2NjZDMzODU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MThlZDg3ODEyM2IwNTY2NjY0YTg2MDliMmRiOTNiMWRjZjE3MTJlMDM5MDAy
|
14
|
+
YzBiYWI5Y2M4ODY2NWE4NmJhMjZhNDJiNDI0YjE0NTJlZWY4NGUxYzZhYTE5
|
15
|
+
NWE3MmRjNzZhYWRlZmZlMTU4MzE5YjFiOWYxZTNjNTYzOWE4ZTc=
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Dropdowns
|
4
4
|
|
5
|
-
Toggleable, contextual menu for displaying lists of links.
|
5
|
+
Toggleable, contextual menu for displaying lists of links.
|
6
6
|
|
7
7
|
Looking at just the dropdown menu, here's the required HTML. You need to wrap the dropdown's trigger and the dropdown menu within `.dropdown`. Then just create the menu.
|
8
8
|
|
@@ -43,7 +43,9 @@ Include this js after including rapido.js.
|
|
43
43
|
|
44
44
|
**Options** (with default values):
|
45
45
|
|
46
|
-
event:
|
46
|
+
event: click (click, hover)
|
47
|
+
wrapperClass: .dropdown
|
48
|
+
togglerClass: .dropdown__toggle
|
47
49
|
|
48
50
|
Styleguide 7
|
49
51
|
|
@@ -413,9 +413,9 @@ Markup:
|
|
413
413
|
<input type="text">
|
414
414
|
<div class="form__suggest">
|
415
415
|
<ul>
|
416
|
-
<li><a href="#">
|
417
|
-
<li><a href="#">Second line</a></li>
|
418
|
-
<li><a href="#">Third line</a></li>
|
416
|
+
<li><a href="#" title="First line">First line</a></li>
|
417
|
+
<li><a href="#" title="Second line">Second line</a></li>
|
418
|
+
<li><a href="#" title="Third line">Third line</a></li>
|
419
419
|
</ul>
|
420
420
|
</div>
|
421
421
|
</div>
|
@@ -433,6 +433,7 @@ Include this js after including rapido.js.
|
|
433
433
|
|
434
434
|
containerClass: .form__controls
|
435
435
|
suggestClass: .form__suggest
|
436
|
+
suggestAttr: title
|
436
437
|
|
437
438
|
Styleguide 8.6
|
438
439
|
|