fix the order of the stylesheets

This commit is contained in:
Damien Churchill 2009-04-27 21:33:50 +00:00
parent 154e671ecc
commit 137d0f8ebf
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ class TopLevel(resource.Resource):
self.putChild("tracker", Tracker())
theme = component.get("DelugeWeb").config["theme"]
self.__stylesheets.append("/css/xtheme-%s.css" % theme)
self.__stylesheets.insert(1, "/css/xtheme-%s.css" % theme)
@property
def scripts(self):