don't load theme stylesheets, they get imported by ui stylesheet

This commit is contained in:
rolux 2011-04-25 14:24:44 +02:00
commit d4050526c5
4 changed files with 9 additions and 7 deletions

View file

@ -57,8 +57,9 @@ for path, dirnames, filenames in os.walk(source_path + 'css/'):
for filename in filenames:
source = os.path.join(path, filename)
target = source.replace(source_path, build_path)
copy_file(source, target)
append_file(target.replace(build_path, ''))
write_link(source, target)
if filename == 'Ox.UI.css':
append_file(target.replace(build_path, ''))
# js
filename = 'js/Ox.js'