bump @riiis
after new patch "hide caption titlebar plus" extension doesnt work properly
Moderators: FranklinDM, Lootyhoof
-
Marcus
- Fanatic

- Posts: 182
- Joined: 2016-09-23, 11:58
-
New Tobin Paradigm
Re: after new patch "hide caption titlebar plus" extension doesnt work properly
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.
-
Marcus
- Fanatic

- Posts: 182
- Joined: 2016-09-23, 11:58
Re: after new patch "hide caption titlebar plus" extension doesnt work properly
Yes I'm aware of that thanks to your explanation here:New Tobin Paradigm wrote: ↑2021-04-03, 16:22but this extension would be redundant if not incompatibile on linux
I'm asking for a workaround or a Linux-specific extension.New Tobin Paradigm wrote: ↑2021-02-04, 16:29Of 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.
-
Kris_88
- Board Warrior

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

- Posts: 1165
- Joined: 2021-01-26, 11:18
Re: after new patch "hide caption titlebar plus" extension doesnt work properly
If you want the tabs always visible, you can do it:
But you may need to correct the values -52px and 28px for your panel configuration.
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; }