1
0
Fork 0
dotfiles/.local/share/librewolf/chrome/includes/cascade-responsive.css

36 lines
557 B
CSS
Raw Normal View History

2023-03-28 14:22:30 +02:00
@media (min-width: 1000px) {
#navigator-toolbox { display: flex; flex-wrap: wrap; }
#nav-bar {
order: var(--uc-urlbar-position);
width: var(--uc-urlbar-min-width);
}
#titlebar {
order: 2;
width: calc(100vw - var(--uc-urlbar-min-width) - 1px);
}
#PersonalToolbar {
order: var(--uc-toolbar-position);
width: 100%;
}
#navigator-toolbox:focus-within #nav-bar { width: var(--uc-urlbar-max-width); }
#navigator-toolbox:focus-within #titlebar { width: calc(100vw - var(--uc-urlbar-max-width) - 1px); }
}