Fixing line endings, rs=mconnor, no bug

This commit is contained in:
neil%parkwaycc.co.uk 2005-01-27 09:34:17 +00:00
parent aad64ad083
commit 9ac94a2acc
11 changed files with 558 additions and 26 deletions

View File

@ -1,2 +1,67 @@
/* * The contents of this file are subject to the Netscape Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.mozilla.org/NPL/ * * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. * * The Original Code is Mozilla Communicator client code, released * March 31, 1998. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998-1999 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): * */ /* ===== checkbox.css =================================================== == Styles used by the XUL checkbox element. ======================================================================= */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* ::::: checkbox ::::: */ checkbox { -moz-appearance: checkbox-container; -moz-user-focus: ignore; -moz-box-align: center; margin: 2px 2px 4px 2px; } .checkbox-label-box { margin-left: 0px; padding: 0px; } .checkbox-icon { margin-right: 2px; } .checkbox-label { margin: 0 !important;
padding-bottom: 1px; } /* ..... disabled state ..... */ checkbox[disabled="true"] { color: GrayText !important; } /* ::::: checkmark image ::::: */ .checkbox-check { -moz-appearance: checkbox; width: 14px; height: 12px; }
/*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is Mozilla Communicator client code, released
* March 31, 1998.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
*
*/
/* ===== checkbox.css ===================================================
== Styles used by the XUL checkbox element.
======================================================================= */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* ::::: checkbox ::::: */
checkbox {
-moz-appearance: checkbox-container;
-moz-user-focus: ignore;
-moz-box-align: center;
margin: 2px 2px 4px 2px;
}
.checkbox-label-box {
margin-left: 0px;
padding: 0px;
}
.checkbox-icon {
margin-right: 2px;
}
.checkbox-label {
margin: 0 !important;
padding-bottom: 1px;
}
/* ..... disabled state ..... */
checkbox[disabled="true"] {
color: GrayText !important;
}
/* ::::: checkmark image ::::: */
.checkbox-check {
-moz-appearance: checkbox;
width: 14px;
height: 12px;
}

View File

