From f5bd4b3c8f590472c1dd38fcbc573032e1c80c39 Mon Sep 17 00:00:00 2001 From: Dominik Tobschall Date: Fri, 17 Feb 2012 18:23:52 +0100 Subject: [PATCH 1/2] fixed typo (whitespace) --- less/sprites.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/sprites.less b/less/sprites.less index a7741661ea..5e0eabf987 100644 --- a/less/sprites.less +++ b/less/sprites.less @@ -11,7 +11,7 @@ // and background-position. Your resulting HTML will look like // . -// For the white version of the icons, just add the .icon-white class: +// For the white version of the icons, just add the .icon-white class: // [class^="icon-"], From 7609fd4dc62dfdc83c08fe32cbcd2b8e5cac5500 Mon Sep 17 00:00:00 2001 From: Dominik Tobschall Date: Fri, 17 Feb 2012 18:24:17 +0100 Subject: [PATCH 2/2] fixed syntax error --- less/sprites.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/less/sprites.less b/less/sprites.less index 5e0eabf987..4014d70a5e 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; }