Skip to content

Commit

Permalink
Fix issue with pseudo-classes transform breaking :not()
Browse files Browse the repository at this point in the history
  • Loading branch information
NickColley committed May 9, 2019
1 parent d6a72be commit 339cd19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/gulp/compile-assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const cssnano = require('cssnano')
const postcsspseudoclasses = require('postcss-pseudo-classes')({
// Work around a bug in pseudo classes plugin that badly transforms
// :not(:whatever) pseudo selectors
blacklist: [':not(', ':disabled)', ':last-child)', ':focus)']
blacklist: [':not(', ':disabled)', ':last-child)', ':focus)', ':active)']
})

// Compile CSS and JS task --------------
Expand Down

0 comments on commit 339cd19

Please sign in to comment.