Skip to content

Commit 839733e

Browse files
committedMay 25, 2017
Merge branch 'master' of github.com:DealerDotCom/css-compare
2 parents 8a36b97 + 8affd1f commit 839733e

File tree

3 files changed

+63
-0
lines changed

3 files changed

+63
-0
lines changed
 

‎css-compare.js

+1
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ function normalizeAfterExtensions(root, rw) {
139139
var extensions = {
140140
compass: require('./lib/extensions/compass'),
141141
libsassupdate: require('./lib/extensions/libsassupdate'),
142+
removeclearfix: require('./lib/extensions/removeclearfix'),
142143
removeprefixes: require('./lib/extensions/removeprefixes')
143144
};
144145

‎lib/extensions/libsassupdate.js

+24
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,29 @@ const throwAwayOldFlexboxPrefixes = (rule) => {
4141
}
4242
};
4343

44+
const removeIESupport = (rule) => {
45+
if (rule.declarations && rule.declarations.length) {
46+
rule.declarations = rule.declarations.filter((declaration) => {
47+
const prop = declaration.property;
48+
const val = declaration.value;
49+
50+
if (prop === 'filter' && val.indexOf("Microsoft") > -1) {
51+
return false;
52+
}
53+
54+
return true;
55+
});
56+
}
57+
58+
// Recurse
59+
if (rule.rules && rule.rules.length) {
60+
rule.rules.forEach(removeIESupport);
61+
}
62+
if (rule.keyframes && rule.keyframes.length) {
63+
rule.keyframes.forEach(removeIESupport);
64+
}
65+
};
66+
4467
const declarationUpdates = (rule) => {
4568
if (rule.declarations && rule.declarations.length) {
4669
rule.declarations.forEach(function(declaration){
@@ -74,5 +97,6 @@ const declarationUpdates = (rule) => {
7497
module.exports = function(root, rw) {
7598
root.rules = root.rules.filter(rule => rule.type !== 'charset');
7699
root.rules.forEach(throwAwayOldFlexboxPrefixes);
100+
root.rules.forEach(removeIESupport);
77101
root.rules.forEach(declarationUpdates);
78102
};

‎lib/extensions/removeclearfix.js

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
const removeClearfix = (rule) => {
2+
if (rule.declarations && rule.declarations.length) {
3+
rule.declarations = rule.declarations.filter((declaration) => {
4+
const prop = declaration.property;
5+
const val = declaration.value;
6+
7+
if (prop === 'display' && val === 'table') {
8+
return false;
9+
}
10+
11+
if (prop === 'content' && val === '" "') {
12+
return false;
13+
}
14+
15+
if (prop === 'clear' && val === 'both') {
16+
return false;
17+
}
18+
19+
if (prop === 'overflow' && val === 'hidden') {
20+
return false;
21+
}
22+
23+
return true;
24+
});
25+
}
26+
27+
// Recurse
28+
if (rule.rules && rule.rules.length) {
29+
rule.rules.forEach(removeClearfix);
30+
}
31+
if (rule.keyframes && rule.keyframes.length) {
32+
rule.keyframes.forEach(removeClearfix);
33+
}
34+
};
35+
36+
module.exports = function(root, rw) {
37+
root.rules.forEach(removeClearfix);
38+
};

0 commit comments

Comments
 (0)