- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
24 lines
550 B
JavaScript
24 lines
550 B
JavaScript
var OptimizationLevel = require('../../../options/optimization-level').OptimizationLevel;
|
|
|
|
var plugin = {
|
|
level1: {
|
|
property: function background(_rule, property, options) {
|
|
var values = property.value;
|
|
|
|
if (!options.level[OptimizationLevel.One].optimizeBackground) {
|
|
return;
|
|
}
|
|
|
|
if (values.length == 1 && values[0][1] == 'none') {
|
|
values[0][1] = '0 0';
|
|
}
|
|
|
|
if (values.length == 1 && values[0][1] == 'transparent') {
|
|
values[0][1] = '0 0';
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
module.exports = plugin;
|