File tree 3 files changed +63
-0
lines changed
3 files changed +63
-0
lines changed Original file line number Diff line number Diff line change @@ -139,6 +139,7 @@ function normalizeAfterExtensions(root, rw) {
139
139
var extensions = {
140
140
compass : require ( './lib/extensions/compass' ) ,
141
141
libsassupdate : require ( './lib/extensions/libsassupdate' ) ,
142
+ removeclearfix : require ( './lib/extensions/removeclearfix' ) ,
142
143
removeprefixes : require ( './lib/extensions/removeprefixes' )
143
144
} ;
144
145
Original file line number Diff line number Diff line change @@ -41,6 +41,29 @@ const throwAwayOldFlexboxPrefixes = (rule) => {
41
41
}
42
42
} ;
43
43
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
+
44
67
const declarationUpdates = ( rule ) => {
45
68
if ( rule . declarations && rule . declarations . length ) {
46
69
rule . declarations . forEach ( function ( declaration ) {
@@ -74,5 +97,6 @@ const declarationUpdates = (rule) => {
74
97
module . exports = function ( root , rw ) {
75
98
root . rules = root . rules . filter ( rule => rule . type !== 'charset' ) ;
76
99
root . rules . forEach ( throwAwayOldFlexboxPrefixes ) ;
100
+ root . rules . forEach ( removeIESupport ) ;
77
101
root . rules . forEach ( declarationUpdates ) ;
78
102
} ;
Original file line number Diff line number Diff line change
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
+ } ;
You can’t perform that action at this time.
0 commit comments