[0.8.0Alpha2] Stylesheet causing "ugly" webinterface

Questions and bug reports for Beta releases should be posted here.
Forum rules
Help us help you:
  • Tell us what system you run SABnzbd on.
  • Adhere to the forum rules.
  • Do you experience problems during downloading?
    Check your connection in Status and Interface settings window.
    Use Test Server in Config > Servers.
    We will probably ask you to do a test using only basic settings.
  • Do you experience problems during repair or unpacking?
    Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Post Reply
User avatar
an3k
Newbie
Newbie
Posts: 31
Joined: June 16th, 2015, 10:49 am

[0.8.0Alpha2] Stylesheet causing "ugly" webinterface

Post 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;
}
User avatar
shypike
Administrator
Administrator
Posts: 19774
Joined: January 18th, 2008, 12:49 pm

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

Post by shypike »

Thanks for the tip, I'll look into this.
User avatar
shypike
Administrator
Administrator
Posts: 19774
Joined: January 18th, 2008, 12:49 pm

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

Post by shypike »

Done for Alpha3
Post Reply