haml-edge 3.1.14 → 3.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/EDGE_GEM_VERSION +1 -1
- data/VERSION +1 -1
- data/lib/sass/scss/rx.rb +2 -2
- metadata +1 -1
data/EDGE_GEM_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.15
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.15
|
data/lib/sass/scss/rx.rb
CHANGED
|
@@ -116,8 +116,8 @@ module Sass
|
|
|
116
116
|
# Can't use IDENT here, because it seems to take exponential time on 1.8.
|
|
117
117
|
# We could use it for 1.9 only, but I don't want to introduce a cross-version
|
|
118
118
|
# behavior difference.
|
|
119
|
-
#
|
|
120
|
-
STATIC_VALUE = /(-?#{NMSTART}
|
|
119
|
+
# In any case, almost all CSS idents will be matched by this.
|
|
120
|
+
STATIC_VALUE = /(-?#{NMSTART}|#{STRING_NOINTERP}|\s(?!%)|#[a-f0-9]|[,%]|#{NUM}|\!important)+(?=[;}])/i
|
|
121
121
|
|
|
122
122
|
STATIC_SELECTOR = /(#{NMCHAR}|\s|[,>+*]|[:#.]#{NMSTART})+(?=[{])/i
|
|
123
123
|
end
|