@ -1,2 +1,66 @@
/* * The contents of this file are subject to the Netscape Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.mozilla.org/NPL/ * * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. * * The Original Code is Mozilla Communicator client code, released * March 31, 1998. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998-1999 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): * */ /* ===== colorpicker.css ================================================ == Styles used by the XUL colorpicker element. ======================================================================= */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* ::::: colorpicker button ::::: */ /* colorpicker button */ colorpicker[type="button"] { width: 38px; height: 24px; border: 1px solid #a7a7a7; background-color: ThreeDFace; padding: 3px;
-moz-appearance: button-bevel; } .colorpicker-button-colorbox { border: 1px solid #000000; } /* ::::: colorpicker tiles ::::: */ .colorpickertile { width : 20px; height : 20px; margin : 1px; } .colorpickertile[selected="true"] { border : 1px outset #C0C0C0; } .colorpickertile[hover="true"] { border : 1px dotted #A7A7A7; } .cp-light[hover="true"] { border : 1px dotted #000000; }
/*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is Mozilla Communicator client code, released
* March 31, 1998.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
*
*/
/* ===== colorpicker.css ================================================
== Styles used by the XUL colorpicker element.
======================================================================= */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* ::::: colorpicker button ::::: */
/* colorpicker button */
colorpicker[type="button"] {
width: 38px;
height: 24px;
border: 1px solid #a7a7a7;
background-color: ThreeDFace;
padding: 3px;
-moz-appearance: button-bevel;
}
.colorpicker-button-colorbox {
border: 1px solid #000000;
}
/* ::::: colorpicker tiles ::::: */
.colorpickertile {
width : 20px;
height : 20px;
margin : 1px;
}
.colorpickertile[selected="true"] {
border : 1px outset #C0C0C0;
}
.colorpickertile[hover="true"] {
border : 1px dotted #A7A7A7;
}
.cp-light[hover="true"] {
border : 1px dotted #000000;
}

View File

@ -29,7 +29,8 @@
.console-box {
background-color: -moz-Field;
color: -moz-FieldText; overflow: auto;
color: -moz-FieldText;
overflow: auto;
}
/* ::::: console rows ::::: */

View File

@ -1 +1,30 @@
<?xml version="1.0"?> <RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:chrome="http://www.mozilla.org/rdf/chrome#"> <!-- List all the skins being supplied by this theme --> <RDF:Seq about="urn:mozilla:skin:root"> <RDF:li resource="urn:mozilla:skin:classic/1.0" /> </RDF:Seq> <!-- pinstripe Information --> <RDF:Description about="urn:mozilla:skin:classic/1.0" chrome:displayName="Mozilla Firebird Default" chrome:accessKey="P" chrome:author="Kevin Gerich (webmail@kmgerich.com)" chrome:description="Mac OS X theme." chrome:name="classic/1.0" chrome:image="preview.gif"> <chrome:packages> <RDF:Seq about="urn:mozilla:skin:classic/1.0:packages"> <RDF:li resource="urn:mozilla:skin:classic/1.0:global"/> </RDF:Seq> </chrome:packages> </RDF:Description> <!-- Version Information. State that we work only with major version 1 of this package. --> <RDF:Description about="urn:mozilla:skin:classic/1.0:global" chrome:skinVersion="1.5"/> </RDF:RDF>
<?xml version="1.0"?>
<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:chrome="http://www.mozilla.org/rdf/chrome#">
<!-- List all the skins being supplied by this theme -->
<RDF:Seq about="urn:mozilla:skin:root">
<RDF:li resource="urn:mozilla:skin:classic/1.0" />
</RDF:Seq>
<!-- pinstripe Information -->
<RDF:Description about="urn:mozilla:skin:classic/1.0"
chrome:displayName="Mozilla Firebird Default"
chrome:accessKey="P"
chrome:author="Kevin Gerich (webmail@kmgerich.com)"
chrome:description="Mac OS X theme."
chrome:name="classic/1.0"
chrome:image="preview.gif">
<chrome:packages>
<RDF:Seq about="urn:mozilla:skin:classic/1.0:packages">
<RDF:li resource="urn:mozilla:skin:classic/1.0:global"/>
</RDF:Seq>
</chrome:packages>
</RDF:Description>
<!-- Version Information. State that we work only with major version 1 of this
package. -->
<RDF:Description about="urn:mozilla:skin:classic/1.0:global"
chrome:skinVersion="1.5"/>
</RDF:RDF>

View File

@ -1 +1,69 @@
<?xml version="1.0"?> <bindings id="globalBindings" xmlns="http://www.mozilla.org/xbl" xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:xbl="http://www.mozilla.org/xbl"> <binding id="tab" extends="chrome://global/content/bindings/tabbox.xml#tab"> <content> <xul:hbox class="tab-image-left" xbl:inherits="selected"/> <xul:hbox flex="1" class="tab-image-middle" align="center" xbl:inherits="selected"> <xul:stack class="tab-icon"> <xul:image xbl:inherits="validate,src=image" class="tab-icon-image"/> <xul:image class="tab-extra-status"/> </xul:stack> <xul:label flex="1" xbl:inherits="value=label,crop,accesskey" crop="right" class="tab-text"/> </xul:hbox> <xul:hbox class="tab-image-right" xbl:inherits="selected"/> </content> </binding> <binding id="tabs" extends="chrome://global/content/bindings/tabbox.xml#tabs"> <content> <xul:spacer class="tab-border-top-left-cap"/> <xul:spacer class="tab-border-top-left"/> <children/> <xul:stack flex="1"> <xul:spacer class="tab-border-top-right"/> <xul:hbox class="tabs-misc-dec" align="center"> <xul:spacer flex="1"/> </xul:hbox> </xul:stack> <xul:spacer class="tab-border-top-right-cap"/> </content> </binding> <binding id="tabs-closebutton" extends="chrome://global/content/bindings/tabbox.xml#tabs"> <content> <xul:stack flex="1" class="tabs-stack"> <xul:vbox> <xul:spacer flex="1"/> <xul:hbox class="tabs-bottom" align="center"/> </xul:vbox> <xul:vbox> <xul:hbox> <xul:stack> <xul:spacer class="tabs-left"/> </xul:stack> <xul:hbox flex="1" style="min-width: 1px;"> <children/> <xul:spacer class="tabs-right" flex="1"/> </xul:hbox> <xul:stack> <xul:spacer class="tabs-right"/> <xul:hbox class="tabs-closebutton-box" align="center" pack="end"> <xul:toolbarbutton class="tabs-closebutton close-button" xbl:inherits="disabled=disableclose,oncommand=onclosetab"/> </xul:hbox> </xul:stack> </xul:hbox> <xul:spacer class="tabs-bottom-spacer"/> </xul:vbox> </xul:stack> </content> </binding> </bindings>
<?xml version="1.0"?>
<bindings id="globalBindings"
xmlns="http://www.mozilla.org/xbl"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:xbl="http://www.mozilla.org/xbl">
<binding id="tab" extends="chrome://global/content/bindings/tabbox.xml#tab">
<content>
<xul:hbox class="tab-image-left" xbl:inherits="selected"/>
<xul:hbox flex="1" class="tab-image-middle" align="center" xbl:inherits="selected">
<xul:stack class="tab-icon">
<xul:image xbl:inherits="validate,src=image" class="tab-icon-image"/>
<xul:image class="tab-extra-status"/>
</xul:stack>
<xul:label flex="1" xbl:inherits="value=label,crop,accesskey" crop="right" class="tab-text"/>
</xul:hbox>
<xul:hbox class="tab-image-right" xbl:inherits="selected"/>
</content>
</binding>
<binding id="tabs" extends="chrome://global/content/bindings/tabbox.xml#tabs">
<content>
<xul:spacer class="tab-border-top-left-cap"/>
<xul:spacer class="tab-border-top-left"/>
<children/>
<xul:stack flex="1">
<xul:spacer class="tab-border-top-right"/>
<xul:hbox class="tabs-misc-dec" align="center">
<xul:spacer flex="1"/>
</xul:hbox>
</xul:stack>
<xul:spacer class="tab-border-top-right-cap"/>
</content>
</binding>
<binding id="tabs-closebutton"
extends="chrome://global/content/bindings/tabbox.xml#tabs">
<content>
<xul:stack flex="1" class="tabs-stack">
<xul:vbox>
<xul:spacer flex="1"/>
<xul:hbox class="tabs-bottom" align="center"/>
</xul:vbox>
<xul:vbox>
<xul:hbox>
<xul:stack>
<xul:spacer class="tabs-left"/>
</xul:stack>
<xul:hbox flex="1" style="min-width: 1px;">
<children/>
<xul:spacer class="tabs-right" flex="1"/>
</xul:hbox>
<xul:stack>
<xul:spacer class="tabs-right"/>
<xul:hbox class="tabs-closebutton-box" align="center" pack="end">
<xul:toolbarbutton class="tabs-closebutton close-button" xbl:inherits="disabled=disableclose,oncommand=onclosetab"/>
</xul:hbox>
</xul:stack>
</xul:hbox>
<xul:spacer class="tabs-bottom-spacer"/>
</xul:vbox>
</xul:stack>
</content>
</binding>
</bindings>

View File

@ -1 +1,28 @@
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /** * All the properties in this rule are important to avoid having to create * a special type of tree. This stylesheet can be loaded into a document with * a single tree that is a link tree. Hardly elegant but it's efficient. */ treeitem[selected="true"] > treerow { background : transparent !important; border : none !important; color : -moz-FieldText !important; } treecell:hover { text-decoration : underline !important; color : #000080 !important; cursor : pointer; } treecell:hover:active { text-decoration : underline !important; color : red !important; }
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/**
* All the properties in this rule are important to avoid having to create
* a special type of tree. This stylesheet can be loaded into a document with
* a single tree that is a link tree. Hardly elegant but it's efficient.
*/
treeitem[selected="true"] > treerow
{
background : transparent !important;
border : none !important;
color : -moz-FieldText !important;
}
treecell:hover
{
text-decoration : underline !important;
color : #000080 !important;
cursor : pointer;
}
treecell:hover:active
{
text-decoration : underline !important;
color : red !important;
}

View File

@ -1,8 +1,156 @@
/* * The contents of this file are subject to the Netscape Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.mozilla.org/NPL/ * * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. * * The Original Code is Mozilla Communicator client code, released * March 31, 1998. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998-2001 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): * Joe Hewitt (hewitt@netscape.com)
* Kevin Gerich (webmail@kmgerich.com) */ /* ===== listbox.css ======================================================= == Styles used by XUL listbox-related elements. ======================================================================= */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* ::::: listbox ::::: */ listbox { margin: 2px 4px; border-top: 1px solid #A1A1A1;
/*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is Mozilla Communicator client code, released
* March 31, 1998.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998-2001 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Joe Hewitt (hewitt@netscape.com)
* Kevin Gerich (webmail@kmgerich.com)
*/
/* ===== listbox.css =======================================================
== Styles used by XUL listbox-related elements.
======================================================================= */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* ::::: listbox ::::: */
listbox {
margin: 2px 4px;
border-top: 1px solid #A1A1A1;
border-right: 1px solid #C3C3C3;
border-bottom: 1px solid #DDDDDD;
border-left: 1px solid #C3C3C3;
background-color: #FFFFFF; color: -moz-FieldText; } .listcell-label { margin: 0px !important; padding: 0px 0px 1px 4px; white-space: nowrap; } /* ::::: listitem ::::: */ listitem { border: 1px solid transparent; } listbox:focus > listitem[selected="true"][current="true"] { } listitem[selected="true"] { background-color: -moz-Dialog; color: -moz-DialogText; } listbox:focus > listitem[selected="true"] {
background-color: #FFFFFF;
color: -moz-FieldText;
}
.listcell-label {
margin: 0px !important;
padding: 0px 0px 1px 4px;
white-space: nowrap;
}
/* ::::: listitem ::::: */
listitem {
border: 1px solid transparent;
}
listbox:focus > listitem[selected="true"][current="true"] {
}
listitem[selected="true"] {
background-color: -moz-Dialog;
color: -moz-DialogText;
}
listbox:focus > listitem[selected="true"] {
background-color: #3874D1;
color: #FFFFFF; } /* ::::: listheader ::::: */ listheader { -moz-appearance: treeheadercell; -moz-box-align: center; border: 2px solid; -moz-border-top-colors: ThreeDHighlight ThreeDLightShadow; -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; -moz-border-left-colors: ThreeDHighlight ThreeDLightShadow; background-color: -moz-Dialog; color: -moz-DialogText; padding: 0 4px; } listheader[sortable="true"]:hover:active { border-top: 2px solid; border-right: 1px solid; border-bottom: 1px solid; border-left: 2px solid; -moz-border-top-colors: ThreeDShadow -moz-Dialog; -moz-border-right-colors: ThreeDShadow; -moz-border-bottom-colors: ThreeDShadow; -moz-border-left-colors: ThreeDShadow -moz-Dialog; padding: 1px 4px 0px 5px; } .listheader-icon { margin-right: 2px; } .listheader-label { margin: 0px !important; } /* ..... sort direction icon ..... */ .listheader-sortdirection { -moz-appearance: treeheadersortarrow; list-style-image: none; } .listheader-sortdirection[sortDirection="ascending"] { list-style-image: url("chrome://global/skin/tree/sort-asc.gif"); } .listheader-sortdirection[sortDirection="descending"] { list-style-image: url("chrome://global/skin/tree/sort-dsc.gif"); } /* ::::: listcell ::::: */ .listcell-label { margin: 0px !important; padding: 0px 0px 1px 4px; white-space: nowrap; } .listcell-icon { margin-right: 2px; } .listcell-label[disabled="true"] { color: GrayText; } /* ::::: listcell checkbox ::::: */ .listcell-check { -moz-appearance: checkbox; -moz-box-align: center; margin: 0px 2px; border: 1px solid -moz-DialogText; min-width: 13px; min-height: 13px; background: -moz-Field url("chrome://global/skin/checkbox/cbox.gif") no-repeat 50% 50%; } .listcell-check[checked="true"] { background-image: url("chrome://global/skin/checkbox/cbox-check.gif"); } .listcell-check[disabled="true"] { border-color: GrayText; } .listcell-check[disabled="true"][checked="true"] { background-image: url("chrome://global/skin/checkbox/cbox-check-dis.gif"); }
color: #FFFFFF;
}
/* ::::: listheader ::::: */
listheader {
-moz-appearance: treeheadercell;
-moz-box-align: center;
border: 2px solid;
-moz-border-top-colors: ThreeDHighlight ThreeDLightShadow;
-moz-border-right-colors: ThreeDDarkShadow ThreeDShadow;
-moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow;
-moz-border-left-colors: ThreeDHighlight ThreeDLightShadow;
background-color: -moz-Dialog;
color: -moz-DialogText;
padding: 0 4px;
}
listheader[sortable="true"]:hover:active {
border-top: 2px solid;
border-right: 1px solid;
border-bottom: 1px solid;
border-left: 2px solid;
-moz-border-top-colors: ThreeDShadow -moz-Dialog;
-moz-border-right-colors: ThreeDShadow;
-moz-border-bottom-colors: ThreeDShadow;
-moz-border-left-colors: ThreeDShadow -moz-Dialog;
padding: 1px 4px 0px 5px;
}
.listheader-icon {
margin-right: 2px;
}
.listheader-label {
margin: 0px !important;
}
/* ..... sort direction icon ..... */
.listheader-sortdirection {
-moz-appearance: treeheadersortarrow;
list-style-image: none;
}
.listheader-sortdirection[sortDirection="ascending"] {
list-style-image: url("chrome://global/skin/tree/sort-asc.gif");
}
.listheader-sortdirection[sortDirection="descending"] {
list-style-image: url("chrome://global/skin/tree/sort-dsc.gif");
}
/* ::::: listcell ::::: */
.listcell-label {
margin: 0px !important;
padding: 0px 0px 1px 4px;
white-space: nowrap;
}
.listcell-icon {
margin-right: 2px;
}
.listcell-label[disabled="true"] {
color: GrayText;
}
/* ::::: listcell checkbox ::::: */
.listcell-check {
-moz-appearance: checkbox;
-moz-box-align: center;
margin: 0px 2px;
border: 1px solid -moz-DialogText;
min-width: 13px;
min-height: 13px;
background: -moz-Field url("chrome://global/skin/checkbox/cbox.gif") no-repeat 50% 50%;
}
.listcell-check[checked="true"] {
background-image: url("chrome://global/skin/checkbox/cbox-check.gif");
}
.listcell-check[disabled="true"] {
border-color: GrayText;
}
.listcell-check[disabled="true"][checked="true"] {
background-image: url("chrome://global/skin/checkbox/cbox-check-dis.gif");
}

View File

@ -1,16 +1,81 @@
/* ***** BEGIN LICENSE BLOCK ***** * Version: NPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Netscape Public License * Version 1.1 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * http://www.mozilla.org/NPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Joe Hewitt <hewitt@netscape.com>
* Kevin Gerich (webmail@kmgerich.com) * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the NPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the NPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ /* ===== progressmeter.css ============================================== == Styles used by the XUL progressmeter element. ======================================================================= */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* ::::: progressmeter ::::: */ progressmeter { -moz-appearance: progressbar; margin: 2px 4px; min-width: 128px; height: 12px;
}
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Netscape Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Joe Hewitt <hewitt@netscape.com>
* Kevin Gerich (webmail@kmgerich.com)
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the NPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
/* ===== progressmeter.css ==============================================
== Styles used by the XUL progressmeter element.
======================================================================= */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* ::::: progressmeter ::::: */
progressmeter {
-moz-appearance: progressbar;
margin: 2px 4px;
min-width: 128px;
height: 12px;
}
.progress-remainder[flex="100"], .progress-remainder[flex="0"] {
.progress-remainder[flex="100"], .progress-remainder[flex="0"] {
background-image: none !important;
-moz-appearance: none; }
/* ::::: statusbar progressmeter ::::: */ .progressmeter-statusbar { margin: 0; border-width: 1px; }
-moz-appearance: none;
}
.progressmeter-statusbar > .progressmeter-remainder { }
/* ::::: statusbar progressmeter ::::: */
.progressmeter-statusbar[mode="determined"] { margin: 0; border-width: 1px; }
/* ::::: statusbar progressmeter ::::: */
.progressmeter-statusbar {
margin: 0;
border-width: 1px;
}
.progressmeter-statusbar > .progressmeter-remainder {
}
/* ::::: statusbar progressmeter ::::: */
.progressmeter-statusbar[mode="determined"] {
margin: 0;
border-width: 1px;
}
/* :::::: download progress meter :::::::: */

View File

@ -1 +1,37 @@
/* * The contents of this file are subject to the Mozilla Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is Håkan Waara * Portions created by Håkan Waara are Copyright (C) * Håkan Waara. All Rights Reserved. * * Contributor(s): Håkan Waara (Original Author) */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); .up { list-style-image: url("chrome://global/skin/spinbtn-up.gif") } .up:hover:active { list-style-image: url("chrome://global/skin/spinbtn-up-act.gif") } .down { list-style-image: url("chrome://global/skin/spinbtn-dn.gif") } .down:hover:active { list-style-image: url("chrome://global/skin/spinbtn-dn-act.gif") }
/*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Håkan Waara
* Portions created by Håkan Waara are Copyright (C)
* Håkan Waara. All Rights Reserved.
*
* Contributor(s): Håkan Waara (Original Author)
*/
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
.up {
list-style-image: url("chrome://global/skin/spinbtn-up.gif")
}
.up:hover:active {
list-style-image: url("chrome://global/skin/spinbtn-up-act.gif")
}
.down {
list-style-image: url("chrome://global/skin/spinbtn-dn.gif")
}
.down:hover:active {
list-style-image: url("chrome://global/skin/spinbtn-dn-act.gif")
}

View File

@ -1 +1,27 @@
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); #wiz-back-button { list-style-image : url("chrome://global/skin/scroll-left.gif"); } #wiz-back-button[disabled] { list-style-image : url("chrome://global/skin/scroll-left-disabled.gif"); } #wiz-next-button { list-style-image : url("chrome://global/skin/scroll-right.gif"); } #wiz-next-button[disabled] { list-style-image : url("chrome://global/skin/scroll-right-disabled.gif"); } #wizardButtons { margin-bottom : 0.4em; } .box-wizardcontent { margin-left : 44px; margin-right : 44px; width : 30em; }
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#wiz-back-button {
list-style-image : url("chrome://global/skin/scroll-left.gif");
}
#wiz-back-button[disabled] {
list-style-image : url("chrome://global/skin/scroll-left-disabled.gif");
}
#wiz-next-button {
list-style-image : url("chrome://global/skin/scroll-right.gif");
}
#wiz-next-button[disabled] {
list-style-image : url("chrome://global/skin/scroll-right-disabled.gif");
}
#wizardButtons
{
margin-bottom : 0.4em;
}
.box-wizardcontent
{
margin-left : 44px;
margin-right : 44px;
width : 30em;
}

View File

@ -38,11 +38,13 @@
*/
.listBox {
margin: 2px 4px; border-top: 1px solid #A1A1A1 !important;
margin: 2px 4px;
border-top: 1px solid #A1A1A1 !important;
border-right: 1px solid #C3C3C3 !important;
border-bottom: 1px solid #DDDDDD !important;
border-left: 1px solid #C3C3C3 !important;
background-color: #FFFFFF; color: -moz-FieldText;
background-color: #FFFFFF;
color: -moz-FieldText;
}
.indent {
@ -98,4 +100,5 @@
#defaultAppName {
margin-left: 6px !important;
}
}