summaryrefslogtreecommitdiff
path: root/node_modules/autoprefixer/lib/hacks/inline-logical.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/autoprefixer/lib/hacks/inline-logical.js')
-rw-r--r--node_modules/autoprefixer/lib/hacks/inline-logical.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/node_modules/autoprefixer/lib/hacks/inline-logical.js b/node_modules/autoprefixer/lib/hacks/inline-logical.js
new file mode 100644
index 0000000..31dc968
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/inline-logical.js
@@ -0,0 +1,34 @@
+let Declaration = require('../declaration')
+
+class InlineLogical extends Declaration {
+ /**
+ * Return property name by spec
+ */
+ normalize(prop) {
+ return prop.replace(/(margin|padding|border)-(start|end)/, '$1-inline-$2')
+ }
+
+ /**
+ * Use old syntax for -moz- and -webkit-
+ */
+ prefixed(prop, prefix) {
+ return prefix + prop.replace('-inline', '')
+ }
+}
+
+InlineLogical.names = [
+ 'border-inline-start',
+ 'border-inline-end',
+ 'margin-inline-start',
+ 'margin-inline-end',
+ 'padding-inline-start',
+ 'padding-inline-end',
+ 'border-start',
+ 'border-end',
+ 'margin-start',
+ 'margin-end',
+ 'padding-start',
+ 'padding-end'
+]
+
+module.exports = InlineLogical