illusion 2.2.0 → 2.2.1
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/sass/illusion/vendor/_responsivemenu.scss +17 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af0f2bb3442fcf9fb92306dd9b8886617841c183
|
|
4
|
+
data.tar.gz: be1122b1ad321a61844249006fa5437f70bea5c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 948018d50a17815f75d8fd8dcfa9b30f46f5b7dc90bb4a3fbf0455f19b32bfc97f48f415e20efa580da3d73c98be8aa07293dece6cf9bd085c5b6a492970294f
|
|
7
|
+
data.tar.gz: d93aa634bf1046c812d25278861572992119416df304a363e89e1374f30ab7c3a626b290f376719da0eb2fc1a7868fd75450b3fc9fe8eb49cdcaa43fb57e9f6b
|
|
@@ -39,6 +39,11 @@
|
|
|
39
39
|
z-index: 9;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
+
// Focus items
|
|
43
|
+
.focused {
|
|
44
|
+
overflow: visible !important;
|
|
45
|
+
}
|
|
46
|
+
|
|
42
47
|
/* Extend the accessible hide class to the closed class */
|
|
43
48
|
/* Only when JS is enabled since we add the closed class in the markup */
|
|
44
49
|
/* And we want the menu to be open when JS is disabled/broken */
|
|
@@ -48,6 +53,11 @@
|
|
|
48
53
|
}
|
|
49
54
|
}
|
|
50
55
|
|
|
56
|
+
/* hide the buttons when closed so they wont show up in tabindex */
|
|
57
|
+
button.closed {
|
|
58
|
+
display: none;
|
|
59
|
+
}
|
|
60
|
+
|
|
51
61
|
/* The menu itself */
|
|
52
62
|
.navigation_container {
|
|
53
63
|
|
|
@@ -78,9 +88,12 @@
|
|
|
78
88
|
ul.closed, // For JS disabled/broken browsers
|
|
79
89
|
ul.fullmenu { // For all the other ones
|
|
80
90
|
|
|
91
|
+
li {
|
|
92
|
+
overflow: hidden;
|
|
93
|
+
}
|
|
94
|
+
|
|
81
95
|
/* Hide li ul when JS is enabled and screen is big */
|
|
82
96
|
li ul {
|
|
83
|
-
display: none;
|
|
84
97
|
position: absolute;
|
|
85
98
|
left: 0;
|
|
86
99
|
top: 100%;
|
|
@@ -94,8 +107,9 @@
|
|
|
94
107
|
}
|
|
95
108
|
|
|
96
109
|
/* And show on hover */
|
|
97
|
-
li:hover
|
|
98
|
-
|
|
110
|
+
li:hover,
|
|
111
|
+
li:focus {
|
|
112
|
+
overflow: visible;
|
|
99
113
|
}
|
|
100
114
|
}
|
|
101
115
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: illusion
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom Janssens
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-10-
|
|
11
|
+
date: 2014-10-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|