Direct nest access >

This commit is contained in:
jtm
2012-03-18 13:30:33 +00:00
parent fc1a3e3745
commit 690720f391
4 changed files with 30 additions and 0 deletions

View File

@@ -70,6 +70,13 @@ class Scope(list):
else False)
def blocks(self, name):
"""
"""
b = self._blocks(name)
if b: return b
return self._blocks(name.replace('?>?', ' '))
def _blocks(self, name):
"""
"""
i = len(self)

View File

@@ -79,3 +79,10 @@ div.nest a:hover .deep p, div.nest a:focus .deep p {
.secure-zone {
color: transparent;
}
.outer .inner {
padding: 3px;
}
.tx {
padding: 3px;
padding: 3px;
}

View File

@@ -23,3 +23,5 @@ div.nest a:hover .deep p,div.nest a:focus .deep p{widows:3;}
#header #cookie .chips{border-style:dotted;}
#header #cookie .chips .calories{color:black;border-color:orange;background-color:grey;}
.secure-zone{color:transparent;}
.outer .inner{padding:3px;}
.tx{padding:3px;padding:3px;}

View File

@@ -91,4 +91,18 @@ div.nest {
}
.secure-zone {
#namespace .biohazard .man;
}
//
// Direct access
//
.outer {
.inner {
padding: 3px;
}
}
.tx {
.outer .inner;
// Same
.outer > .inner;
}