less-rails-bootstrap 2.0.7 → 2.0.8

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,7 +1,12 @@
1
1
  CHANGELOG
2
2
  =========
3
3
 
4
- 2.0.7 - 0313/2012
4
+ 2.0.8 - 03/13/2012
5
+
6
+ * Fix icon sprite paths. Seems they are real paths now.
7
+
8
+
9
+ 2.0.7 - 03/13/2012
5
10
 
6
11
  * Update to official bootstrap 2.0.2
7
12
 
@@ -1,7 +1,7 @@
1
1
  module Less
2
2
  module Rails
3
3
  module Bootstrap
4
- VERSION = "2.0.7"
4
+ VERSION = "2.0.8"
5
5
  end
6
6
  end
7
7
  end
@@ -21,14 +21,14 @@
21
21
  height: 14px;
22
22
  line-height: 14px;
23
23
  vertical-align: text-top;
24
- background-image: url("@{iconSpritePath}");
24
+ background-image: url(@iconSpritePath);
25
25
  background-position: 14px 14px;
26
26
  background-repeat: no-repeat;
27
27
 
28
28
  .ie7-restore-right-whitespace();
29
29
  }
30
30
  .icon-white {
31
- background-image: url("@{iconWhiteSpritePath}");
31
+ background-image: url(@iconWhiteSpritePath);
32
32
  }
33
33
 
34
34
  .icon-glass { background-position: 0 0; }
@@ -123,8 +123,8 @@
123
123
 
124
124
  // Sprite icons path
125
125
  // -------------------------
126
- @iconSpritePath: asset-url("twitter/bootstrap/glyphicons-halflings.png");
127
- @iconWhiteSpritePath: asset-url("twitter/bootstrap/glyphicons-halflings-white.png");
126
+ @iconSpritePath: asset-path("twitter/bootstrap/glyphicons-halflings.png");
127
+ @iconWhiteSpritePath: asset-path("twitter/bootstrap/glyphicons-halflings-white.png");
128
128
 
129
129
 
130
130
  // Input placeholder text color
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: less-rails-bootstrap
3
3
  version: !ruby/object:Gem::Version
4
- hash: 1
4
+ hash: 31
5
5
  prerelease:
6
6
  segments:
7
7
  - 2
8
8
  - 0
9
- - 7
10
- version: 2.0.7
9
+ - 8
10
+ version: 2.0.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ken Collins