Uncss Twitter Bootstrap Modal -


i want make use of grunt plugin "uncss". still misses classes of bootstrap modal. right grunt setup uncss looks this:

uncss: {       dist: {         options: {           ignore: [             ".fade",             ".fade.in",             ".collapse",             ".collapse.in",             ".collapsing",             ".alert-danger",             // modal             ".modal",             ".modal.fade.in",             ".modal-dialog",             ".modal-scrollbar-measure",             ".modal-backdrop.fade",             ".modal-backdrop.in",             ".modal.fade.modal-dialog",             ".modal.in.modal-dialog",             ".modal-open",             ".in",             ".modal-backdrop",             /\.open/           ]         },         files: {           'css/app.css': ['index.html']         }       }     }, 

someone know classes missed add uncss?

use regular expression pick of modal things:

/\.modal/ 

Comments

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -