summaryrefslogtreecommitdiff
path: root/node_modules/autoprefixer/lib/hacks/block-logical.js
diff options
context:
space:
mode:
authorPhilipp Tanlak <philipp.tanlak@gmail.com>2025-11-24 20:54:57 +0100
committerPhilipp Tanlak <philipp.tanlak@gmail.com>2025-11-24 20:57:48 +0100
commitb1e2c8fd5cb5dfa46bc440a12eafaf56cd844b1c (patch)
tree49d360fd6cbc6a2754efe93524ac47ff0fbe0f7d /node_modules/autoprefixer/lib/hacks/block-logical.js
Docs
Diffstat (limited to 'node_modules/autoprefixer/lib/hacks/block-logical.js')
-rw-r--r--node_modules/autoprefixer/lib/hacks/block-logical.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/node_modules/autoprefixer/lib/hacks/block-logical.js b/node_modules/autoprefixer/lib/hacks/block-logical.js
new file mode 100644
index 0000000..cb795f7
--- /dev/null
+++ b/node_modules/autoprefixer/lib/hacks/block-logical.js
@@ -0,0 +1,40 @@
+let Declaration = require('../declaration')
+
+class BlockLogical extends Declaration {
+ /**
+ * Return property name by spec
+ */
+ normalize(prop) {
+ if (prop.includes('-before')) {
+ return prop.replace('-before', '-block-start')
+ }
+ return prop.replace('-after', '-block-end')
+ }
+
+ /**
+ * Use old syntax for -moz- and -webkit-
+ */
+ prefixed(prop, prefix) {
+ if (prop.includes('-start')) {
+ return prefix + prop.replace('-block-start', '-before')
+ }
+ return prefix + prop.replace('-block-end', '-after')
+ }
+}
+
+BlockLogical.names = [
+ 'border-block-start',
+ 'border-block-end',
+ 'margin-block-start',
+ 'margin-block-end',
+ 'padding-block-start',
+ 'padding-block-end',
+ 'border-before',
+ 'border-after',
+ 'margin-before',
+ 'margin-after',
+ 'padding-before',
+ 'padding-after'
+]
+
+module.exports = BlockLogical