2000-05-23 04:04:02 +00:00
|
|
|
/** 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
|
|
|
|
|
|
|
|
THIS FILE IS LOCKED DOWN. YOU ARE NOT ALLOWED TO MODIFY IT WITHOUT FIRST HAVING YOUR
|
|
|
|
CHANGES REVIEWED BY hyatt@netscape.com.
|
|
|
|
**/
|
|
|
|
|
|
|
|
/* import the widget style sheets */
|
|
|
|
|
|
|
|
/* all localizable skin settings shall live here */
|
|
|
|
@import url(chrome://global/locale/intl.css);
|
|
|
|
|
|
|
|
@import url(chrome://global/skin/box.css);
|
|
|
|
@import url(chrome://global/skin/button.css);
|
|
|
|
@import url(chrome://global/skin/checkbox.css);
|
|
|
|
@import url(chrome://global/skin/radio.css);
|
|
|
|
@import url(chrome://global/skin/tree.css);
|
2001-03-17 01:59:34 +00:00
|
|
|
@import url(chrome://global/skin/outliner.css);
|
2000-05-23 04:04:02 +00:00
|
|
|
@import url(chrome://global/skin/splitter.css);
|
|
|
|
@import url(chrome://global/skin/radio.css);
|
|
|
|
@import url(chrome://global/skin/menubutton.css);
|
|
|
|
@import url(chrome://global/skin/menulist.css);
|
|
|
|
@import url(chrome://global/skin/menu.css);
|
|
|
|
@import url(chrome://global/skin/formatting.css);
|
|
|
|
@import url(chrome://global/skin/textfield.css);
|
|
|
|
@import url(chrome://global/skin/tabcontrol.css);
|
2000-05-23 05:26:50 +00:00
|
|
|
@import url(chrome://global/skin/toolbar.css);
|
2000-09-13 10:15:11 +00:00
|
|
|
@import url(chrome://global/skin/colorpicker.css);
|
2000-05-23 04:04:02 +00:00
|
|
|
|
|
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
2000-06-15 09:54:41 +00:00
|
|
|
@namespace html url("http://www.w3.org/1999/xhtml");
|
2000-05-23 04:04:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* XXX-DEBUG: HTML namespace/titledbutton striping.
|
|
|
|
**/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* XUL <window> element
|
|
|
|
**/
|
|
|
|
window
|
|
|
|
{
|
2001-02-02 03:27:57 +00:00
|
|
|
background-color : ThreeDFace;
|
|
|
|
color : WindowText;
|
2000-05-23 04:04:02 +00:00
|
|
|
padding : 0px;
|
2001-02-02 03:27:57 +00:00
|
|
|
font : message-box;
|
2000-09-06 02:17:26 +00:00
|
|
|
-moz-user-focus : ignore;
|
2000-05-23 04:04:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
window[wait-cursor]
|
|
|
|
{
|
|
|
|
cursor : wait !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.dialog
|
|
|
|
{
|
2001-02-02 03:27:57 +00:00
|
|
|
background-color : ThreeDFace;
|
2000-08-03 06:24:33 +00:00
|
|
|
padding : 8px 10px 10px 8px;
|
2000-05-23 04:04:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* XUL <box> debugging
|
|
|
|
**/
|
|
|
|
:-moz-horizontal-box-debug
|
|
|
|
{
|
|
|
|
border : 2px solid blue;
|
|
|
|
border-top-width : 10px;
|
|
|
|
padding : 2px;
|
|
|
|
margin : 2px;
|
|
|
|
color : white;
|
|
|
|
}
|
|
|
|
|
|
|
|
:-moz-vertical-box-debug
|
|
|
|
{
|
|
|
|
border : 2px solid red;
|
|
|
|
border-left-width : 10px;
|
|
|
|
padding : 2px;
|
|
|
|
margin : 2px;
|
|
|
|
color : white;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Utility icons (used for alert dialogs, etc)
|
|
|
|
**/
|
|
|
|
.message-icon
|
|
|
|
{
|
|
|
|
list-style-image : url("chrome://global/skin/message-icon.gif");
|
|
|
|
}
|
|
|
|
|
|
|
|
.alert-icon
|
|
|
|
{
|
|
|
|
list-style-image : url("chrome://global/skin/alert-icon.gif");
|
|
|
|
}
|
|
|
|
|
|
|
|
.error-icon
|
|
|
|
{
|
|
|
|
list-style-image : url("chrome://global/skin/error-icon.gif");
|
|
|
|
}
|
|
|
|
|
|
|
|
.question-icon
|
|
|
|
{
|
|
|
|
list-style-image : url("chrome://global/skin/question-icon.gif");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* status-bar
|
|
|
|
*/
|
2000-05-27 03:40:28 +00:00
|
|
|
statusbar
|
|
|
|
{
|
2001-02-02 03:27:57 +00:00
|
|
|
background-color : ThreeDFace;
|
2000-05-27 03:40:28 +00:00
|
|
|
overflow : hidden;
|
2001-02-02 03:27:57 +00:00
|
|
|
border-left : 1px solid ThreeDShadow;
|
|
|
|
border-right : 1px solid ThreeDHighlight;
|
|
|
|
border-bottom : 1px solid ThreeDHighlight;
|
2000-08-16 05:08:01 +00:00
|
|
|
min-height : 16px;
|
2001-03-10 03:16:10 +00:00
|
|
|
/* DON'T DELETE. Removes disappearance of scrollbars
|
|
|
|
* in content pane when window is made smaller.
|
|
|
|
* Talk to evaughan@netscape.com for details.
|
|
|
|
*/
|
|
|
|
min-width : 1px;
|
2000-07-27 06:59:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
statusbarpanel
|
|
|
|
{
|
2001-02-02 03:27:57 +00:00
|
|
|
border-left : 1px solid ThreeDHighlight;
|
|
|
|
border-top : 1px solid ThreeDHighlight;
|
|
|
|
border-right : 1px solid ThreeDShadow;
|
|
|
|
border-bottom : 1px solid ThreeDShadow;
|
2000-07-27 06:59:55 +00:00
|
|
|
padding : 0px 4px 0px 4px;
|
2000-05-27 03:40:28 +00:00
|
|
|
}
|
|
|
|
|
2000-07-27 06:59:55 +00:00
|
|
|
.statusbarpanel-icononly
|
|
|
|
{
|
|
|
|
padding : 0px;
|
|
|
|
}
|
|
|
|
|
2000-05-27 03:40:28 +00:00
|
|
|
.statusbar-panel-icon
|
|
|
|
{
|
|
|
|
list-style-image : inherit;
|
|
|
|
}
|
2000-05-23 04:04:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* html|iframe default sizing
|
|
|
|
**/
|
|
|
|
html|iframe
|
|
|
|
{
|
|
|
|
min-width : 10px;
|
|
|
|
min-height : 10px;
|
|
|
|
width : 100px;
|
|
|
|
height : 100px;
|
|
|
|
border : none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* XUL <progressmeter>
|
|
|
|
**/
|
|
|
|
progressmeter[mode="undetermined"] > .progressmeter-internal-box
|
|
|
|
{
|
|
|
|
background-image : url(chrome://global/skin/progressmeter-busy.gif);
|
|
|
|
}
|
|
|
|
|
2000-05-27 03:40:28 +00:00
|
|
|
progressmeter[mode="undetermined"] > .progressmeter-internal-box > .progressmeter-stack > .progressmeter-progressbar
|
|
|
|
{
|
|
|
|
visibility : collapse;
|
|
|
|
}
|
2000-05-23 04:04:02 +00:00
|
|
|
|
2000-07-28 05:17:00 +00:00
|
|
|
progressmeter
|
2000-05-23 04:04:02 +00:00
|
|
|
{
|
|
|
|
min-width : 100px;
|
2001-02-02 03:27:57 +00:00
|
|
|
border-left : 1px solid ThreeDShadow;
|
|
|
|
border-top : 1px solid ThreeDShadow;
|
|
|
|
border-right : 1px solid ThreeDHighlight;
|
|
|
|
border-bottom : 1px solid ThreeDHighlight;
|
|
|
|
background-color : ThreeDFace;
|
2000-07-28 05:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.progressmeter-statusbar
|
|
|
|
{
|
2001-02-02 03:27:57 +00:00
|
|
|
border-left : 1px solid ThreeDHighlight;
|
|
|
|
border-top : 1px solid ThreeDHighlight;
|
|
|
|
border-right : 1px solid ThreeDShadow;
|
|
|
|
border-bottom : 1px solid ThreeDShadow;
|
2000-05-23 04:04:02 +00:00
|
|
|
}
|
2000-07-27 06:59:55 +00:00
|
|
|
|
|
|
|
.progress-text
|
|
|
|
{
|
|
|
|
visibility : collapse;
|
|
|
|
}
|
2000-05-23 04:04:02 +00:00
|
|
|
|
2000-05-27 03:40:28 +00:00
|
|
|
.progressmeter-internal-box
|
2000-05-23 04:04:02 +00:00
|
|
|
{
|
2001-02-02 03:27:57 +00:00
|
|
|
border : 1px solid ThreeDFace;
|
2000-05-27 03:40:28 +00:00
|
|
|
padding : 1px;
|
2000-05-23 04:04:02 +00:00
|
|
|
}
|
2000-05-27 03:40:28 +00:00
|
|
|
|
|
|
|
.progressmeter-inset
|
2000-05-23 04:04:02 +00:00
|
|
|
{
|
2000-05-27 03:40:28 +00:00
|
|
|
margin : 1px 5px 2px 5px;
|
2000-05-23 04:04:02 +00:00
|
|
|
}
|
|
|
|
|
2000-05-27 03:40:28 +00:00
|
|
|
.progressmeter-inset > .progressmeter-internal-box
|
2000-05-23 04:04:02 +00:00
|
|
|
{
|
2001-02-02 03:27:57 +00:00
|
|
|
border-left : 1px solid ThreeDDarkShadow;
|
|
|
|
border-top : 1px solid ThreeDDarkShadow;
|
|
|
|
border-right : 1px solid ThreeDHighlight;
|
|
|
|
border-bottom : 1px solid ThreeDHighlight;
|
2000-05-23 04:04:02 +00:00
|
|
|
}
|
|
|
|
|
2000-05-27 03:40:28 +00:00
|
|
|
/* progress indicators */
|
|
|
|
.progress-bar
|
|
|
|
{
|
2001-02-02 03:27:57 +00:00
|
|
|
background-color : ThreeDShadow;
|
2000-05-27 03:40:28 +00:00
|
|
|
}
|
|
|
|
|
2000-05-23 04:04:02 +00:00
|
|
|
/** XUL <scrollbar> element **/
|
|
|
|
scrollbar
|
|
|
|
{
|
2000-09-06 02:17:26 +00:00
|
|
|
-moz-user-focus : ignore;
|
2000-05-23 04:04:02 +00:00
|
|
|
}
|
|
|
|
|
2000-08-28 04:37:46 +00:00
|
|
|
.disabled-text-bottom
|
2000-05-23 04:04:02 +00:00
|
|
|
{
|
2001-02-02 03:27:57 +00:00
|
|
|
color : ThreeDShadow;
|
2000-05-23 04:04:02 +00:00
|
|
|
margin : 0px 1px 1px 0px;
|
|
|
|
}
|
|
|
|
|
2000-08-28 04:37:46 +00:00
|
|
|
.disabled-text-top
|
2000-05-23 04:04:02 +00:00
|
|
|
{
|
2001-02-02 03:27:57 +00:00
|
|
|
color : ThreeDHighlight;
|
2000-05-23 04:04:02 +00:00
|
|
|
margin : 1px 0px 0px 1px;
|
|
|
|
}
|