This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/postcss-page-break/index.js
2020-11-01 22:46:04 +00:00

33 lines
856 B
JavaScript

var postcss = require('postcss');
module.exports = postcss.plugin('postcss-page-break', function () {
return function (root) {
root.walkDecls(/^break-(inside|before|after)/, function (decl) {
// do not process column|region related properties
if (decl.value.search(/column|region/) >= 0) {
return;
}
var newValue;
switch (decl.value) {
case 'page':
newValue = 'always';
break;
case 'avoid-page':
newValue = 'avoid';
break;
default:
newValue = decl.value;
}
decl.cloneBefore({
prop: 'page-' + decl.prop,
value: newValue
});
});
};
});