OctoPrint-PrettyGCode icon indicating copy to clipboard operation
OctoPrint-PrettyGCode copied to clipboard

Can not access top buttons in fullscreen mode

Open dchotwolf101 opened this issue 3 years ago • 4 comments

image

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

dchotwolf101 avatar Jan 26 '23 12:01 dchotwolf101

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

FindusD avatar Feb 05 '23 10:02 FindusD

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

Guenni75 avatar Apr 29 '23 14:04 Guenni75

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

gregbarbosa avatar Apr 30 '23 18:04 gregbarbosa

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

.pgfullscreen #navbar { visibility:hidden; }

trymbf avatar Feb 11 '24 19:02 trymbf