magic_stylez 0.0.0.61 → 0.0.0.62
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 200101ff285e24bbca05b258fc89e1fe1924932c
|
4
|
+
data.tar.gz: d0ff99ff949967534c981abd7014a8a4896644b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62223ea2139080a36141e04207a310ee5f5471fa10019d54d8f45ad14e1683ad58480f47fb14ccad649be49e4287662ae805f598709d58f5897bba3be05ea569
|
7
|
+
data.tar.gz: 243bc94c4ef7b16c2b0fcb7811765ed8dfa045e23e2953341b64477b07613922b8239a440ae7daeacb003cfab11d9edeb946b6fd35df03640703d10c4d86f454
|
data/lib/magic_stylez/version.rb
CHANGED
@@ -7,25 +7,25 @@
|
|
7
7
|
// media min-width: 768px and max-width: 991px
|
8
8
|
@include responsiveStep-sm-only {
|
9
9
|
.press-sm { margin-bottom:20px; }
|
10
|
-
.hide-sm { display: none; }
|
10
|
+
.hide-sm { display: none !important; }
|
11
11
|
}
|
12
12
|
|
13
13
|
// media min-width: 992px and max-width: 1199px
|
14
14
|
@include responsiveStep-md-only {
|
15
15
|
.press-md { margin-bottom:20px; }
|
16
|
-
.hide-md { display: none; }
|
16
|
+
.hide-md { display: none !important; }
|
17
17
|
}
|
18
18
|
|
19
19
|
// media min-width: 1200px and max-width: 1599px
|
20
20
|
@include responsiveStep-lg-only {
|
21
21
|
.press-lg { margin-bottom:20px; }
|
22
|
-
.hide-lg { display: none; }
|
22
|
+
.hide-lg { display: none !important; }
|
23
23
|
}
|
24
24
|
|
25
25
|
// media min-width: 1600px
|
26
26
|
@include responsiveStep-xl {
|
27
27
|
.press-xl { margin-bottom:20px; }
|
28
|
-
.hide-xl { display: none; }
|
28
|
+
.hide-xl { display: none !important; }
|
29
29
|
}
|
30
30
|
|
31
31
|
|
@@ -1,3 +1,12 @@
|
|
1
1
|
@mixin blur-filter( $blur ) {
|
2
2
|
@include magic_prefixer(filter, blur(#{$blur}));
|
3
|
-
}
|
3
|
+
}
|
4
|
+
|
5
|
+
// http://demosthenes.info/blog/532/convert-images-to-black-and-white-with-css
|
6
|
+
@mixin black_and_white_img {
|
7
|
+
-webkit-filter: grayscale(100%);
|
8
|
+
filter: grayscale(100%);
|
9
|
+
filter: gray;
|
10
|
+
filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
|
11
|
+
}
|
12
|
+
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: magic_stylez
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.0.
|
4
|
+
version: 0.0.0.62
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Torsten Wetzel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-10-
|
11
|
+
date: 2014-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|