use -webkit-box instead of flex for nav-bar so extension panels can work
This commit is contained in:
parent
da2ee8b244
commit
7037462678
1 changed files with 3 additions and 2 deletions
|
@ -19,12 +19,13 @@ See the above repository for updates as well as full license text. */
|
||||||
#nav-bar{
|
#nav-bar{
|
||||||
position: fixed !important;
|
position: fixed !important;
|
||||||
bottom: 0px;
|
bottom: 0px;
|
||||||
display: flex;
|
/* For some reason -webkit-box behaves internally like -moz-box, but can be used with fixed position. display: flex would work too but it breaks extension menus. */
|
||||||
|
display: -webkit-box;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#nav-bar-customization-target{ flex-grow: 1; }
|
#nav-bar-customization-target{ -webkit-box-flex: 1; }
|
||||||
|
|
||||||
#urlbar[breakout][breakout-extend]{
|
#urlbar[breakout][breakout-extend]{
|
||||||
display: flex !important;
|
display: flex !important;
|
||||||
|
|
Loading…
Reference in a new issue