Fix navbar, footer background to match custom body background
This commit is contained in:
parent
316ed83047
commit
5516a11012
|
@ -12,13 +12,17 @@
|
||||||
|
|
||||||
% if background_color:
|
% if background_color:
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
body { background-color: ${background_color}; }
|
body, .navbar, .footer {
|
||||||
|
background-color: ${background_color};
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
% endif
|
% endif
|
||||||
|
|
||||||
% if not request.rattail_config.production():
|
% if not request.rattail_config.production():
|
||||||
<style type="text/css">
|
<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>
|
</style>
|
||||||
% endif
|
% endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue