diff --git a/Makefile b/Makefile index 127d6affe0..f2213103aa 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,7 @@ build: lessc ${BOOTSTRAP_RESPONSIVE_LESS}.tmp > ${BOOTSTRAP_RESPONSIVE}; \ rm -f ${BOOTSTRAP_RESPONSIVE_LESS}.tmp; \ node docs/build; \ + cp img/* docs/assets/img/; \ echo "Bootstrap successfully built! - `date`"; \ else \ echo "You must have the LESS compiler installed in order to build Bootstrap."; \ diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index cd7268bb77..68e161051b 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -6,7 +6,7 @@ * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. - * Date: Thu Jan 26 22:05:04 PST 2012 + * Date: Thu Jan 26 22:39:03 PST 2012 */ article, aside, @@ -1066,7 +1066,7 @@ table .span12 { margin-left: 0; } .icon { - background-image: url(img/glyphicons-halflings-sprite.png); + background-image: url(../img/glyphicons-halflings-sprite.png); background-position: 0 0; background-repeat: no-repeat; display: inline-block; @@ -1075,7 +1075,7 @@ table .span12 { height: 14px; } .icon.white { - background-image: url(img/glyphicons-halflings-sprite-white.png); + background-image: url(../img/glyphicons-halflings-sprite-white.png); } .icon.glass { background-position: 0 0; diff --git a/docs/assets/img/glyphicons-halflings-sprite-white.png b/docs/assets/img/glyphicons-halflings-sprite-white.png new file mode 100644 index 0000000000..a92b1913a2 Binary files /dev/null and b/docs/assets/img/glyphicons-halflings-sprite-white.png differ diff --git a/docs/assets/img/glyphicons-halflings-sprite.png b/docs/assets/img/glyphicons-halflings-sprite.png new file mode 100644 index 0000000000..b4e0acfbc1 Binary files /dev/null and b/docs/assets/img/glyphicons-halflings-sprite.png differ diff --git a/less/sprites.less b/less/sprites.less index c3b4206656..599434b2bc 100644 --- a/less/sprites.less +++ b/less/sprites.less @@ -12,7 +12,7 @@ // will look like . .icon { - background-image: url(img/glyphicons-halflings-sprite.png); + background-image: url(../img/glyphicons-halflings-sprite.png); background-position: 0 0; background-repeat: no-repeat; display: inline-block; @@ -21,7 +21,7 @@ height: 14px; } .icon.white { - background-image: url(img/glyphicons-halflings-sprite-white.png); + background-image: url(../img/glyphicons-halflings-sprite-white.png); } .icon.glass { background-position: 0 0; }