mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2026-06-24 13:09:56 -04:00
40 lines
922 B
CSS
Executable File
40 lines
922 B
CSS
Executable File
/* Hide header when tabs not on top */
|
|
#browser:not(.tabs-top) #header {
|
|
min-height: 0;
|
|
}
|
|
|
|
/* Make sure buttons are in front */
|
|
#browser:not(.tabs-top) .vivaldi,
|
|
#browser:not(.tabs-top) .window-buttongroup {
|
|
z-index: 10;
|
|
}
|
|
|
|
/* Set UrlBar l/r padding */
|
|
#browser:not(.tabs-top) .toolbar-mainbar {
|
|
padding-left: 30px;
|
|
padding-right: 130px
|
|
}
|
|
|
|
/* Override V icon size */
|
|
#browser .vivaldi svg {
|
|
height: 22px;
|
|
width: 22px;
|
|
}
|
|
|
|
/* Reset header on windowed/minimal-ui/bottom-UrlBar/horizontal-menu */
|
|
#browser.normal #header,
|
|
#browser.minimal-ui #header,
|
|
#browser.address-bottom #header
|
|
#browser.horizontal-menu #header {
|
|
min-height: 25px;
|
|
}
|
|
|
|
/* Reset header on windowed/minimal-ui/bottom-UrlBar/horizontal-menu */
|
|
#browser.normal .toolbar-mainbar,
|
|
#browser.minimal-ui .toolbar-mainbar,
|
|
#browser.address-bottom .toolbar-mainbar,
|
|
#browser.horizontal-menu .toolbar-mainbar {
|
|
padding-left: unset;
|
|
padding-right: unset;
|
|
}
|