[0.8.0Alpha2] Stylesheet causing "ugly" webinterface
Posted: June 17th, 2015, 6:02 am
The SABnzbd logo, the remaining time indicator and speed indicator (all bundled in <div class="centerpiece">) are not centered anymore. The new additions to the stylesheet for .centerpiece (line 684 in interfaces/Plush/templates/static/stylesheets/colorschemes/gold/gold.css) are causing this. Remove the additions made since 0.7.20 and centerpiece is centered again
0.7.20
0.8.0Alpha2
0.7.20
Code: Select all
.centerpiece {
margin: auto;
padding:13px 0 0 20px;
width:350px;
}
Code: Select all
.centerpiece {
margin: auto;
padding:13px 0 0 20px;
margin-left: 80px;
width:450px;
}