spectre_scss 0.4.6.0 → 0.4.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/spectre_scss/version.rb +1 -1
- data/vendor/assets/stylesheets/spectre/_buttons.scss +9 -0
- data/vendor/assets/stylesheets/spectre/_carousels.scss +1 -0
- data/vendor/assets/stylesheets/spectre/_comparison-sliders.scss +1 -0
- data/vendor/assets/stylesheets/spectre/_forms.scss +1 -1
- data/vendor/assets/stylesheets/spectre/_mixins.scss +1 -4
- data/vendor/assets/stylesheets/spectre/_parallax.scss +5 -0
- data/vendor/assets/stylesheets/spectre/_variables.scss +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: 1ea1d1c484c013cf10eefca580489847af1dd951
|
4
|
+
data.tar.gz: c162d74dbea4ab72fd64452d810d1756d7b62ebf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec24b709043beb84abbf250c2fe0346d0e6670f1fd356dcf3b4c2f5a92e8579fc6f2bf26ac7b52c2fdb698c4810332c339520d63ad529b0fabb2dc10e77ddb34
|
7
|
+
data.tar.gz: 77aedf675b407e0e5e778039892bb9a22e3c9ce38cd7f9069779627c6ef03e167f83b9742b8e5856aafb1562d9f4dc324a53d5b2728b9a8b286df51a8307140b
|
data/lib/spectre_scss/version.rb
CHANGED
@@ -9,6 +9,7 @@ $parallax-fade-color: rgba(255, 255, 255, .35) !default;
|
|
9
9
|
// Mixin: Parallax direction
|
10
10
|
@mixin parallax-dir() {
|
11
11
|
height: 50%;
|
12
|
+
outline: none;
|
12
13
|
position: absolute;
|
13
14
|
width: 50%;
|
14
15
|
z-index: $zindex-1;
|
@@ -61,6 +62,7 @@ $parallax-fade-color: rgba(255, 255, 255, .35) !default;
|
|
61
62
|
left: 0;
|
62
63
|
top: 0;
|
63
64
|
|
65
|
+
&:focus ~ .parallax-content,
|
64
66
|
&:hover ~ .parallax-content {
|
65
67
|
transform: perspective($parallax-perspective) rotateX($parallax-deg) rotateY(-$parallax-deg);
|
66
68
|
|
@@ -79,6 +81,7 @@ $parallax-fade-color: rgba(255, 255, 255, .35) !default;
|
|
79
81
|
right: 0;
|
80
82
|
top: 0;
|
81
83
|
|
84
|
+
&:focus ~ .parallax-content,
|
82
85
|
&:hover ~ .parallax-content {
|
83
86
|
transform: perspective($parallax-perspective) rotateX($parallax-deg) rotateY($parallax-deg);
|
84
87
|
|
@@ -97,6 +100,7 @@ $parallax-fade-color: rgba(255, 255, 255, .35) !default;
|
|
97
100
|
bottom: 0;
|
98
101
|
left: 0;
|
99
102
|
|
103
|
+
&:focus ~ .parallax-content,
|
100
104
|
&:hover ~ .parallax-content {
|
101
105
|
transform: perspective($parallax-perspective) rotateX(-$parallax-deg) rotateY(-$parallax-deg);
|
102
106
|
|
@@ -115,6 +119,7 @@ $parallax-fade-color: rgba(255, 255, 255, .35) !default;
|
|
115
119
|
bottom: 0;
|
116
120
|
right: 0;
|
117
121
|
|
122
|
+
&:focus ~ .parallax-content,
|
118
123
|
&:hover ~ .parallax-content {
|
119
124
|
transform: perspective($parallax-perspective) rotateX(-$parallax-deg) rotateY($parallax-deg);
|
120
125
|
|