From 38bf3ef51254eb7ff13344aa79ce28ff497c8191 Mon Sep 17 00:00:00 2001 From: Jeff Balogh Date: Tue, 14 Dec 2010 09:30:53 -0800 Subject: [PATCH] drop the css one level deeper --- settings.py | 2 +- templates/base.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/settings.py b/settings.py index bc35b69a23..5dd0471935 100644 --- a/settings.py +++ b/settings.py @@ -340,7 +340,7 @@ STANDALONE_DOMAINS = [ MINIFY_BUNDLES = { 'css': { # CSS files common to the entire site. - 'common': ( + 'zamboni/css': ( 'css/legacy/main.css', 'css/legacy/main-mozilla.css', 'css/legacy/jquery-lightbox.css', diff --git a/templates/base.html b/templates/base.html index 02579fb17a..8f2d591fa9 100644 --- a/templates/base.html +++ b/templates/base.html @@ -15,7 +15,7 @@ href="{{ url('amo.opensearch') }}" /> {% block site_css %} - {{ css('common') }} + {{ css('zamboni/css') }} {% endblock %}