gecko-dev/xpfe/global/resources/skin/xul.css

230 lines
2.9 KiB
CSS
Raw Normal View History

/** this should only contain XUL dialog and document window widget defaults. Defaults for widgets of
a particular application should be in that application's style sheet.
For example style definitions for navigator can be found in navigator.css
1999-08-28 00:36:07 +00:00
THIS FILE IS LOCKED DOWN. YOU ARE NOT ALLOWED TO MODIFY IT WITHOUT FIRST HAVING YOUR
CHANGES REVIEWED BY hyatt@netscape.com.
**/
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); /* set default namespace to XUL */
/**
* All elements that have no visual representation
*/
commands, commandset, command {
display: none;
}
broadcasterset, broadcaster {
display: none;
}
observes {
display: none;
}
template {
display: none;
}
/**********************************
* Window
**********************************/
window {
display: block;
overflow: hidden;
height: 100%;
width: 100%;
}
/**********************************
* XUL widgets
**********************************/
/******** Box *******/
box {
display: block;
}
/**
* Used as a space between things in boxes
*/
spring {
display: block;
}
/******* ToolBox & ToolBar *******/
toolbox {
display: block;
}
toolbar, menubar {
display:block;
}
toolbar[collapsed="true"] {
display:none;
}
toolbar[hidden="true"] {
display:none;
}
/****** Progress Meter ********/
progressmeter {
display: inline;
}
/********* XP Menus ***********/
menubar[collapsed="true"] {
display:none;
}
menubar[hidden="true"] {
display:none;
}
menu {
display: block;
1999-07-26 01:47:59 +00:00
}
menuitem {
display: block;
1999-07-26 01:47:59 +00:00
}
1999-09-10 08:56:26 +00:00
popupset {
1999-08-20 22:58:32 +00:00
display: block;
}
menupopup {
display: none;
}
1999-09-10 08:56:26 +00:00
popup {
display: none;
}
menupopup[menugenerated="true"] {
1999-07-20 10:32:38 +00:00
display: block;
}
1999-09-10 08:56:26 +00:00
popup[menugenerated="true"] {
display: block;
}
menupopup, popup {
visibility: hidden;
1999-09-10 08:56:26 +00:00
}
menupopup[menuactive="true"] {
1999-07-20 07:27:40 +00:00
visibility: visible;
}
1999-09-10 08:56:26 +00:00
popup[menuactive="true"] {
visibility: visible;
}
menuseparator {
display: block;
}
/******** Titled buttons **********/
titledbutton {
display: inline;
}
/******** Tree widget **********/
tree {
display: table;
table-layout: fixed;
}
treeitem {
display: table-row-group;
}
treerow {
display: table-row;
}
treehead {
display: table-header-group;
}
treechildren {
display: table-row-group;
}
treecell {
display: table-cell;
}
treeitem > treechildren {
visibility: collapse;
}
treeitem[open="true"] > treechildren {
visibility: visible;
}
treecol {
display: table-column;
}
/********** Tab widget *********/
tab {
display: inline;
}
tab:active {
display: inline;
}
tabbox {
display: block;
}
tabcontrol {
display: block;
}
:-moz-deck-hidden {
visibility: hidden;
}
/********* XP Scrollbar *********/
thumb {
display: block;
}
slider {
display: block;
}
scrollbarbutton {
display: inline;
}
scrollbar[value="hidden"] {
visibility: hidden;
}
splitter {
display: block;
}
grippy {
display: block;
}