Page 1 of 1

[0.8.0Alpha2] Stylesheet causing "ugly" webinterface

Posted: June 17th, 2015, 6:02 am
by an3k
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

Code: Select all

.centerpiece {
  margin: auto;
  padding:13px 0 0 20px;
  width:350px;
}
0.8.0Alpha2

Code: Select all

.centerpiece {
  margin: auto;
  padding:13px 0 0 20px;
  margin-left: 80px;
  width:450px;
}

Re: [0.8.0Alpha2] Stylesheet causing "ugly" webinterface

Posted: June 18th, 2015, 2:05 pm
by shypike
Thanks for the tip, I'll look into this.

Re: [0.8.0Alpha2] Stylesheet causing "ugly" webinterface

Posted: July 3rd, 2015, 1:35 pm
by shypike
Done for Alpha3