pixel-cookers / redmine-theme

A nice, dark and blue theme for Redmine.
http://pixel-cookers.github.io/redmine-theme/
MIT License
118 stars 58 forks source link

'Redmine Backlogs' plugin breaks out of theme. #23

Open ksavoie opened 11 years ago

ksavoie commented 11 years ago

LOVE this theme but latest 'Redmine Backlogs' plugin breaks out of theme. screen shot 2013-08-21 at 11 56 33 am

p-schneider commented 10 years ago

Sorry for the late reply - just in case you did not already find a workaround or someone else like me had the same problem and used google to find this ticket. (I just installed redmine backlogs today, ran into this problem and used google to get to this ticket.)

open public/plugin_assets/redmine_backlogs/stylesheets/global.css plugins/redmine_backlogs/assets/stylesheets/global.css and find

/* MAIN */
#main{
  display:block;
  height:100%;
  width:100%;
  margin: 0; /*yes, we do!*/
}

uncomment the block e.g.

/* MAIN */
#main{
  /*display:block;
  height:100%;
  width:100%;
  margin: 0; /*yes, we do!*/
}

edit: you might also want to edit the file in public/plugin_assets/... if it does not update automatically, but you should definitely edit the file in plugins/redmine_backlogs/...

trajano commented 10 years ago

I can confirm @p-schneider work around works. However @dakota 's patch #28 does not work for me. screenshot 12

trajano commented 10 years ago

Correction #28 does fix the issue without making the CSS changes.