diff --git a/src/userChrome/browser.css b/src/userChrome/browser.css index 9a141d9..6e1782d 100644 --- a/src/userChrome/browser.css +++ b/src/userChrome/browser.css @@ -6,4 +6,13 @@ #browser { -moz-box-ordinal-group: 0 !important; } + + /* Hide navigation bar in kiosk mode (to prevent bug #29). We can assume FF + * is in kiosk mode when fullscreen and max-width conditions are met, + * because at this max-width the fullscreen button is hidden + * (see appMenu.css). */ + #nav-bar[inFullscreen], + #TabsToolbar[inFullscreen] { + display: none; + } }