1
0
mirror of https://github.com/MatMoul/firefox-gui-chrome-css.git synced 2024-12-23 17:56:11 +00:00
firefox-gui-chrome-css/chrome/userChrome.css

42 lines
1.2 KiB
CSS
Raw Normal View History

2024-11-01 22:55:25 +00:00
var(--toolbar-bgcolor, #2a2e32);
2023-01-21 17:28:47 +00:00
:root:not([inFullscreen]) #a11y-announcement {
2024-11-01 22:55:25 +00:00
/* Kludge to make "a11y-announcement" a replacement for the removed "browser-bottombox" element */
2023-01-21 17:28:47 +00:00
display: block !important;
2024-11-01 22:55:25 +00:00
/* Also give it the right colour - and Mozilla says "opaque for layers optimization" (although this may not apply) */
2023-01-21 17:28:47 +00:00
background-color: var(--toolbar-bgcolor) !important;
}
2024-11-01 22:55:25 +00:00
#browser-bottombox,
#a11y-announcement {
2020-01-12 17:28:08 +00:00
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;
}
2024-11-01 22:55:25 +00:00
#statuspanel>* {
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
2024-11-01 22:55:25 +00:00
html[inFullscreen="true"] #browser-bottombox,
html[inFullscreen="true"] #a11y-announcement {
2020-01-12 17:28:08 +00:00
display:none !important;
}
2024-11-01 22:55:25 +00:00
/* Make status text visible - as a pop-up box */
html[inFullscreen="true"] #statuspanel>* {
2023-01-21 17:28:47 +00:00
border: 1px solid #505050 !important;
padding-left: 2px !important;
padding-bottom: 6px !important;
background: var(--toolbar-bgcolor) !important;
}