after new patch "hide caption titlebar plus" extension doesnt work properly

Add-ons for Pale Moon and other applications
General discussion, compatibility, contributed extensions, themes, plugins, and more.

Moderators: FranklinDM, Lootyhoof

User avatar
Marcus
Fanatic
Fanatic
Posts: 182
Joined: 2016-09-23, 11:58

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by Marcus » 2021-04-03, 16:02

Marcus wrote:
2021-03-08, 18:31
Any chance of having this extension on Linux?
bump @riiis

New Tobin Paradigm

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by New Tobin Paradigm » 2021-04-03, 16:22

Well riiis is hiding for now but this extension would be redundant if not incompatibile on linux due to the fact the application can't fake a window frame on Linux like it does on Windows in that mode.

User avatar
Marcus
Fanatic
Fanatic
Posts: 182
Joined: 2016-09-23, 11:58

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by Marcus » 2021-04-03, 16:55

New Tobin Paradigm wrote:
2021-04-03, 16:22
but this extension would be redundant if not incompatibile on linux
Yes I'm aware of that thanks to your explanation here:
New Tobin Paradigm wrote:
2021-02-04, 16:29
Of couse not as a window manager is seperate from the client area and that kind of fakery on Windows and Mac just isn't possible on linux.
I'm asking for a workaround or a Linux-specific extension.

Kris_88
Board Warrior
Board Warrior
Posts: 1165
Joined: 2021-01-26, 11:18

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by Kris_88 » 2021-04-03, 17:01


Kris_88
Board Warrior
Board Warrior
Posts: 1165
Joined: 2021-01-26, 11:18

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by Kris_88 » 2021-04-03, 18:36

If you want the tabs always visible, you can do it:

Code: Select all

#navigator-toolbox { position: fixed; left: 0px; right: 0px; top: -52px;
transition: top 1s ease-in-out 1s;
}
#browser-panel { padding-top: 28px; }
#navigator-toolbox > toolbar { width : 100%; }
#navigator-toolbox > toolbar[collapsed="true"],
#navigator-toolbox > toolbar[moz-collapsed="true"] { display: none; }
#navigator-toolbox:hover,
#navigator-toolbox[inFullscreen="true"],
#navigator-toolbox[customizing="true"] { top: 0px;
transition: top 0s ease-in-out 0s; 
}
#main-window[inFullscreen="true"] #browser-panel { padding-top: 0px; }
But you may need to correct the values -52px and 28px for your panel configuration.