fix the order of the stylesheets
This commit is contained in:
parent
154e671ecc
commit
137d0f8ebf
|
@ -303,7 +303,7 @@ class TopLevel(resource.Resource):
|
||||||
self.putChild("tracker", Tracker())
|
self.putChild("tracker", Tracker())
|
||||||
|
|
||||||
theme = component.get("DelugeWeb").config["theme"]
|
theme = component.get("DelugeWeb").config["theme"]
|
||||||
self.__stylesheets.append("/css/xtheme-%s.css" % theme)
|
self.__stylesheets.insert(1, "/css/xtheme-%s.css" % theme)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def scripts(self):
|
def scripts(self):
|
||||||
|
|
Loading…
Reference in New Issue