mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
packages/deprecated/README: ``` These packages are no longer actively maintained by MDG. Seek community alternatives instead. Note that these packages still exist in atmosphere, and you can still build a package that depends on one of them by specifying an explicit package version. ``` Nothing technically prevents us from publishing further versions of these packages (like the ones in packages/non-core).
38 lines
1.5 KiB
CSS
38 lines
1.5 KiB
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");
|
|
}
|
|
/*
|
|
* Selectors borrowed from bootstrap.css. For all releases of bootstrap, when
|
|
* we upgrade, update this file to borrow the selectors from where bootstrap.css
|
|
* references any .png. When we update to using .less instead, use the less
|
|
* directives in a less file instead.
|
|
*/
|
|
.icon-white,
|
|
.nav-pills > .active > a > [class^="icon-"],
|
|
.nav-pills > .active > a > [class*=" icon-"],
|
|
.nav-list > .active > a > [class^="icon-"],
|
|
.nav-list > .active > a > [class*=" icon-"],
|
|
.navbar-inverse .nav > .active > a > [class^="icon-"],
|
|
.navbar-inverse .nav > .active > a > [class*=" icon-"],
|
|
.dropdown-menu > li > a:hover > [class^="icon-"],
|
|
.dropdown-menu > li > a:focus > [class^="icon-"],
|
|
.dropdown-menu > li > a:hover > [class*=" icon-"],
|
|
.dropdown-menu > li > a:focus > [class*=" icon-"],
|
|
.dropdown-menu > .active > a > [class^="icon-"],
|
|
.dropdown-menu > .active > a > [class*=" icon-"],
|
|
.dropdown-submenu:hover > a > [class^="icon-"],
|
|
.dropdown-submenu:focus > a > [class^="icon-"],
|
|
.dropdown-submenu:hover > a > [class*=" icon-"],
|
|
.dropdown-submenu:focus > a > [class*=" icon-"] {
|
|
background-image: url("/packages/bootstrap/img/glyphicons-halflings-white.png");
|
|
}
|