source: trunk/debathena/debathena/kiosk/userChrome.css @ 24213

Revision 24213, 623 bytes checked in by rbasch, 14 years ago (diff)
In debathena-kiosk: * Add a launcher GUI for the new gdm login window. (Trac: #431) * Disable the tabs bar for Firefox 3.5. * Move non-executables to /usr/share/debathena-kiosk.
Line 
1/*
2 * Additional UI customizations for kiosk mode.
3 */
4
5/*
6 * Do not remove the @namespace line -- it's required for correct functioning
7 */
8@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
9
10/* Disable window controls other than "close" for fullscreen mode. */
11#nav-bar #window-controls #minimize-button, #restore-button
12{
13    display:none !important;
14}
15
16/* Do not display the tabs bar. */
17.tabbrowser-tabs
18{
19    display:none !important;
20}
21
22/* Disallow exit from fullscreen mode. */
23menuitem[label="Exit Full Screen Mode"]
24{
25    display:none !important;
26}
Note: See TracBrowser for help on using the repository browser.