Force space after * selector

This commit is contained in:
robotis
2012-02-17 09:10:19 +00:00
parent 329e74c5be
commit a06b48ed3b
4 changed files with 9 additions and 1 deletions

View File

@@ -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)

View File

@@ -9,6 +9,9 @@ div {
* {
min-width: 45em;
}
* html .div {
min-width: 45em;
}
h1, h2 > a > p, h3 {
color: none;
}

View File

@@ -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;}

View File

@@ -7,6 +7,10 @@ div { width: 99%; }
min-width: 45em;
}
* html .div {
min-width: 45em;
}
h1, h2 > a > p, h3 {
color: none;
}