mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
icons absolute. this is needed because the bundler minifies css and serves it from the "/" directory.
17 lines
484 B
CSS
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");
|
|
}
|