2023-01-21 17:28:47 +00:00
|
|
|
:root:not([inFullscreen]) #a11y-announcement {
|
|
|
|
/* Kludge to make "a11y-announcement" a replacement for the "browser-bottombox" element removed by FF 109 */
|
|
|
|
display: block !important;
|
|
|
|
background-color: var(--toolbar-bgcolor) !important;
|
|
|
|
}
|
|
|
|
#a11y-announcement,
|
2020-01-12 17:28:08 +00:00
|
|
|
#browser-bottombox {
|
|
|
|
height: 20px;
|
|
|
|
border-top: solid 1px #505050;
|
|
|
|
}
|
|
|
|
#statuspanel {
|
2022-10-18 15:52:44 +00:00
|
|
|
position: fixed !important;
|
2020-01-12 17:28:08 +00:00
|
|
|
height: 20px !important;
|
|
|
|
width: 100% !important;
|
|
|
|
left: 0px !important;
|
|
|
|
bottom: 0px !important;
|
|
|
|
padding: 0px !important;
|
|
|
|
transition-duration: 0s !important;
|
|
|
|
transition-delay: 0s !important;
|
|
|
|
transition-property: none !important;
|
|
|
|
}
|
|
|
|
#statuspanel-label {
|
2023-01-21 17:28:47 +00:00
|
|
|
color: var(--toolbar-color) !important;
|
2020-01-12 17:28:08 +00:00
|
|
|
background: transparent !important;
|
2022-10-18 15:52:44 +00:00
|
|
|
border: none !important;
|
2020-01-12 17:28:08 +00:00
|
|
|
}
|
2017-11-21 01:33:55 +00:00
|
|
|
|
2023-01-21 17:28:47 +00:00
|
|
|
html[inFullscreen="true"] #a11y-announcement,
|
2020-01-12 17:28:08 +00:00
|
|
|
html[inFullscreen="true"] #browser-bottombox {
|
|
|
|
display:none !important;
|
|
|
|
}
|
2023-01-21 17:28:47 +00:00
|
|
|
|
|
|
|
/* Make status bar invisible when fullscreen */
|
2020-01-12 17:28:08 +00:00
|
|
|
html[inFullscreen="true"] #statuspanel {
|
|
|
|
display:none !important;
|
|
|
|
}
|
2023-01-21 17:28:47 +00:00
|
|
|
/* Make status bar visible (as a pop-up box) when fullscreen */
|
|
|
|
/*
|
|
|
|
html[inFullscreen="true"] #statuspanel-label {
|
|
|
|
border: 1px solid #505050 !important;
|
|
|
|
padding-left: 2px !important;
|
|
|
|
padding-bottom: 6px !important;
|
|
|
|
background: var(--toolbar-bgcolor) !important;
|
|
|
|
}
|
|
|
|
*/
|