Fix navbar, footer background to match custom body background

This commit is contained in:
Lance Edgar 2019-03-09 01:58:22 -06:00
parent 316ed83047
commit 5516a11012

View file

@ -12,13 +12,17 @@
% if background_color:
<style type="text/css">
body { background-color: ${background_color}; }
body, .navbar, .footer {
background-color: ${background_color};
}
</style>
% endif
% if not request.rattail_config.production():
<style type="text/css">
body { background-image: url(${request.static_url('tailbone:static/img/testing.png')}); }
body, .navbar, .footer {
background-image: url(${request.static_url('tailbone:static/img/testing.png')});
}
</style>
% endif