36 lines
557 B
CSS
36 lines
557 B
CSS
|
@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); }
|
||
|
|
||
|
|
||
|
}
|