akshat46 / FlyingFox

An opinionated set of configurations for firefox.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Align Window Controls with other icons

hbarsaiyan opened this issue · comments

Describe the bug
The window controls are not aligned with other icons on toolbar.
Screenshot from 2021-04-12 13-10-16

wc-without-tabline-r.css:

@import "window-controls.css";
@import "wc-without-tabline.css";

#TabsToolbar.browser-toolbar {
    left: auto !important;
    right: var(--wc-right-space) !important;
}

:root:not([inFullscreen]) toolbar#nav-bar {
    margin-left: 0 !important;
    margin-right: calc(var(--wc-left-space) * 2 + 72px) !important;
}

.titlebar-buttonbox {
    flex-direction: row !important;
}

OS: Arch Linux
Firefox Version: 87.0

You should be able to control vertical positioning of window-controls with the variable --wc-vertical-shift in config.css as shown here. Does that work?

Yes thank you that solved it. Should have done the reading before.