Skip to content

Commit

Permalink
rebuild + copy images to docs when making
Browse files Browse the repository at this point in the history
  • Loading branch information
fat committed Jan 27, 2012
1 parent a25f0cc commit 815a2ae
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions Makefile
Expand Up @@ -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."; \
Expand Down
6 changes: 3 additions & 3 deletions docs/assets/css/bootstrap.css
Expand Up @@ -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,
Expand Down Expand Up @@ -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;
Expand All @@ -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;
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/glyphicons-halflings-sprite.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions less/sprites.less
Expand Up @@ -12,7 +12,7 @@
// will look like <i class="inbox"></i>.

.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;
Expand All @@ -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; }
Expand Down

0 comments on commit 815a2ae

Please sign in to comment.