Files
meteor/packages/bootstrap/css/bootstrap-override.css
fivethirty c24f891f85 adding bootstrap-override.css to make paths to
icons absolute.  this is needed because the
bundler minifies css and serves it from the "/"
directory.
2012-04-25 19:39:21 -07:00

17 lines
484 B
CSS

/*
* XXX Hack to make bootstrap work when bundled. This needs to be included
* _after_ the standard bootstrap css files.
*
* After being bundled, all CSS is minified and served from the "/" dir.
* Thus, we need to provide absolute paths to the icons here.
*/
[class^="icon-"],
[class*=" icon-"] {
background-image: url("/packages/bootstrap/img/glyphicons-halflings.png");
}
.icon-white {
background-image: url("/packages/bootstrap/img/glyphicons-halflings-white.png");
}