From be0f4729b09b52ec10e88ac473d2a10e45dacbef Mon Sep 17 00:00:00 2001 From: MrOtherGuy <31620503+MrOtherGuy@users.noreply.github.com> Date: Sat, 15 Feb 2020 23:25:43 +0200 Subject: [PATCH] Don't apply transform before sessionrestored --- chrome/autohide_toolbox.css | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/chrome/autohide_toolbox.css b/chrome/autohide_toolbox.css index f75abb5..58d8ecc 100644 --- a/chrome/autohide_toolbox.css +++ b/chrome/autohide_toolbox.css @@ -45,14 +45,17 @@ :root[sizemode="maximized"] #navigator-toolbox:not(:focus-within):not(:hover){ transform: rotateX(89.5deg) } +/* Don't apply transform before window has been fully created */ +:root:not([sessionrestored]) #navigator-toolbox{ transform:none !important } + :root[customizing] #navigator-toolbox{ - position: relative !important; - transform: none !important; - opacity: 1 !important; + position: relative !important; + transform: none !important; + opacity: 1 !important; } #navigator-toolbox[inFullscreen] > #PersonalToolbar, #PersonalToolbar[collapsed="true"]{ display: none } /* Uncomment this if tabs toolbar is hidden with hide_tabs_toolbar.css */ - /*#titlebar{ margin-bottom: -9px }*/ \ No newline at end of file + /*#titlebar{ margin-bottom: -9px }*/