Changeset 0c6b92a for imaps-frontend/node_modules/stylis/src/Prefixer.js
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/stylis/src/Prefixer.js
rd565449 r0c6b92a 17 17 // text-decoration, filter, clip-path, backface-visibility, column, box-decoration-break 18 18 case 5572: case 6356: case 5844: case 3191: case 6645: case 3005: 19 // mask, mask-image, mask-(mode|clip|size), mask-(repeat|origin), mask-position, mask-composite,20 case 6391: case 5879: case 5623: case 6135: case 4599: case 4855:21 19 // background-clip, columns, column-(count|fill|gap|rule|rule-color|rule-style|rule-width|span|width) 22 20 case 4215: case 6389: case 5109: case 5365: case 5621: case 3829: 21 // mask, mask-image, mask-(mode|clip|size), mask-(repeat|origin), mask-position 22 case 6391: case 5879: case 5623: case 6135: case 4599: 23 23 return WEBKIT + value + value 24 // mask-composite 25 case 4855: 26 return WEBKIT + value.replace('add', 'source-over').replace('substract', 'source-out').replace('intersect', 'source-in').replace('exclude', 'xor') + value 24 27 // tab-size 25 28 case 4789: … … 77 80 // justify-content 78 81 case 4968: 79 return replace(replace(value, /(.+:)(flex-)?(.*)/, WEBKIT + 'box-pack:$3' + MS + 'flex-pack:$3'), /s .+-b[^;]+/, 'justify') + WEBKIT + value + value82 return replace(replace(value, /(.+:)(flex-)?(.*)/, WEBKIT + 'box-pack:$3' + MS + 'flex-pack:$3'), /space-between/, 'justify') + WEBKIT + value + value 80 83 // justify-self 81 84 case 4200:
Note:
See TracChangeset
for help on using the changeset viewer.