stylecow-plugin-prefixes
Advanced tools
Comparing version 4.0.1 to 4.1.0
@@ -6,10 +6,15 @@ module.exports = function (stylecow) { | ||
require('./src/border')(stylecow); | ||
require('./src/box-decoration-break')(stylecow); | ||
require('./src/box-shadow')(stylecow); | ||
require('./src/box-sizing')(stylecow); | ||
require('./src/calc')(stylecow); | ||
require('./src/clip-path')(stylecow); | ||
require('./src/column')(stylecow); | ||
require('./src/cursor')(stylecow); | ||
require('./src/document')(stylecow); | ||
require('./src/exclusions')(stylecow); | ||
require('./src/fullscreen')(stylecow); | ||
require('./src/grid')(stylecow); | ||
require('./src/image-rendering')(stylecow); | ||
require('./src/image-set')(stylecow); | ||
require('./src/inline-block')(stylecow); | ||
@@ -21,2 +26,5 @@ require('./src/linear-gradient')(stylecow); | ||
require('./src/region')(stylecow); | ||
require('./src/repeating-linear-gradient')(stylecow); | ||
require('./src/scroll-snap-points')(stylecow); | ||
require('./src/shapes')(stylecow); | ||
require('./src/sizing')(stylecow); | ||
@@ -23,0 +31,0 @@ require('./src/sticky')(stylecow); |
{ | ||
"name": "stylecow-plugin-prefixes", | ||
"description": "Stylecow plugin to add vendor prefixes automatically.", | ||
"version": "4.0.1", | ||
"author": "Oscar Otero <oom@oscarotero.com>", | ||
"homepage": "https://github.com/stylecow/stylecow-plugin-prefixes", | ||
"bugs": "https://github.com/stylecow/stylecow-plugin-prefixes/issues", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/stylecow/stylecow-plugin-prefixes.git" | ||
}, | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "mocha tests/cases.js" | ||
}, | ||
"devDependencies": { | ||
"stylecow": "6.*" | ||
}, | ||
"license": "MIT" | ||
"name": "stylecow-plugin-prefixes", | ||
"description": "Stylecow plugin to add vendor prefixes automatically.", | ||
"version": "4.1.0", | ||
"author": "Oscar Otero <oom@oscarotero.com>", | ||
"homepage": "https://github.com/stylecow/stylecow-plugin-prefixes", | ||
"bugs": "https://github.com/stylecow/stylecow-plugin-prefixes/issues", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/stylecow/stylecow-plugin-prefixes.git" | ||
}, | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "mocha tests/cases.js" | ||
}, | ||
"devDependencies": { | ||
"mocha": "^2.2.5", | ||
"stylecow": "6.*" | ||
}, | ||
"license": "MIT" | ||
} |
@@ -69,3 +69,3 @@ module.exports = function (stylecow) { | ||
stylecow.forBrowsersLowerThan({ | ||
chrome: false, | ||
chrome: 43, | ||
safari: false, | ||
@@ -72,0 +72,0 @@ android: false, |
@@ -58,2 +58,32 @@ module.exports = function (stylecow) { | ||
forBrowsersLowerThan: { | ||
chrome: 37.0, | ||
opera: 24.0, | ||
safari: false, | ||
android: false, | ||
ios: false | ||
}, | ||
filter: { | ||
type: 'Declaration', | ||
name: 'cursor' | ||
}, | ||
fn: function (declaration) { | ||
if (declaration.has({ | ||
type: 'Keyword', | ||
name: ['zoom-in', 'zoom-out'] | ||
})) { | ||
declaration | ||
.cloneBefore() | ||
.get({ | ||
type: 'Keyword', | ||
name: ['zoom-in', 'zoom-out'] | ||
}) | ||
.setVendor('webkit'); | ||
} | ||
} | ||
}); | ||
//Adds -webkit- vendor prefix to some cursor values | ||
stylecow.addTask({ | ||
forBrowsersLowerThan: { | ||
chrome: false, | ||
@@ -71,3 +101,3 @@ safari: false, | ||
type: 'Keyword', | ||
name: ['zoom-in', 'zoom-out', 'grab', 'grabbing'] | ||
name: ['grab', 'grabbing'] | ||
})) { | ||
@@ -78,3 +108,3 @@ declaration | ||
type: 'Keyword', | ||
name: ['zoom-in', 'zoom-out', 'grab', 'grabbing'] | ||
name: ['grab', 'grabbing'] | ||
}) | ||
@@ -81,0 +111,0 @@ .setVendor('webkit'); |
@@ -23,5 +23,6 @@ module.exports = function (stylecow) { | ||
forBrowsersLowerThan: { | ||
chrome: false, | ||
chrome: 36.0, | ||
opera: 23.0, | ||
safari: false, | ||
android: false, | ||
android: 40.0, | ||
ios: false | ||
@@ -28,0 +29,0 @@ }, |
@@ -12,3 +12,2 @@ module.exports = function (stylecow) { | ||
'text-align-last', | ||
'font-feature-settings', | ||
'hyphens', | ||
@@ -25,2 +24,18 @@ 'tab-size' | ||
// Adds -moz- vendor prefix to font-feature-settings | ||
stylecow.addTask({ | ||
forBrowsersLowerThan: { | ||
firefox: 36 | ||
}, | ||
filter: { | ||
type: 'Declaration', | ||
name: 'font-feature-settings' | ||
}, | ||
fn: function (declaration) { | ||
declaration | ||
.cloneBefore() | ||
.setVendor('moz'); | ||
} | ||
}); | ||
@@ -103,2 +118,58 @@ // Adds -webkit- vendor prefix | ||
}); | ||
// Adds -webkit- vendor prefix to font-kerning | ||
stylecow.addTask({ | ||
forBrowsersLowerThan: { | ||
chrome: 33.0, | ||
safari: false, | ||
opera: 20, | ||
ios: false, | ||
android: 4.5, | ||
}, | ||
filter: { | ||
type: 'Declaration', | ||
name: 'font-kerning' | ||
}, | ||
fn: function (declaration) { | ||
declaration | ||
.cloneBefore() | ||
.setVendor('webkit'); | ||
} | ||
}); | ||
// Adds -moz- vendor prefix to text-decoration | ||
stylecow.addTask({ | ||
forBrowsersLowerThan: { | ||
firefox: 36.0 | ||
}, | ||
filter: { | ||
type: 'Declaration', | ||
name: ['text-decoration-line', 'text-decoration-color', 'text-decoration-style'] | ||
}, | ||
fn: function (declaration) { | ||
declaration | ||
.cloneBefore() | ||
.setVendor('moz'); | ||
} | ||
}); | ||
// Adds -webkit- vendor prefix to text-decoration | ||
stylecow.addTask({ | ||
forBrowsersLowerThan: { | ||
safari: false, | ||
ios: false | ||
}, | ||
filter: { | ||
type: 'Declaration', | ||
name: ['text-decoration-line', 'text-decoration-color', 'text-decoration-style'] | ||
}, | ||
fn: function (declaration) { | ||
declaration | ||
.cloneBefore() | ||
.setVendor('webkit'); | ||
} | ||
}); | ||
}; |
@@ -7,3 +7,3 @@ { | ||
"name": "keyframes", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -196,3 +196,3 @@ { | ||
"name": "keyframes", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -405,3 +405,3 @@ { | ||
"name": "animation", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -470,3 +470,3 @@ { | ||
"name": "animation", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -473,0 +473,0 @@ { |
@@ -27,3 +27,3 @@ { | ||
"name": "appearance", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -45,3 +45,3 @@ { | ||
"name": "appearance", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -48,0 +48,0 @@ { |
@@ -27,3 +27,3 @@ { | ||
"name": "background-size", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -62,3 +62,3 @@ { | ||
"name": "background-size", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -97,3 +97,3 @@ { | ||
"name": "background-origin", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -132,3 +132,3 @@ { | ||
"name": "background-origin", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -167,3 +167,3 @@ { | ||
"name": "background-clip", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -202,3 +202,3 @@ { | ||
"name": "background-clip", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -205,0 +205,0 @@ { |
@@ -27,3 +27,3 @@ { | ||
"name": "border-radius", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -50,3 +50,3 @@ { | ||
"name": "border-radius", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -94,4 +94,4 @@ { | ||
"class": "Declaration", | ||
"name": "border-radius-topleft", | ||
"vendor": "moz", | ||
"name": "border-top-left-radius", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -117,4 +117,4 @@ { | ||
"class": "Declaration", | ||
"name": "border-top-left-radius", | ||
"vendor": "webkit", | ||
"name": "border-radius-topleft", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -187,3 +187,3 @@ { | ||
"name": "border-start", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -220,3 +220,3 @@ { | ||
"name": "border-start", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -285,3 +285,3 @@ { | ||
"name": "border-end-color", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -303,3 +303,3 @@ { | ||
"name": "border-end-color", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -470,3 +470,3 @@ { | ||
"name": "border-image", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -543,3 +543,3 @@ { | ||
"name": "border-image", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -546,0 +546,0 @@ { |
@@ -27,3 +27,3 @@ { | ||
"name": "box-shadow", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -103,3 +103,3 @@ { | ||
"name": "box-shadow", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -106,0 +106,0 @@ { |
@@ -27,3 +27,3 @@ { | ||
"name": "box-sizing", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -45,3 +45,3 @@ { | ||
"name": "box-sizing", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -48,0 +48,0 @@ { |
@@ -35,3 +35,3 @@ { | ||
"name": "calc", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -84,3 +84,3 @@ { | ||
"name": "calc", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -87,0 +87,0 @@ { |
@@ -27,3 +27,3 @@ { | ||
"name": "columns", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -49,3 +49,3 @@ { | ||
"name": "columns", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -92,3 +92,3 @@ { | ||
"name": "column-rule", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -125,3 +125,3 @@ { | ||
"name": "column-rule", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -190,3 +190,3 @@ { | ||
"name": "column-gap", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -213,3 +213,3 @@ { | ||
"name": "column-gap", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -216,0 +216,0 @@ { |
@@ -35,3 +35,3 @@ { | ||
"name": "zoom-in", | ||
"vendor": "moz" | ||
"vendor": "webkit" | ||
} | ||
@@ -53,3 +53,3 @@ ] | ||
"name": "zoom-in", | ||
"vendor": "webkit" | ||
"vendor": "moz" | ||
} | ||
@@ -112,3 +112,3 @@ ] | ||
"name": "grabbing", | ||
"vendor": "moz" | ||
"vendor": "webkit" | ||
} | ||
@@ -130,3 +130,3 @@ ] | ||
"name": "grabbing", | ||
"vendor": "webkit" | ||
"vendor": "moz" | ||
} | ||
@@ -133,0 +133,0 @@ ] |
@@ -19,4 +19,4 @@ { | ||
"class": "PseudoClass", | ||
"name": "full-screen", | ||
"vendor": "moz" | ||
"name": "fullscreen", | ||
"vendor": "ms" | ||
} | ||
@@ -112,4 +112,4 @@ ] | ||
"class": "PseudoClass", | ||
"name": "fullscreen", | ||
"vendor": "ms" | ||
"name": "full-screen", | ||
"vendor": "moz" | ||
} | ||
@@ -116,0 +116,0 @@ ] |
@@ -34,4 +34,4 @@ { | ||
"class": "Function", | ||
"name": "linear-gradient", | ||
"vendor": "moz", | ||
"name": "gradient", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -43,4 +43,19 @@ { | ||
"class": "Keyword", | ||
"name": "linear", | ||
"vendor": null | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Keyword", | ||
"name": "left", | ||
"vendor": null | ||
}, | ||
{ | ||
"class": "Keyword", | ||
"name": "top", | ||
"vendor": null | ||
} | ||
@@ -53,4 +68,19 @@ ] | ||
{ | ||
"class": "Keyword", | ||
"name": "right", | ||
"vendor": null | ||
}, | ||
{ | ||
"class": "Keyword", | ||
"name": "top", | ||
"vendor": null | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Function", | ||
"name": "rgba", | ||
"name": "from", | ||
"vendor": null, | ||
@@ -62,33 +92,45 @@ "children": [ | ||
{ | ||
"class": "Number", | ||
"name": 0 | ||
"class": "Function", | ||
"name": "rgba", | ||
"vendor": null, | ||
"children": [ | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Number", | ||
"name": 0 | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Number", | ||
"name": 20 | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Number", | ||
"name": 10 | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Number", | ||
"name": 0.5 | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Number", | ||
"name": 20 | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Number", | ||
"name": 10 | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Number", | ||
"name": 0.5 | ||
} | ||
] | ||
} | ||
@@ -103,5 +145,17 @@ ] | ||
{ | ||
"class": "Keyword", | ||
"name": "blue", | ||
"vendor": null | ||
"class": "Function", | ||
"name": "to", | ||
"vendor": null, | ||
"children": [ | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Keyword", | ||
"name": "blue", | ||
"vendor": null | ||
} | ||
] | ||
} | ||
] | ||
} | ||
@@ -127,3 +181,3 @@ ] | ||
"name": "linear-gradient", | ||
"vendor": "o", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -215,3 +269,3 @@ { | ||
"name": "linear-gradient", | ||
"vendor": "webkit", | ||
"vendor": "o", | ||
"children": [ | ||
@@ -302,4 +356,4 @@ { | ||
"class": "Function", | ||
"name": "gradient", | ||
"vendor": "webkit", | ||
"name": "linear-gradient", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -311,19 +365,4 @@ { | ||
"class": "Keyword", | ||
"name": "linear", | ||
"vendor": null | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Keyword", | ||
"name": "left", | ||
"vendor": null | ||
}, | ||
{ | ||
"class": "Keyword", | ||
"name": "top", | ||
"vendor": null | ||
} | ||
@@ -336,19 +375,4 @@ ] | ||
{ | ||
"class": "Keyword", | ||
"name": "right", | ||
"vendor": null | ||
}, | ||
{ | ||
"class": "Keyword", | ||
"name": "top", | ||
"vendor": null | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Function", | ||
"name": "from", | ||
"name": "rgba", | ||
"vendor": null, | ||
@@ -360,45 +384,33 @@ "children": [ | ||
{ | ||
"class": "Function", | ||
"name": "rgba", | ||
"vendor": null, | ||
"children": [ | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Number", | ||
"name": 0 | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Number", | ||
"name": 20 | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Number", | ||
"name": 10 | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Number", | ||
"name": 0.5 | ||
} | ||
] | ||
} | ||
] | ||
"class": "Number", | ||
"name": 0 | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Number", | ||
"name": 20 | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Number", | ||
"name": 10 | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Number", | ||
"name": 0.5 | ||
} | ||
] | ||
} | ||
@@ -413,17 +425,5 @@ ] | ||
{ | ||
"class": "Function", | ||
"name": "to", | ||
"vendor": null, | ||
"children": [ | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Keyword", | ||
"name": "blue", | ||
"vendor": null | ||
} | ||
] | ||
} | ||
] | ||
"class": "Keyword", | ||
"name": "blue", | ||
"vendor": null | ||
} | ||
@@ -430,0 +430,0 @@ ] |
@@ -23,4 +23,4 @@ { | ||
"class": "PseudoElement", | ||
"name": "placeholder", | ||
"vendor": "moz" | ||
"name": "input-placeholder", | ||
"vendor": "ms" | ||
} | ||
@@ -124,4 +124,4 @@ ] | ||
"class": "PseudoElement", | ||
"name": "input-placeholder", | ||
"vendor": "ms" | ||
"name": "placeholder", | ||
"vendor": "moz" | ||
} | ||
@@ -128,0 +128,0 @@ ] |
@@ -27,3 +27,3 @@ { | ||
"name": "flow-into", | ||
"vendor": "webkit", | ||
"vendor": "ms", | ||
"children": [ | ||
@@ -45,3 +45,3 @@ { | ||
"name": "flow-into", | ||
"vendor": "ms", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -113,3 +113,3 @@ { | ||
"name": "flow-from", | ||
"vendor": "webkit", | ||
"vendor": "ms", | ||
"children": [ | ||
@@ -131,3 +131,3 @@ { | ||
"name": "flow-from", | ||
"vendor": "ms", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -134,0 +134,0 @@ { |
@@ -35,3 +35,3 @@ { | ||
"name": "max-content", | ||
"vendor": "moz" | ||
"vendor": "webkit" | ||
} | ||
@@ -53,3 +53,3 @@ ] | ||
"name": "max-content", | ||
"vendor": "webkit" | ||
"vendor": "moz" | ||
} | ||
@@ -88,3 +88,3 @@ ] | ||
"name": "min-content", | ||
"vendor": "moz" | ||
"vendor": "webkit" | ||
} | ||
@@ -106,3 +106,3 @@ ] | ||
"name": "min-content", | ||
"vendor": "webkit" | ||
"vendor": "moz" | ||
} | ||
@@ -141,3 +141,3 @@ ] | ||
"name": "fit-content", | ||
"vendor": "moz" | ||
"vendor": "webkit" | ||
} | ||
@@ -159,3 +159,3 @@ ] | ||
"name": "fit-content", | ||
"vendor": "webkit" | ||
"vendor": "moz" | ||
} | ||
@@ -193,4 +193,4 @@ ] | ||
"class": "Keyword", | ||
"name": "available", | ||
"vendor": "moz" | ||
"name": "fill-available", | ||
"vendor": "webkit" | ||
} | ||
@@ -211,4 +211,4 @@ ] | ||
"class": "Keyword", | ||
"name": "fill-available", | ||
"vendor": "webkit" | ||
"name": "available", | ||
"vendor": "moz" | ||
} | ||
@@ -215,0 +215,0 @@ ] |
@@ -27,3 +27,3 @@ { | ||
"name": "transform", | ||
"vendor": "moz", | ||
"vendor": "ms", | ||
"children": [ | ||
@@ -87,3 +87,3 @@ { | ||
"name": "transform", | ||
"vendor": "webkit", | ||
"vendor": "o", | ||
"children": [ | ||
@@ -147,3 +147,3 @@ { | ||
"name": "transform", | ||
"vendor": "o", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -207,3 +207,3 @@ { | ||
"name": "transform", | ||
"vendor": "ms", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -210,0 +210,0 @@ { |
@@ -27,3 +27,3 @@ { | ||
"name": "transition", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -82,3 +82,3 @@ { | ||
"name": "transition", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -161,3 +161,3 @@ { | ||
"name": "transition-property", | ||
"vendor": "moz", | ||
"vendor": null, | ||
"children": [ | ||
@@ -170,3 +170,3 @@ { | ||
"name": "transform", | ||
"vendor": "moz" | ||
"vendor": "ms" | ||
} | ||
@@ -180,3 +180,3 @@ ] | ||
"name": "transition-property", | ||
"vendor": "o", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -189,3 +189,3 @@ { | ||
"name": "transform", | ||
"vendor": "o" | ||
"vendor": "webkit" | ||
} | ||
@@ -199,3 +199,3 @@ ] | ||
"name": "transition-property", | ||
"vendor": "webkit", | ||
"vendor": "o", | ||
"children": [ | ||
@@ -208,3 +208,3 @@ { | ||
"name": "transform", | ||
"vendor": "webkit" | ||
"vendor": "o" | ||
} | ||
@@ -218,3 +218,3 @@ ] | ||
"name": "transition-property", | ||
"vendor": null, | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -227,3 +227,3 @@ { | ||
"name": "transform", | ||
"vendor": "ms" | ||
"vendor": "moz" | ||
} | ||
@@ -254,3 +254,3 @@ ] | ||
"name": "transition-duration", | ||
"vendor": "moz", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -299,3 +299,3 @@ { | ||
"name": "transition-duration", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -368,3 +368,3 @@ { | ||
"name": "transition", | ||
"vendor": "moz", | ||
"vendor": null, | ||
"children": [ | ||
@@ -377,3 +377,3 @@ { | ||
"name": "transform", | ||
"vendor": "moz" | ||
"vendor": "ms" | ||
}, | ||
@@ -397,3 +397,3 @@ { | ||
"name": "transition", | ||
"vendor": "o", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -406,3 +406,3 @@ { | ||
"name": "transform", | ||
"vendor": "o" | ||
"vendor": "webkit" | ||
}, | ||
@@ -426,3 +426,3 @@ { | ||
"name": "transition", | ||
"vendor": "webkit", | ||
"vendor": "o", | ||
"children": [ | ||
@@ -435,3 +435,3 @@ { | ||
"name": "transform", | ||
"vendor": "webkit" | ||
"vendor": "o" | ||
}, | ||
@@ -455,3 +455,3 @@ { | ||
"name": "transition", | ||
"vendor": null, | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -464,3 +464,3 @@ { | ||
"name": "transform", | ||
"vendor": "ms" | ||
"vendor": "moz" | ||
}, | ||
@@ -467,0 +467,0 @@ { |
@@ -60,3 +60,20 @@ { | ||
"class": "Declaration", | ||
"name": "font-feature-settings", | ||
"name": "text-decoration-color", | ||
"vendor": "webkit", | ||
"children": [ | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Keyword", | ||
"name": "blue", | ||
"vendor": null | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Declaration", | ||
"name": "text-decoration-color", | ||
"vendor": "moz", | ||
@@ -68,2 +85,87 @@ "children": [ | ||
{ | ||
"class": "Keyword", | ||
"name": "blue", | ||
"vendor": null | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Declaration", | ||
"name": "text-decoration-color", | ||
"vendor": null, | ||
"children": [ | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Keyword", | ||
"name": "blue", | ||
"vendor": null | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Declaration", | ||
"name": "text-decoration-style", | ||
"vendor": "webkit", | ||
"children": [ | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Keyword", | ||
"name": "dotted", | ||
"vendor": null | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Declaration", | ||
"name": "text-decoration-style", | ||
"vendor": "moz", | ||
"children": [ | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Keyword", | ||
"name": "dotted", | ||
"vendor": null | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Declaration", | ||
"name": "text-decoration-style", | ||
"vendor": null, | ||
"children": [ | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Keyword", | ||
"name": "dotted", | ||
"vendor": null | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Declaration", | ||
"name": "font-feature-settings", | ||
"vendor": "webkit", | ||
"children": [ | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "String", | ||
@@ -84,3 +186,3 @@ "name": "smcp" | ||
"name": "font-feature-settings", | ||
"vendor": "webkit", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -127,3 +229,3 @@ { | ||
"name": "hyphens", | ||
"vendor": "moz", | ||
"vendor": "ms", | ||
"children": [ | ||
@@ -162,3 +264,3 @@ { | ||
"name": "hyphens", | ||
"vendor": "ms", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -197,3 +299,3 @@ { | ||
"name": "tab-size", | ||
"vendor": "moz", | ||
"vendor": "o", | ||
"children": [ | ||
@@ -214,3 +316,3 @@ { | ||
"name": "tab-size", | ||
"vendor": "o", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -247,3 +349,3 @@ { | ||
"name": "text-size-adjust", | ||
"vendor": "webkit", | ||
"vendor": "ms", | ||
"children": [ | ||
@@ -270,3 +372,3 @@ { | ||
"name": "text-size-adjust", | ||
"vendor": "ms", | ||
"vendor": "webkit", | ||
"children": [ | ||
@@ -345,2 +447,36 @@ { | ||
] | ||
}, | ||
{ | ||
"class": "Declaration", | ||
"name": "font-kerning", | ||
"vendor": "webkit", | ||
"children": [ | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Keyword", | ||
"name": "none", | ||
"vendor": null | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"class": "Declaration", | ||
"name": "font-kerning", | ||
"vendor": null, | ||
"children": [ | ||
{ | ||
"class": "Value", | ||
"children": [ | ||
{ | ||
"class": "Keyword", | ||
"name": "none", | ||
"vendor": null | ||
} | ||
] | ||
} | ||
] | ||
} | ||
@@ -347,0 +483,0 @@ ] |
@@ -27,3 +27,3 @@ { | ||
"name": "user-select", | ||
"vendor": "moz", | ||
"vendor": "ms", | ||
"children": [ | ||
@@ -62,3 +62,3 @@ { | ||
"name": "user-select", | ||
"vendor": "ms", | ||
"vendor": "moz", | ||
"children": [ | ||
@@ -65,0 +65,0 @@ { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
383684
137
13151
2