middleman-oulu 0.6.15 → 0.6.16
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e7a7660797ea90ca368d8c5a79f02ce2b4a6490
|
4
|
+
data.tar.gz: 97c1763ef7ae146250277efdfdc7b40398eba071
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5c80fe30c4a7143f0d1af8aa5bab4e5bc95e2936f25e457ecdc8c1c3cba1c1bbec59c597b514fc51a4761d33137f193eaceaf8511075c5d92a5eded2012ba03
|
7
|
+
data.tar.gz: f6d1cd9c6826b46ae2e38b04c3f3ccde3b3c97680f55c4c08770462003745b5858b0a1f3839cf6ab264e5b39188bf8981cd61d4b7016400afac0b44549d062d9
|
@@ -23,6 +23,7 @@ $screen-lg-desktop: $screen-lg-min !default
|
|
23
23
|
$screen-xs-max: ($screen-sm-min - 1) !default
|
24
24
|
$screen-sm-max: ($screen-md-min - 1) !default
|
25
25
|
$screen-md-max: ($screen-lg-min - 1) !default
|
26
|
+
$screen-lg-max: ($screen-lg-min - 1) !default
|
26
27
|
|
27
28
|
// device
|
28
29
|
=screen-xs
|
@@ -42,7 +42,7 @@
|
|
42
42
|
// Visibility utilities
|
43
43
|
// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0
|
44
44
|
|
45
|
-
+responsive-invisibility(".visible-xs, .visible-sm, .visible-md, .visible-lg")
|
45
|
+
+responsive-invisibility(".visible-xs, .visible-sm, .visible-md, .visible-lg, .visible-xl")
|
46
46
|
|
47
47
|
.visible-xs-block,
|
48
48
|
.visible-xs-inline,
|
@@ -55,7 +55,10 @@
|
|
55
55
|
.visible-md-inline-block,
|
56
56
|
.visible-lg-block,
|
57
57
|
.visible-lg-inline,
|
58
|
-
.visible-lg-inline-block
|
58
|
+
.visible-lg-inline-block,
|
59
|
+
.visible-xl-block,
|
60
|
+
.visible-xl-inline,
|
61
|
+
.visible-xl-inline-block
|
59
62
|
display: none !important
|
60
63
|
|
61
64
|
@media (max-width: $screen-xs-max)
|
@@ -107,17 +110,32 @@
|
|
107
110
|
+responsive-visibility(".visible-lg")
|
108
111
|
|
109
112
|
.visible-lg-block
|
110
|
-
@media (min-width: $screen-lg-min)
|
113
|
+
@media (min-width: $screen-md-max) and (max-width: $screen-lg-min)
|
111
114
|
display: block !important
|
112
115
|
|
113
116
|
.visible-lg-inline
|
114
|
-
@media (min-width: $screen-lg-min)
|
117
|
+
@media (min-width: $screen-md-max) and (max-width: $screen-lg-min)
|
115
118
|
display: inline !important
|
116
119
|
|
117
120
|
.visible-lg-inline-block
|
118
|
-
@media (min-width: $screen-lg-min)
|
121
|
+
@media (min-width: $screen-md-max) and (max-width: $screen-lg-min)
|
122
|
+
display: inline-block !important
|
123
|
+
|
124
|
+
.visible-xl-block
|
125
|
+
@media (min-width: $screen-lg-max)
|
126
|
+
display: block !important
|
127
|
+
|
128
|
+
.visible-xl-inline
|
129
|
+
@media (min-width: $screen-lg-max)
|
130
|
+
display: inline !important
|
131
|
+
|
132
|
+
.visible-xl-inline-block
|
133
|
+
@media (min-width: $screen-lg-max)
|
119
134
|
display: inline-block !important
|
120
135
|
|
136
|
+
|
137
|
+
|
138
|
+
|
121
139
|
@media (max-width: $screen-xs-max)
|
122
140
|
+responsive-invisibility(".hidden-xs")
|
123
141
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: middleman-oulu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.16
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- machida
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-05-
|
11
|
+
date: 2015-05-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|