autoprefixer-rails 6.0.1 → 6.0.2
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 +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/autoprefixer-rails/version.rb +1 -1
- data/vendor/autoprefixer.js +5 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ecdafa17b8b28f29a5c2210f363d869917d8fdf
|
|
4
|
+
data.tar.gz: ddd384e601723d5e748c783692cd855f4c7fd9b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6407067913f372905009cb2030b2fd8a3d66d47522ddfb5a54011d1fd854c3903061286c6c7221973ad6c217a33c0dac2d4bb21b1a513c94f87ad3f49f5a3a49
|
|
7
|
+
data.tar.gz: 774d0ee66e920592dd706d5969322647473e0123d2a0601efccd1101c417a4b1f625452d4f2ce133de5dff846df8a7777ea0e6861062f81665993d1cfa99eb23
|
data/CHANGELOG.md
CHANGED
data/vendor/autoprefixer.js
CHANGED
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
|
|
82
82
|
feature(require('caniuse-db/features-json/border-radius'), function(browsers) {
|
|
83
83
|
return prefix('border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-right-radius', 'border-bottom-left-radius', {
|
|
84
|
-
mistakes: ['-ms-', '-o-'],
|
|
84
|
+
mistakes: ['-khtml-', '-ms-', '-o-'],
|
|
85
85
|
transition: true,
|
|
86
86
|
browsers: browsers
|
|
87
87
|
});
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
|
|
90
90
|
feature(require('caniuse-db/features-json/css-boxshadow'), function(browsers) {
|
|
91
91
|
return prefix('box-shadow', {
|
|
92
|
+
mistakes: ['-khtml-'],
|
|
92
93
|
transition: true,
|
|
93
94
|
browsers: browsers
|
|
94
95
|
});
|
|
@@ -96,14 +97,14 @@
|
|
|
96
97
|
|
|
97
98
|
feature(require('caniuse-db/features-json/css-animation'), function(browsers) {
|
|
98
99
|
return prefix('animation', 'animation-name', 'animation-duration', 'animation-delay', 'animation-direction', 'animation-fill-mode', 'animation-iteration-count', 'animation-play-state', 'animation-timing-function', '@keyframes', {
|
|
99
|
-
mistakes: ['-ms-'],
|
|
100
|
+
mistakes: ['-khtml-', '-ms-'],
|
|
100
101
|
browsers: browsers
|
|
101
102
|
});
|
|
102
103
|
});
|
|
103
104
|
|
|
104
105
|
feature(require('caniuse-db/features-json/css-transitions'), function(browsers) {
|
|
105
106
|
return prefix('transition', 'transition-property', 'transition-duration', 'transition-delay', 'transition-timing-function', {
|
|
106
|
-
mistakes: ['-ms-'],
|
|
107
|
+
mistakes: ['-khtml-', '-ms-'],
|
|
107
108
|
browsers: browsers
|
|
108
109
|
});
|
|
109
110
|
});
|
|
@@ -197,6 +198,7 @@
|
|
|
197
198
|
|
|
198
199
|
feature(require('caniuse-db/features-json/user-select-none'), function(browsers) {
|
|
199
200
|
return prefix('user-select', {
|
|
201
|
+
mistakes: ['-khtml-'],
|
|
200
202
|
browsers: browsers
|
|
201
203
|
});
|
|
202
204
|
});
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autoprefixer-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.0.
|
|
4
|
+
version: 6.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrey Sitnik
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-09-
|
|
11
|
+
date: 2015-09-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: execjs
|