clamp z-indexes
This commit is contained in:
parent
506426b376
commit
5dce63569d
1 changed files with 14 additions and 0 deletions
|
@ -325,6 +325,20 @@ class MapCSS():
|
|||
if (previous==oDECLARATION):
|
||||
self.choosers.append(sc)
|
||||
sc= StyleChooser(self.scalepair)
|
||||
try:
|
||||
"clamp z-indexes, so they're tightly following integers"
|
||||
zindex = set()
|
||||
for chooser in self.choosers:
|
||||
for stylez in chooser.styles:
|
||||
zindex.add(float(stylez.get('z-index',0)))
|
||||
zindex = list(zindex)
|
||||
zindex.sort()
|
||||
for chooser in self.choosers:
|
||||
for stylez in chooser.styles:
|
||||
if 'z-index' in stylez:
|
||||
stylez['z-index'] = zindex.index(float(stylez.get('z-index',0)))
|
||||
except TypeError:
|
||||
pass
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue