main
Last change
on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 6 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
550 bytes
|
Rev | Line | |
---|
[79a0317] | 1 | var OptimizationLevel = require('../../../options/optimization-level').OptimizationLevel;
|
---|
| 2 |
|
---|
| 3 | var plugin = {
|
---|
| 4 | level1: {
|
---|
| 5 | property: function background(_rule, property, options) {
|
---|
| 6 | var values = property.value;
|
---|
| 7 |
|
---|
| 8 | if (!options.level[OptimizationLevel.One].optimizeBackground) {
|
---|
| 9 | return;
|
---|
| 10 | }
|
---|
| 11 |
|
---|
| 12 | if (values.length == 1 && values[0][1] == 'none') {
|
---|
| 13 | values[0][1] = '0 0';
|
---|
| 14 | }
|
---|
| 15 |
|
---|
| 16 | if (values.length == 1 && values[0][1] == 'transparent') {
|
---|
| 17 | values[0][1] = '0 0';
|
---|
| 18 | }
|
---|
| 19 | }
|
---|
| 20 | }
|
---|
| 21 | };
|
---|
| 22 |
|
---|
| 23 | module.exports = plugin;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.