oulu-rails 0.6.15 → 0.6.16

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: a3c889ffb5a33b8ec2ac3914515a9300a4986ef8
4
- data.tar.gz: 65662a4b4f13e4b92e6ea87b1008817e6b64f58d
3
+ metadata.gz: e79d3bd408946164dc4412609835f563240345ca
4
+ data.tar.gz: c2bbb067cad1d49e8c61481b759d4bd12b3299e9
5
5
  SHA512:
6
- metadata.gz: 396de6e746bec064d65407f620d56cf702612d43efce1ed309229b002bc90f162537984f3193e48929a1beec2435f7572f7491334127def7c99eb9d4e2e296e6
7
- data.tar.gz: b8e0d86c61138d4236eb5a89063093038d154444769ff72510a53e75e7931341150bd60292d0fea258dda382fb035296807e89c9cf04686e2bac0cc1aa53b112
6
+ metadata.gz: c134a98f590e27fe903100c04fc1b0773429dfd8b77a441bea3660347aa0aebd6f6a559bc23ad310262624117d6d5528071f5590d0cf52ccd422f45e2a9c698e
7
+ data.tar.gz: 917545ef600c73806a2a52c21d0d760f268a048967d0a07c26b3a23513852b5a3da4fef5f5d34e40aba501190b7300420b3bad2cfcd4c96dd61e12be05cbbbdb
@@ -1,3 +1,3 @@
1
1
  module OuluRails
2
- VERSION = "0.6.15"
2
+ VERSION = "0.6.16"
3
3
  end
@@ -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: oulu-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.15
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-12 00:00:00.000000000 Z
11
+ date: 2015-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass-rails