less 1.1.7 → 1.1.8

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.7
1
+ 1.1.8
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{less}
5
- s.version = "1.1.7"
5
+ s.version = "1.1.8"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["cloudhead"]
@@ -135,7 +135,12 @@ module Less
135
135
  def all
136
136
  [expression] + tail.elements.map {|f| f.expression }
137
137
  end
138
- }
138
+ # Catch-all rule
139
+ } / [-a-zA-Z0-9_%*/.&=:,#+? \[\]()]+ {
140
+ def build env
141
+ [Node::Anonymous.new(text_value)]
142
+ end
143
+ }
139
144
  end
140
145
 
141
146
  rule expression
@@ -42,4 +42,5 @@ h2[title] { font-size: 100%; }
42
42
  background-color: #009998;
43
43
  color: red !important;
44
44
  background-image: url(images/image.jpg);
45
+ background: -webkit-gradient(linear, left top, left bottom, from(red), to(blue));
45
46
  }
@@ -93,6 +93,7 @@ h2[title] {
93
93
  background-color: #009998;
94
94
  color: red !important;
95
95
  background-image: url(images/image.jpg);
96
+ background: -webkit-gradient(linear, left top, left bottom, from(red), to(blue));
96
97
  margin: ;
97
98
  }
98
99
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: less
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.7
4
+ version: 1.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - cloudhead