Kragrathea / OctoPrint-PrettyGCode

114 stars 22 forks source link

Can not access top buttons in fullscreen mode #144

Open dchotwolf101 opened 1 year ago

dchotwolf101 commented 1 year ago

image

The buttons are under the header bar and are hard to click.

FindusD commented 1 year ago

I have the same problem, in full screen mode the buttons at the top and at the bottom are hidden under the header and footer from OctoPrint. To see the buttons at the bottom I can scroll down, but I cannot do anything to see the button at the top. OctoPrintPrettyGCode

Guenni75 commented 1 year ago

Hi. Same Problem here. I think it's a problem with the UI Customizer Plugin.

gregbarbosa commented 1 year ago

I'm also using UI Customizer, this CSS pushes down the buttons alongside hiding the status bar (that for some reason only ever shows as 0 for me).

  1. Open OctoPrint Settings
  2. Under Settings > Plugins > UI Customizer > Advanced > Custom CSS, paste in the following:
.pgfullscreen #tab_plugin_prettygcode .gwin {
    margin-top: 40px;
}

.pgfullscreen .pgstatus {
    display: none;
}

Before 1_Before

After 2_After

trymbf commented 8 months ago

If you want to get rid of the navbar completely you can use this CSS instead (from this issue)

.pgfullscreen #navbar { visibility:hidden; }