2022-01-30 10:58:26 +00:00
|
|
|
/* Copyright 2022 plata
|
2022-01-30 10:48:42 +00:00
|
|
|
* SPDX-License-Identifier: MPL-2.0 */
|
2021-11-18 19:31:10 +00:00
|
|
|
|
|
|
|
/* Move navigation bar to bottom */
|
|
|
|
@media (max-width: 700px) {
|
|
|
|
#browser {
|
|
|
|
-moz-box-ordinal-group: 0 !important;
|
|
|
|
}
|
2021-12-12 09:26:30 +00:00
|
|
|
|
|
|
|
/* 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;
|
|
|
|
}
|
2021-11-18 19:31:10 +00:00
|
|
|
}
|