remove max-height from panels so their content shows properly on linux

This commit is contained in:
MrOtherGuy 2021-09-23 23:31:21 +03:00
parent 6214f6e1e7
commit c50e8aa8aa
2 changed files with 6 additions and 1 deletions

View file

@ -24,9 +24,11 @@ See the above repository for updates as well as full license text. */
width: 100%; width: 100%;
z-index: 1; z-index: 1;
} }
#nav-bar-customization-target{ -webkit-box-flex: 1; } #nav-bar-customization-target{ -webkit-box-flex: 1; }
/* Fix panels sizing */
.panel-viewstack{ max-height: unset !important; }
#urlbar[breakout][breakout-extend]{ #urlbar[breakout][breakout-extend]{
display: flex !important; display: flex !important;
flex-direction: column-reverse; flex-direction: column-reverse;

View file

@ -39,6 +39,9 @@ See the above repository for updates as well as full license text. */
#TabsToolbar > .titlebar-buttonbox-container{ display: none } #TabsToolbar > .titlebar-buttonbox-container{ display: none }
#toolbar-menubar > .titlebar-buttonbox-container{ order: 1000 } #toolbar-menubar > .titlebar-buttonbox-container{ order: 1000 }
/* Fix panels sizing */
.panel-viewstack{ max-height: unset !important; }
/* Fullscreen mode support */ /* Fullscreen mode support */
#navigator-toolbox[inFullscreen]{ margin-top: 0 !important } #navigator-toolbox[inFullscreen]{ margin-top: 0 !important }
#navigator-toolbox[inFullscreen][style*="margin-top"]{ visibility: collapse } #navigator-toolbox[inFullscreen][style*="margin-top"]{ visibility: collapse }