compass-flexbox 1.1.2 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -15
- data/stylesheets/_flexbox.scss +6 -3
- metadata +43 -48
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
|
-
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
NWYxOTdlZDMwZWMzMzNjZmYyNGMwOGYyYWZlNzY2ZWNlN2VjZmZkNWZiMmEx
|
10
|
-
NzQzMmE4YzlhYzZlNDYwMDk5YmE1N2Q0ZGQzNDRjYTdkMWM2OTE1NjQyNTIz
|
11
|
-
NDlkYjY3YTQyM2I0OTBlNjQ3ZWEzZjE5MmVjOGM3NThlZjk0ZmY=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
YzNhY2E0ZDI3M2E4MDEwNThhOTAzN2RjOWRmODliMDY1NmZlNWI1ZTk3YzE3
|
14
|
-
NDYyNzJjOWY0MzczNGNlNjczOGMxZGIwMzYzMDg4YTgzZTA5NDI5Y2MzZDEz
|
15
|
-
N2ZkYzQ3NTY4Y2NiOTg2MjQ3ZjJjYjJjZjRlMjE4Y2E5ZDA0ZWU=
|
1
|
+
---
|
2
|
+
SHA512:
|
3
|
+
metadata.gz: 89c7040113ae3f7a17e06f8aedc741726ec745488e93f8aa4593edc73c64f5a9d5241f2d8feb3ef832af5040a54447e43fbbee986012dfc81c767c0bc9da57eb
|
4
|
+
data.tar.gz: 16296c34be3c23cca7b30d1aa305d8dd8a2ef2d7563e96c3a8f527b01194d9a3813c6a56a67c4a90d2e9d77d039665f8a44ec984276994dd3831163f2f9588fd
|
5
|
+
SHA1:
|
6
|
+
metadata.gz: 779f185ce9b07de7da54e591212367e6cf1db1f0
|
7
|
+
data.tar.gz: 07682039aca401dd4cb643ba4d31d4596b878f00
|
data/stylesheets/_flexbox.scss
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
$flexbox-legacy-support: -moz, -webkit, not -o, not -ms, not -khtml, not official;
|
4
4
|
$flexbox-ie-support: not -moz, not -webkit, not -o, -ms, not -khtml, not official;
|
5
5
|
$flexbox-standard-support: not -moz, -webkit, not -o, not -ms, not -khtml, official;
|
6
|
+
$flexbox-display-warnings: true !default;
|
6
7
|
|
7
8
|
// Enabling flexbox: setting an element to be a flex container
|
8
9
|
@mixin display-flex() {
|
@@ -150,7 +151,7 @@ $default-flex-flow: $default-flex-direction $default-flex-wrap !default;
|
|
150
151
|
}
|
151
152
|
@include experimental($legacy-property, $legacy-value, $flexbox-legacy-support...);
|
152
153
|
}
|
153
|
-
} @else {
|
154
|
+
} @else if($flexbox-display-warnings) {
|
154
155
|
@warn _support-warning($standard-property, "legacy");
|
155
156
|
}
|
156
157
|
|
@@ -279,7 +280,9 @@ $default-flex-flow: $default-flex-direction $default-flex-wrap !default;
|
|
279
280
|
}
|
280
281
|
@else if $value == wrap {
|
281
282
|
@if $syntax == legacy {
|
282
|
-
@
|
283
|
+
@if($flexbox-display-warnings) {
|
284
|
+
@warn "\"#{$property}: #{$value}\" is not supported consistently in the \"#{$syntax}\" syntax";
|
285
|
+
}
|
283
286
|
$flexbox-new-value: multiple;
|
284
287
|
}
|
285
288
|
}
|
@@ -290,7 +293,7 @@ $default-flex-flow: $default-flex-direction $default-flex-wrap !default;
|
|
290
293
|
}
|
291
294
|
}
|
292
295
|
|
293
|
-
@if $flexbox-new-value == null or $flexbox-warning {
|
296
|
+
@if ($flexbox-new-value == null or $flexbox-warning) and $flexbox-display-warnings {
|
294
297
|
@warn if($flexbox-warning, $flexbox-warning, _support-warning("#{$property}: #{$value}", $syntax));
|
295
298
|
}
|
296
299
|
|
metadata
CHANGED
@@ -1,79 +1,74 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-flexbox
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.3
|
5
5
|
platform: ruby
|
6
|
-
authors:
|
6
|
+
authors:
|
7
7
|
- Tim Hettler
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
|
12
|
-
|
13
|
-
|
11
|
+
|
12
|
+
date: 2013-12-04 00:00:00 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
14
15
|
name: sass
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ! '>='
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '0'
|
20
|
-
type: :runtime
|
21
16
|
prerelease: false
|
22
|
-
|
23
|
-
requirements:
|
24
|
-
-
|
25
|
-
-
|
26
|
-
|
27
|
-
|
28
|
-
name: compass
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ! '>='
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
17
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- &id002
|
20
|
+
- ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: "0"
|
34
23
|
type: :runtime
|
24
|
+
version_requirements: *id001
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: compass
|
35
27
|
prerelease: false
|
36
|
-
|
37
|
-
requirements:
|
38
|
-
-
|
39
|
-
|
40
|
-
|
41
|
-
description: A compass extension that provides variables & mixins for the latest Flexible
|
42
|
-
|
43
|
-
email:
|
28
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- *id002
|
31
|
+
type: :runtime
|
32
|
+
version_requirements: *id003
|
33
|
+
description: A compass extension that provides variables & mixins for the latest Flexible Box Layout (flexbox) specification
|
34
|
+
email:
|
44
35
|
- me+github@timhettler.com
|
45
36
|
executables: []
|
37
|
+
|
46
38
|
extensions: []
|
39
|
+
|
47
40
|
extra_rdoc_files: []
|
48
|
-
|
41
|
+
|
42
|
+
files:
|
49
43
|
- lib/compass-flexbox.rb
|
50
44
|
- stylesheets/_flexbox.scss
|
51
45
|
- templates/example/compass-flexbox.html
|
52
46
|
- templates/example/compass-flexbox.scss
|
53
47
|
- templates/example/manifest.rb
|
54
48
|
homepage: https://github.com/timhettler/compass-flexbox
|
55
|
-
licenses:
|
49
|
+
licenses:
|
56
50
|
- MIT
|
57
51
|
metadata: {}
|
52
|
+
|
58
53
|
post_install_message:
|
59
54
|
rdoc_options: []
|
60
|
-
|
55
|
+
|
56
|
+
require_paths:
|
61
57
|
- lib
|
62
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
63
|
-
requirements:
|
64
|
-
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
- - ! '>='
|
70
|
-
- !ruby/object:Gem::Version
|
58
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- *id002
|
61
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
71
65
|
version: 1.3.6
|
72
66
|
requirements: []
|
67
|
+
|
73
68
|
rubyforge_project:
|
74
|
-
rubygems_version: 2.1.
|
69
|
+
rubygems_version: 2.1.11
|
75
70
|
signing_key:
|
76
71
|
specification_version: 4
|
77
|
-
summary: A compass extension that provides variables & mixins for the latest Flexible
|
78
|
-
Box Layout (flexbox) specification
|
72
|
+
summary: A compass extension that provides variables & mixins for the latest Flexible Box Layout (flexbox) specification
|
79
73
|
test_files: []
|
74
|
+
|