dfm_web 2.0.1 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/dfm_web/pure/visibility.css +5 -5
- data/lib/dfm_web/version.rb +2 -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: 7327864c57572b907993848a8aad01645efd727b
|
4
|
+
data.tar.gz: e268390cb1e45a452adc22f860290222e2f0cbfe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 63a663872fdf2f9431bd2128aead258d23199e6bd9d22b04a4d6064fe613874129068b4a14e354e0c70f3280d297f0f3c3cb45fa0d4d84d51e71216d78dc2ce4
|
7
|
+
data.tar.gz: bc882c9baca0616031a92a0ae18b3888fa4934e89f8ea1e9a644e3831c9a3c5f41a41de8454eee4db0bc96d812a55930409a6fadd54996bd3d4cf5b1cf3ef2a0
|
@@ -31,7 +31,7 @@ show-for-xlarge-only
|
|
31
31
|
.show-for-small-only{display:none !important;}
|
32
32
|
.show-for-medium-only{display:none !important;}
|
33
33
|
.show-for-large-only{display:none !important;}
|
34
|
-
.show-for-xlarge-only{}
|
34
|
+
.show-for-xlarge-only{display:inherit !important;}
|
35
35
|
}
|
36
36
|
|
37
37
|
/* Pure Large (iPad Landscape) */
|
@@ -41,7 +41,7 @@ show-for-xlarge-only
|
|
41
41
|
.show-for-xsmall-only{display:none !important;}
|
42
42
|
.show-for-small-only{display:none !important;}
|
43
43
|
.show-for-medium-only{display:none !important;}
|
44
|
-
.show-for-large-only{}
|
44
|
+
.show-for-large-only{display:inherit !important;}
|
45
45
|
.show-for-xlarge-only{display:none !important;}
|
46
46
|
}
|
47
47
|
|
@@ -58,7 +58,7 @@ show-for-xlarge-only
|
|
58
58
|
}
|
59
59
|
|
60
60
|
/* Pure Small */
|
61
|
-
@media screen and (max-width:
|
61
|
+
@media screen and (max-width:640px) {
|
62
62
|
.show-for-medium-up{display:none !important;}
|
63
63
|
.show-for-large-up{display:none !important;}
|
64
64
|
.show-for-xlarge-up{display:none !important;}
|
@@ -71,13 +71,13 @@ show-for-xlarge-only
|
|
71
71
|
}
|
72
72
|
|
73
73
|
/* Pure Extra Small */
|
74
|
-
@media screen and (max-width:
|
74
|
+
@media screen and (max-width:400px) {
|
75
75
|
.show-for-small-up{display:none !important;}
|
76
76
|
.show-for-medium-up{display:none !important;}
|
77
77
|
.show-for-large-up{display:none !important;}
|
78
78
|
.show-for-xlarge-up{display:none !important;}
|
79
79
|
|
80
|
-
.show-for-xsmall-only{}
|
80
|
+
.show-for-xsmall-only{display:inherit !important;}
|
81
81
|
.show-for-small-only{display:none !important;}
|
82
82
|
.show-for-medium-only{display:none !important;}
|
83
83
|
.show-for-large-only{display:none !important;}
|
data/lib/dfm_web/version.rb
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
module DfmWeb
|
2
|
-
VERSION = "2.0.
|
2
|
+
VERSION = "2.0.2"
|
3
3
|
end
|
4
4
|
|
5
5
|
|
6
6
|
# Version History
|
7
7
|
|
8
|
+
# 2.0.2 Made small and extra small a little smaller.
|
8
9
|
# 2.0.1 Switched from em to px for visibility classes. No more 1px deadzones. Rightmost nav can be a menu now.
|
9
10
|
# 2.0.0 Near total rewrite of Nav. Smarter and more foolproof. NOTE: Removes optional div/a menus and leaves only the ul/li style.
|
10
11
|
# 1.1.1 Added dfm_web assets to the pipeline so you don't have to.
|