Force space after * selector
This commit is contained in:
@@ -36,7 +36,7 @@ class Block(Process):
|
||||
""" Parse block name and identifier
|
||||
"""
|
||||
name = ["%s " % t
|
||||
if t in '>+'
|
||||
if t in '>+*'
|
||||
else t
|
||||
for t in utility.flatten(self._p[1])]
|
||||
self._name = ''.join(name)
|
||||
|
||||
@@ -9,6 +9,9 @@ div {
|
||||
* {
|
||||
min-width: 45em;
|
||||
}
|
||||
* html .div {
|
||||
min-width: 45em;
|
||||
}
|
||||
h1, h2 > a > p, h3 {
|
||||
color: none;
|
||||
}
|
||||
|
||||
1
lesscpy/test/css/css.min.css
vendored
1
lesscpy/test/css/css.min.css
vendored
@@ -1,6 +1,7 @@
|
||||
@charset "utf-8";@CHARSET "utf-8";div{color:black;}
|
||||
div{width:99%;}
|
||||
*{min-width:45em;}
|
||||
* html .div{min-width:45em;}
|
||||
h1, h2 > a > p, h3{color:none;}
|
||||
div.class{color:blue;}
|
||||
div#id{color:green;}
|
||||
|
||||
@@ -7,6 +7,10 @@ div { width: 99%; }
|
||||
min-width: 45em;
|
||||
}
|
||||
|
||||
* html .div {
|
||||
min-width: 45em;
|
||||
}
|
||||
|
||||
h1, h2 > a > p, h3 {
|
||||
color: none;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user