Attribute selectors with space are being removed like
Code
[class*=' icon-'],
[class^='icon-'] {
font-family: 'icomoon' !important;
}
Expected Behaviour
[class*=' icon-'],
[class^='icon-'] {
font-family: 'icomoon' !important;
}
Actual Behaviour
[class^='icon-'] {
font-family: 'icomoon' !important;
}
Attribute selectors with space are being removed like
Code
Expected Behaviour
Actual Behaviour