diff options
| author | Mark Otto <[email protected]> | 2012-02-18 15:17:41 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-02-18 15:17:41 -0800 |
| commit | db940b3d8f48d1f664137c5adb427a35580f80c4 (patch) | |
| tree | a4713e89462e1cb2b7b1febfb5ff3b33467d07ae | |
| parent | 1a1816b5bd2cc0a92902fafa6ef9898911b4bdb6 (diff) | |
| parent | c900d72857e5c3865abe9502ad7d255e84f1af0e (diff) | |
| download | bootstrap-db940b3d8f48d1f664137c5adb427a35580f80c4.tar.xz bootstrap-db940b3d8f48d1f664137c5adb427a35580f80c4.zip | |
Merge pull request #2066 from artstorm/2.0.2-wip
Fixed compile problem with LESS 1.2.1.
| -rw-r--r-- | less/sprites.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/sprites.less b/less/sprites.less index a7741661e..cdd9f6e85 100644 --- a/less/sprites.less +++ b/less/sprites.less @@ -21,14 +21,14 @@ height: 14px; line-height: 14px; vertical-align: text-top; - background-image: url(@iconSpritePath); + background-image: url("@{iconSpritePath}"); background-position: 14px 14px; background-repeat: no-repeat; .ie7-restore-right-whitespace(); } .icon-white { - background-image: url(@iconWhiteSpritePath); + background-image: url("@{iconWhiteSpritePath}"); } .icon-glass { background-position: 0 0; } |
