зеркало из https://github.com/mozilla/gecko-dev.git
Fix form controls and Windows/Unix classic skin to use new system colors -moz-FieldText, -moz-Dialog, and -moz-DialogText where appropriate to allow accurate representation of system colors on GTK.
Fix various CSS errors in themes. b=67448 r=hewitt@netscape.com sr=blizzard@mozilla.org
This commit is contained in:
Родитель
2948226621
Коммит
9db9333e20
|
@ -60,9 +60,9 @@ fieldset {
|
||||||
|
|
||||||
/* default inputs, text inputs, and selects */
|
/* default inputs, text inputs, and selects */
|
||||||
input {
|
input {
|
||||||
background-color: -moz-field;
|
background-color: -moz-Field;
|
||||||
border: 2px inset ThreeDFace;
|
border: 2px inset ThreeDFace;
|
||||||
color: WindowText;
|
color: -moz-FieldText;
|
||||||
cursor: text;
|
cursor: text;
|
||||||
font: field;
|
font: field;
|
||||||
text-align: start;
|
text-align: start;
|
||||||
|
@ -74,9 +74,9 @@ input {
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
background-color: -moz-field;
|
background-color: -moz-Field;
|
||||||
border: 2px inset ThreeDFace;
|
border: 2px inset ThreeDFace;
|
||||||
color: WindowText;
|
color: -moz-FieldText;
|
||||||
cursor: text;
|
cursor: text;
|
||||||
font: field;
|
font: field;
|
||||||
margin: 1px 0 1px 0;
|
margin: 1px 0 1px 0;
|
||||||
|
@ -96,11 +96,11 @@ textarea {
|
||||||
|
|
||||||
select {
|
select {
|
||||||
font: list;
|
font: list;
|
||||||
background-color: -moz-field;
|
background-color: -moz-Field;
|
||||||
border: 2px inset ThreeDFace;
|
border: 2px inset ThreeDFace;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
color: WindowText;
|
color: -moz-FieldText;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-align: start;
|
text-align: start;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
@ -227,7 +227,7 @@ input[type="image"][disabled] {
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="image"]:focus {
|
input[type="image"]:focus {
|
||||||
-moz-outline: 1px dotted WindowText;
|
-moz-outline: 1px dotted -moz-FieldText;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* file selector */
|
/* file selector */
|
||||||
|
@ -253,8 +253,8 @@ input[type="file"] > input[type="button"]:-moz-focus-inner
|
||||||
/* radio buttons */
|
/* radio buttons */
|
||||||
input[type="radio"] {
|
input[type="radio"] {
|
||||||
border: 2px inset ThreeDFace;
|
border: 2px inset ThreeDFace;
|
||||||
background-color: -moz-field;
|
background-color: -moz-Field;
|
||||||
color: WindowText;
|
color: -moz-FieldText;
|
||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
@ -267,8 +267,8 @@ input[type="radio"] {
|
||||||
/* check boxes */
|
/* check boxes */
|
||||||
input[type="checkbox"] {
|
input[type="checkbox"] {
|
||||||
border: 2px inset ThreeDFace;
|
border: 2px inset ThreeDFace;
|
||||||
background-color: -moz-field;
|
background-color: -moz-Field;
|
||||||
color: WindowText;
|
color: -moz-FieldText;
|
||||||
width: 13px;
|
width: 13px;
|
||||||
height: 13px;
|
height: 13px;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
@ -304,7 +304,7 @@ input[type="radio"]:hover:active {
|
||||||
}
|
}
|
||||||
|
|
||||||
:-moz-radio {
|
:-moz-radio {
|
||||||
background-color: WindowText;
|
background-color: -moz-FieldText;
|
||||||
width: 4px;
|
width: 4px;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
left: 6px;
|
left: 6px;
|
||||||
|
|
|
@ -60,9 +60,9 @@ fieldset {
|
||||||
|
|
||||||
/* default inputs, text inputs, and selects */
|
/* default inputs, text inputs, and selects */
|
||||||
input {
|
input {
|
||||||
background-color: -moz-field;
|
background-color: -moz-Field;
|
||||||
border: 2px inset ThreeDFace;
|
border: 2px inset ThreeDFace;
|
||||||
color: WindowText;
|
color: -moz-FieldText;
|
||||||
cursor: text;
|
cursor: text;
|
||||||
font: field;
|
font: field;
|
||||||
text-align: start;
|
text-align: start;
|
||||||
|
@ -74,9 +74,9 @@ input {
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
background-color: -moz-field;
|
background-color: -moz-Field;
|
||||||
border: 2px inset ThreeDFace;
|
border: 2px inset ThreeDFace;
|
||||||
color: WindowText;
|
color: -moz-FieldText;
|
||||||
cursor: text;
|
cursor: text;
|
||||||
font: field;
|
font: field;
|
||||||
margin: 1px 0 1px 0;
|
margin: 1px 0 1px 0;
|
||||||
|
@ -96,11 +96,11 @@ textarea {
|
||||||
|
|
||||||
select {
|
select {
|
||||||
font: list;
|
font: list;
|
||||||
background-color: -moz-field;
|
background-color: -moz-Field;
|
||||||
border: 2px inset ThreeDFace;
|
border: 2px inset ThreeDFace;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
color: WindowText;
|
color: -moz-FieldText;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-align: start;
|
text-align: start;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
@ -227,7 +227,7 @@ input[type="image"][disabled] {
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="image"]:focus {
|
input[type="image"]:focus {
|
||||||
-moz-outline: 1px dotted WindowText;
|
-moz-outline: 1px dotted -moz-FieldText;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* file selector */
|
/* file selector */
|
||||||
|
@ -253,8 +253,8 @@ input[type="file"] > input[type="button"]:-moz-focus-inner
|
||||||
/* radio buttons */
|
/* radio buttons */
|
||||||
input[type="radio"] {
|
input[type="radio"] {
|
||||||
border: 2px inset ThreeDFace;
|
border: 2px inset ThreeDFace;
|
||||||
background-color: -moz-field;
|
background-color: -moz-Field;
|
||||||
color: WindowText;
|
color: -moz-FieldText;
|
||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
@ -267,8 +267,8 @@ input[type="radio"] {
|
||||||
/* check boxes */
|
/* check boxes */
|
||||||
input[type="checkbox"] {
|
input[type="checkbox"] {
|
||||||
border: 2px inset ThreeDFace;
|
border: 2px inset ThreeDFace;
|
||||||
background-color: -moz-field;
|
background-color: -moz-Field;
|
||||||
color: WindowText;
|
color: -moz-FieldText;
|
||||||
width: 13px;
|
width: 13px;
|
||||||
height: 13px;
|
height: 13px;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
@ -304,7 +304,7 @@ input[type="radio"]:hover:active {
|
||||||
}
|
}
|
||||||
|
|
||||||
:-moz-radio {
|
:-moz-radio {
|
||||||
background-color: WindowText;
|
background-color: -moz-FieldText;
|
||||||
width: 4px;
|
width: 4px;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
left: 6px;
|
left: 6px;
|
||||||
|
|
|
@ -100,9 +100,9 @@ Rights Reserved.
|
||||||
<!-- Box with buttons on right edge of window -->
|
<!-- Box with buttons on right edge of window -->
|
||||||
<box id="rightColumnButtonBox" align="vertical">
|
<box id="rightColumnButtonBox" align="vertical">
|
||||||
<box align="vertical" flex="50%">
|
<box align="vertical" flex="50%">
|
||||||
<spring class="3rd-column-spring"/>
|
<spring class="third-column-spring"/>
|
||||||
<button id="new" label="&newButton.label;" class="dialog" tooltip="aTooltip" tooltiptext="&addressPickerNewButton.tooltip;" oncommand="AbNewCard()"/>
|
<button id="new" label="&newButton.label;" class="dialog" tooltip="aTooltip" tooltiptext="&addressPickerNewButton.tooltip;" oncommand="AbNewCard()"/>
|
||||||
<spring class="3rd-column-spring"/>
|
<spring class="third-column-spring"/>
|
||||||
<button id="edit" label="&editButton.label;" class="dialog" tooltip="aTooltip" tooltiptext="&addressPickerEditButton.tooltip;" oncommand="AbEditCard()"/>
|
<button id="edit" label="&editButton.label;" class="dialog" tooltip="aTooltip" tooltiptext="&addressPickerEditButton.tooltip;" oncommand="AbEditCard()"/>
|
||||||
<spring flex="100%"/>
|
<spring flex="100%"/>
|
||||||
</box>
|
</box>
|
||||||
|
|
|
@ -68,7 +68,7 @@
|
||||||
.bookmark-item.button-toolbar[dragover-left="true"]
|
.bookmark-item.button-toolbar[dragover-left="true"]
|
||||||
{
|
{
|
||||||
margin-left : 0px;
|
margin-left : 0px;
|
||||||
border-left : 2px solid ThreeDDarksShadow;
|
border-left : 2px solid ThreeDDarkShadow;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bookmark-item.button-toolbar[dragover-right="true"]
|
.bookmark-item.button-toolbar[dragover-right="true"]
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
@import url(chrome://global/skin/global.css);
|
@import url(chrome://global/skin/global.css);
|
||||||
|
|
||||||
window.dialog {
|
window.dialog {
|
||||||
padding: none;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dimmed-highcontrast {
|
.dimmed-highcontrast {
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
{
|
{
|
||||||
/* This image still has to be added to the tree (8/8/00). I'll do it after german's approval */
|
/* This image still has to be added to the tree (8/8/00). I'll do it after german's approval */
|
||||||
list-style-image : url("chrome://global/skin/grippy-short-vert-after.gif");
|
list-style-image : url("chrome://global/skin/grippy-short-vert-after.gif");
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
max-width : 32px;
|
max-width : 32px;
|
||||||
height : 4px;
|
height : 4px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
border-top : 1px solid ThreeDShadow;
|
border-top : 1px solid ThreeDShadow;
|
||||||
border-bottom : 1px solid ThreeDHighlight;
|
border-bottom : 1px solid ThreeDHighlight;
|
||||||
border-right : 1px solid ThreeDHighlight;
|
border-right : 1px solid ThreeDHighlight;
|
||||||
background-color : -moz-field;
|
background-color : -moz-Field;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
border : 1px solid transparent;
|
border : 1px solid transparent;
|
||||||
background-color : transparent;
|
background-color : transparent;
|
||||||
|
color : -moz-DialogText;
|
||||||
-moz-user-focus : ignore;
|
-moz-user-focus : ignore;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,6 +27,8 @@
|
||||||
vertical-align : middle;
|
vertical-align : middle;
|
||||||
text-align : center;
|
text-align : center;
|
||||||
border : 1px solid transparent;
|
border : 1px solid transparent;
|
||||||
|
color : inherit;
|
||||||
|
background-color : -moz-Dialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button-toolbar-1[disabled="true"],
|
.button-toolbar-1[disabled="true"],
|
||||||
|
@ -93,7 +96,8 @@
|
||||||
border : 1px solid transparent;
|
border : 1px solid transparent;
|
||||||
min-width : 0px;
|
min-width : 0px;
|
||||||
max-width : 14em;
|
max-width : 14em;
|
||||||
color : WindowText;
|
color : -moz-DialogText;
|
||||||
|
background-color : -moz-Dialog;
|
||||||
-moz-user-focus : ignore;
|
-moz-user-focus : ignore;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -119,7 +123,7 @@
|
||||||
border-top : 1px solid ThreeDShadow;
|
border-top : 1px solid ThreeDShadow;
|
||||||
border-right : 1px solid ThreeDHighlight;
|
border-right : 1px solid ThreeDHighlight;
|
||||||
border-bottom : 1px solid ThreeDHighlight;
|
border-bottom : 1px solid ThreeDHighlight;
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
background-image : none;
|
background-image : none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -175,16 +179,18 @@
|
||||||
.button-toolbar-4
|
.button-toolbar-4
|
||||||
{
|
{
|
||||||
background-color : transparent;
|
background-color : transparent;
|
||||||
|
color : -moz-DialogText;
|
||||||
-moz-binding : url("chrome://global/content/xulBindings.xml#buttonleft");
|
-moz-binding : url("chrome://global/content/xulBindings.xml#buttonleft");
|
||||||
min-width : 0px;
|
min-width : 0px;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
border : 1px solid transparent;
|
border : 1px solid transparent;
|
||||||
color : WindowText;
|
|
||||||
-moz-user-focus : ignore;
|
-moz-user-focus : ignore;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button-toolbar-4 > .button-internal-box
|
.button-toolbar-4 > .button-internal-box
|
||||||
{
|
{
|
||||||
|
background-color : -moz-Dialog;
|
||||||
|
color : inherit;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
border : 1px solid transparent;
|
border : 1px solid transparent;
|
||||||
vertical-align : middle;
|
vertical-align : middle;
|
||||||
|
@ -249,13 +255,14 @@
|
||||||
margin : 0px 0px 1px 3px !important;
|
margin : 0px 0px 1px 3px !important;
|
||||||
min-width : 0px;
|
min-width : 0px;
|
||||||
background-color : transparent;
|
background-color : transparent;
|
||||||
color : WindowText;
|
color : -moz-DialogText;
|
||||||
-moz-user-focus : ignore;
|
-moz-user-focus : ignore;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button-toolbar-3 > .button-internal-box
|
.button-toolbar-3 > .button-internal-box
|
||||||
{
|
{
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
|
color : inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button-toolbar-3,
|
.button-toolbar-3,
|
||||||
|
|
|
@ -22,6 +22,8 @@
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
padding : 2px 7px 2px 6px;
|
padding : 2px 7px 2px 6px;
|
||||||
-moz-user-focus : ignore !important;
|
-moz-user-focus : ignore !important;
|
||||||
|
background-color : -moz-Dialog;
|
||||||
|
color : -moz-DialogText;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menubutton-dual-ex-button.left
|
.menubutton-dual-ex-button.left
|
||||||
|
@ -34,6 +36,8 @@
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
padding : 2px 7px 2px 6px;
|
padding : 2px 7px 2px 6px;
|
||||||
-moz-user-focus : none !important;
|
-moz-user-focus : none !important;
|
||||||
|
background-color : -moz-Dialog;
|
||||||
|
color : -moz-DialogText;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* dropmarker */
|
/* dropmarker */
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
/* The defaults are WAY to big! */
|
/* The defaults are WAY to big! */
|
||||||
titledbox {
|
titledbox {
|
||||||
margin: 2px 5px; 4px; 5px;
|
margin: 2px 5px /* 4px 5px */;
|
||||||
padding-top: 2px;
|
padding-top: 2px;
|
||||||
padding-bottom: 4px;
|
padding-bottom: 4px;
|
||||||
}
|
}
|
||||||
|
@ -90,7 +90,7 @@ titledbox {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
border: 1px inset #CCCCCC;
|
border: 1px inset #CCCCCC;
|
||||||
margin: 4px; 10px 4px 10px;
|
margin: 4px /* 10px 4px 10px */;
|
||||||
}
|
}
|
||||||
|
|
||||||
.color-well[default="true"] {
|
.color-well[default="true"] {
|
||||||
|
@ -312,7 +312,7 @@ treeitem.ae-selection[selected="true"] > treerow {
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
border: none;
|
border: none;
|
||||||
outline: none;
|
-moz-outline: none;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
/* The defaults are WAY to big! */
|
/* The defaults are WAY to big! */
|
||||||
titledbox {
|
titledbox {
|
||||||
margin: 2px 5px; 4px; 5px;
|
margin: 2px 5px /* 4px 5px */;
|
||||||
padding-top: 2px;
|
padding-top: 2px;
|
||||||
padding-bottom: 4px;
|
padding-bottom: 4px;
|
||||||
}
|
}
|
||||||
|
@ -50,7 +50,7 @@ titledbox {
|
||||||
}
|
}
|
||||||
|
|
||||||
.middle {
|
.middle {
|
||||||
vertical-align: middle:
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bold {
|
.bold {
|
||||||
|
@ -90,7 +90,7 @@ titledbox {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
border: 1px inset #CCCCCC;
|
border: 1px inset #CCCCCC;
|
||||||
margin: 4px; 10px 4px 10px;
|
margin: 4px /* 10px 4px 10px */;
|
||||||
}
|
}
|
||||||
|
|
||||||
.color-well[default="true"] {
|
.color-well[default="true"] {
|
||||||
|
@ -312,7 +312,7 @@ treeitem.ae-selection[selected="true"] > treerow {
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
border: none;
|
border: none;
|
||||||
outline: none;
|
-moz-outline: none;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
titledbox
|
titledbox
|
||||||
{
|
{
|
||||||
border : 2px groove ThreeDFace;
|
border : 2px groove -moz-Dialog;
|
||||||
padding : 7px !important;
|
padding : 7px !important;
|
||||||
margin : 5px;
|
margin : 5px;
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,7 @@ label
|
||||||
{
|
{
|
||||||
margin : 0px 40px 2px 6px;
|
margin : 0px 40px 2px 6px;
|
||||||
padding : 0px 3px 0px 3px;
|
padding : 0px 3px 0px 3px;
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
.titledbox-body
|
.titledbox-body
|
||||||
|
|
|
@ -14,8 +14,8 @@
|
||||||
border-left : 1px solid ThreeDShadow;
|
border-left : 1px solid ThreeDShadow;
|
||||||
border-right : 1px solid ThreeDHighlight;
|
border-right : 1px solid ThreeDHighlight;
|
||||||
border-bottom : 1px solid ThreeDHighlight;
|
border-bottom : 1px solid ThreeDHighlight;
|
||||||
color : ThreeDFace;
|
color : -moz-FieldText;
|
||||||
background-color : -moz-field;
|
background-color : -moz-Field;
|
||||||
margin : 2px 2px 0px 0px;
|
margin : 2px 2px 0px 0px;
|
||||||
width : 13px;
|
width : 13px;
|
||||||
height : 13px;
|
height : 13px;
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
.checkbox-checkmark-box-1[disabled="true"]
|
.checkbox-checkmark-box-1[disabled="true"]
|
||||||
{
|
{
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
.checkbox-checkmark-box-2
|
.checkbox-checkmark-box-2
|
||||||
|
@ -56,7 +56,7 @@
|
||||||
|
|
||||||
checkbox:hover:active > .checkbox-internal-box > .checkbox-checkmark-box-1
|
checkbox:hover:active > .checkbox-internal-box > .checkbox-checkmark-box-1
|
||||||
{
|
{
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* text/icon frames */
|
/* text/icon frames */
|
||||||
|
|
|
@ -23,8 +23,8 @@
|
||||||
|
|
||||||
.console-box
|
.console-box
|
||||||
{
|
{
|
||||||
background-color : -moz-field;
|
background-color : -moz-Field;
|
||||||
color : WindowText;
|
color : -moz-FieldText;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* :::::::::: console rows :::::::::: */
|
/* :::::::::: console rows :::::::::: */
|
||||||
|
@ -39,7 +39,7 @@
|
||||||
{
|
{
|
||||||
border-right : 1px outset ThreeDFace;
|
border-right : 1px outset ThreeDFace;
|
||||||
padding : 5px;
|
padding : 5px;
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
vertical-align : top !important;
|
vertical-align : top !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
|
|
||||||
.color-dialog
|
.color-dialog
|
||||||
{
|
{
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
color : windowtext;
|
color : -moz-DialogText;
|
||||||
}
|
}
|
||||||
|
|
||||||
.color-window
|
.color-window
|
||||||
{
|
{
|
||||||
background-color : window;
|
background-color : Window;
|
||||||
color : windowtext;
|
color : WindowText;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* inset areas */
|
/* inset areas */
|
||||||
|
|
|
@ -40,8 +40,8 @@
|
||||||
**/
|
**/
|
||||||
window
|
window
|
||||||
{
|
{
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
color : WindowText;
|
color : -moz-DialogText;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
font : message-box;
|
font : message-box;
|
||||||
-moz-user-focus : ignore;
|
-moz-user-focus : ignore;
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
|
|
||||||
window.dialog
|
window.dialog
|
||||||
{
|
{
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
padding : 8px 10px 10px 8px;
|
padding : 8px 10px 10px 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,7 +107,7 @@
|
||||||
*/
|
*/
|
||||||
statusbar
|
statusbar
|
||||||
{
|
{
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
overflow : hidden;
|
overflow : hidden;
|
||||||
border-left : 1px solid ThreeDShadow;
|
border-left : 1px solid ThreeDShadow;
|
||||||
border-right : 1px solid ThreeDHighlight;
|
border-right : 1px solid ThreeDHighlight;
|
||||||
|
@ -171,7 +171,7 @@
|
||||||
border-top : 1px solid ThreeDShadow;
|
border-top : 1px solid ThreeDShadow;
|
||||||
border-right : 1px solid ThreeDHighlight;
|
border-right : 1px solid ThreeDHighlight;
|
||||||
border-bottom : 1px solid ThreeDHighlight;
|
border-bottom : 1px solid ThreeDHighlight;
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
.progressmeter-statusbar
|
.progressmeter-statusbar
|
||||||
|
@ -189,7 +189,7 @@
|
||||||
|
|
||||||
.progressmeter-internal-box
|
.progressmeter-internal-box
|
||||||
{
|
{
|
||||||
border : 1px solid ThreeDFace;
|
border : 1px solid -moz-Dialog;
|
||||||
padding : 1px;
|
padding : 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ treeitem[selected="true"] > treerow
|
||||||
{
|
{
|
||||||
background : transparent !important;
|
background : transparent !important;
|
||||||
border : none !important;
|
border : none !important;
|
||||||
color : WindowText !important;
|
color : -moz-FieldText !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
treecell:hover
|
treecell:hover
|
||||||
|
|
|
@ -6,14 +6,14 @@
|
||||||
border-top : 1px solid ThreeDShadow;
|
border-top : 1px solid ThreeDShadow;
|
||||||
border-right : 1px solid ThreeDHighlight;
|
border-right : 1px solid ThreeDHighlight;
|
||||||
border-bottom : 1px solid ThreeDHighlight;
|
border-bottom : 1px solid ThreeDHighlight;
|
||||||
background-color : -moz-field;
|
background-color : -moz-Field;
|
||||||
color : WindowText;
|
color : -moz-FieldText;
|
||||||
margin : 1px 5px 2px 5px;
|
margin : 1px 5px 2px 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
menulist[disabled="true"]
|
menulist[disabled="true"]
|
||||||
{
|
{
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
color : GrayText;
|
color : GrayText;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,8 +32,8 @@
|
||||||
{
|
{
|
||||||
border : 1px solid transparent;
|
border : 1px solid transparent;
|
||||||
margin : 1px;
|
margin : 1px;
|
||||||
background-color : -moz-field;
|
background-color : -moz-Field;
|
||||||
color : WindowText;
|
color : -moz-FieldText;
|
||||||
}
|
}
|
||||||
|
|
||||||
menulist:focus > .menulist-internal-box > .menulist-display-box
|
menulist:focus > .menulist-internal-box > .menulist-display-box
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
border-right : 1px solid ThreeDDarkShadow;
|
border-right : 1px solid ThreeDDarkShadow;
|
||||||
border-bottom : 1px solid ThreeDDarkShadow;
|
border-bottom : 1px solid ThreeDDarkShadow;
|
||||||
border-left : 1px solid ThreeDFace;
|
border-left : 1px solid ThreeDFace;
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menulist-dropmarker-box-2
|
.menulist-dropmarker-box-2
|
||||||
|
@ -96,9 +96,9 @@
|
||||||
.menulist-menupopup
|
.menulist-menupopup
|
||||||
{
|
{
|
||||||
-moz-binding : url("chrome://global/skin/menulistBindings.xml#menulistpopup");
|
-moz-binding : url("chrome://global/skin/menulistBindings.xml#menulistpopup");
|
||||||
border : 1px solid WindowText;
|
border : 1px solid -moz-FieldText;
|
||||||
min-width : 0px;
|
min-width : 0px;
|
||||||
background-color : -moz-field;
|
background-color : -moz-Field;
|
||||||
}
|
}
|
||||||
|
|
||||||
menulist > menupopup > menuitem,
|
menulist > menupopup > menuitem,
|
||||||
|
@ -109,7 +109,7 @@
|
||||||
min-width : 0px; /* should be in content*/
|
min-width : 0px; /* should be in content*/
|
||||||
max-width : none; /* should be in content*/
|
max-width : none; /* should be in content*/
|
||||||
font : message-box;
|
font : message-box;
|
||||||
color : WindowText;
|
color : -moz-FieldText;
|
||||||
}
|
}
|
||||||
|
|
||||||
menulist > menupopup > menuitem > .menu-iconic-accel,
|
menulist > menupopup > menuitem > .menu-iconic-accel,
|
||||||
|
@ -156,7 +156,7 @@
|
||||||
border-right : 1px solid ThreeDDarkShadow;
|
border-right : 1px solid ThreeDDarkShadow;
|
||||||
border-bottom : 1px solid ThreeDDarkShadow;
|
border-bottom : 1px solid ThreeDDarkShadow;
|
||||||
border-left : 1px solid ThreeDHighlight;
|
border-left : 1px solid ThreeDHighlight;
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
-moz-user-focus : normal;
|
-moz-user-focus : normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,8 @@
|
||||||
**/
|
**/
|
||||||
|
|
||||||
outliner {
|
outliner {
|
||||||
background-color: -moz-field;
|
background-color: -moz-Field;
|
||||||
color: WindowText;
|
color: -moz-FieldText;
|
||||||
}
|
}
|
||||||
|
|
||||||
outliner.inset {
|
outliner.inset {
|
||||||
|
@ -28,7 +28,7 @@ outlinerbody:-moz-outliner-row {
|
||||||
}
|
}
|
||||||
|
|
||||||
outlinerbody:-moz-outliner-row(selected) {
|
outlinerbody:-moz-outliner-row(selected) {
|
||||||
background-color: ThreeDFace;
|
background-color: -moz-Dialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
outliner:focus > outlinerbody:-moz-outliner-row(selected, focus) {
|
outliner:focus > outlinerbody:-moz-outliner-row(selected, focus) {
|
||||||
|
@ -50,7 +50,7 @@ outlinerbody:-moz-outliner-cell-text {
|
||||||
}
|
}
|
||||||
|
|
||||||
outlinerbody:-moz-outliner-cell-text(selected) {
|
outlinerbody:-moz-outliner-cell-text(selected) {
|
||||||
color: ButtonText;
|
color: -moz-DialogText;
|
||||||
}
|
}
|
||||||
|
|
||||||
outlinerbody:-moz-outliner-cell-text(selected, focus) {
|
outlinerbody:-moz-outliner-cell-text(selected, focus) {
|
||||||
|
@ -70,8 +70,8 @@ outlinercol {
|
||||||
border-top: 1px solid ThreeDHighlight;
|
border-top: 1px solid ThreeDHighlight;
|
||||||
border-right: 1px solid ThreeDDarkShadow;
|
border-right: 1px solid ThreeDDarkShadow;
|
||||||
border-bottom : 1px solid ThreeDDarkShadow;
|
border-bottom : 1px solid ThreeDDarkShadow;
|
||||||
background-color: ThreeDFace;
|
background-color: -moz-Dialog;
|
||||||
color: ButtonText;
|
color: -moz-DialogText;
|
||||||
}
|
}
|
||||||
|
|
||||||
.outlinercol-box,
|
.outlinercol-box,
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
border-left : 1px solid ThreeDShadow;
|
border-left : 1px solid ThreeDShadow;
|
||||||
border-right : 1px solid ThreeDHighlight;
|
border-right : 1px solid ThreeDHighlight;
|
||||||
border-bottom : 1px solid ThreeDHighlight;
|
border-bottom : 1px solid ThreeDHighlight;
|
||||||
background-color : -moz-field;
|
background-color : -moz-Field;
|
||||||
-moz-border-radius : 50%;
|
-moz-border-radius : 50%;
|
||||||
margin : 2px 2px 0px 0px;
|
margin : 2px 2px 0px 0px;
|
||||||
width : 12px;
|
width : 12px;
|
||||||
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
.radio-checkmark-box-1[disabled="true"]
|
.radio-checkmark-box-1[disabled="true"]
|
||||||
{
|
{
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
.radio-checkmark-box-2
|
.radio-checkmark-box-2
|
||||||
|
@ -56,7 +56,7 @@
|
||||||
|
|
||||||
radio:hover:active > .radio-internal-box > .radio-checkmark-box-1
|
radio:hover:active > .radio-internal-box > .radio-checkmark-box-1
|
||||||
{
|
{
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* text/icon frames */
|
/* text/icon frames */
|
||||||
|
|
|
@ -16,7 +16,7 @@ thumb
|
||||||
border-top : 1px solid ThreeDLightShadow;
|
border-top : 1px solid ThreeDLightShadow;
|
||||||
border-right : 1px solid ThreeDDarkShadow;
|
border-right : 1px solid ThreeDDarkShadow;
|
||||||
border-bottom : 1px solid ThreeDDarkShadow;
|
border-bottom : 1px solid ThreeDDarkShadow;
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
.thumb-box
|
.thumb-box
|
||||||
|
@ -44,7 +44,7 @@ scrollbarbutton
|
||||||
border-top : 1px solid ThreeDLightShadow;
|
border-top : 1px solid ThreeDLightShadow;
|
||||||
border-right : 1px solid ThreeDDarkShadow;
|
border-right : 1px solid ThreeDDarkShadow;
|
||||||
border-bottom : 1px solid ThreeDDarkShadow;
|
border-bottom : 1px solid ThreeDDarkShadow;
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scrollbarbutton-box
|
.scrollbarbutton-box
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
splitter
|
splitter
|
||||||
{
|
{
|
||||||
cursor : e-resize;
|
cursor : e-resize;
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
vertical-align : middle;
|
vertical-align : middle;
|
||||||
text-align : center;
|
text-align : center;
|
||||||
}
|
}
|
||||||
|
@ -49,7 +49,7 @@
|
||||||
splitter[state="dragging"],
|
splitter[state="dragging"],
|
||||||
splitter:hover:active
|
splitter:hover:active
|
||||||
{
|
{
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
background-image : url("chrome://global/skin/splitter-drag-bg.gif");
|
background-image : url("chrome://global/skin/splitter-drag-bg.gif");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -85,7 +85,7 @@ tabcontrol[orient="horizontal"] > tabpanel + tabbox > .tabbox-spring {
|
||||||
|
|
||||||
tab {
|
tab {
|
||||||
border: none;
|
border: none;
|
||||||
color: ButtonText;
|
color: -moz-DialogText;
|
||||||
-moz-user-focus: normal;
|
-moz-user-focus: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@ tab > .tab-box > .tab-text {
|
||||||
}
|
}
|
||||||
|
|
||||||
tab:focus > .tab-box > .tab-text {
|
tab:focus > .tab-box > .tab-text {
|
||||||
border: 1px dotted ButtonText;
|
border: 1px dotted -moz-DialogText;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-box {
|
.tab-box {
|
||||||
|
|
|
@ -13,14 +13,14 @@
|
||||||
border-bottom : 1px solid ThreeDHighlight;
|
border-bottom : 1px solid ThreeDHighlight;
|
||||||
border-left : 1px solid ThreeDShadow;
|
border-left : 1px solid ThreeDShadow;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
background-color : -moz-field;
|
background-color : -moz-Field;
|
||||||
color : WindowText;
|
color : -moz-FieldText;
|
||||||
cursor : text;
|
cursor : text;
|
||||||
}
|
}
|
||||||
|
|
||||||
textbox[readonly="true"]
|
textbox[readonly="true"]
|
||||||
{
|
{
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* internal frame */
|
/* internal frame */
|
||||||
|
@ -48,7 +48,7 @@
|
||||||
textbox[disabled="true"]
|
textbox[disabled="true"]
|
||||||
{
|
{
|
||||||
cursor : default !important;
|
cursor : default !important;
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
color : GrayText;
|
color : GrayText;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
toolbox
|
toolbox
|
||||||
{
|
{
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
border-left : 1px solid ThreeDShadow;
|
border-left : 1px solid ThreeDShadow;
|
||||||
border-top : 1px solid ThreeDShadow;
|
border-top : 1px solid ThreeDShadow;
|
||||||
border-right : 1px solid ThreeDHighlight;
|
border-right : 1px solid ThreeDHighlight;
|
||||||
|
@ -8,7 +8,7 @@ toolbox
|
||||||
|
|
||||||
toolbar
|
toolbar
|
||||||
{
|
{
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
/*
|
/*
|
||||||
* DON'T DELETE. Removes disappearance of scrollbars in content
|
* DON'T DELETE. Removes disappearance of scrollbars in content
|
||||||
* pane when window is made smaller.
|
* pane when window is made smaller.
|
||||||
|
|
|
@ -12,8 +12,8 @@ tree
|
||||||
border-right : 1px solid ThreeDHighlight;
|
border-right : 1px solid ThreeDHighlight;
|
||||||
border-bottom : 1px solid ThreeDHighlight;
|
border-bottom : 1px solid ThreeDHighlight;
|
||||||
border-left : 1px solid ThreeDShadow;
|
border-left : 1px solid ThreeDShadow;
|
||||||
background-color : -moz-field;
|
background-color : -moz-Field;
|
||||||
color : WindowText;
|
color : -moz-FieldText;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tree-container-treerows[dragover="true"][dragdroptree="true"]
|
.tree-container-treerows[dragover="true"][dragdroptree="true"]
|
||||||
|
@ -42,8 +42,8 @@ tree.inset
|
||||||
|
|
||||||
treeitem[selected="true"] > treerow
|
treeitem[selected="true"] > treerow
|
||||||
{
|
{
|
||||||
color : ButtonText;
|
color : -moz-DialogText;
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
treeitem
|
treeitem
|
||||||
|
@ -97,8 +97,8 @@ tree:focus > treechildren treeitem[selected="true"][current="true"] > treerow
|
||||||
border-right : 1px solid ThreeDDarkShadow !important;
|
border-right : 1px solid ThreeDDarkShadow !important;
|
||||||
border-bottom : 1px solid ThreeDDarkShadow !important;
|
border-bottom : 1px solid ThreeDDarkShadow !important;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
color : ButtonText;
|
color : -moz-DialogText;
|
||||||
}
|
}
|
||||||
|
|
||||||
.treecell-header-box,
|
.treecell-header-box,
|
||||||
|
|
|
@ -363,7 +363,7 @@ treeitem[empty="true"] > treerow > treecell > .tree-cell-twisty {
|
||||||
padding-right : 0px;
|
padding-right : 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.3rd-column-spring { /* Vertical Springs between 3rd column buttons */
|
.third-column-spring { /* Vertical Springs between 3rd column buttons */
|
||||||
height : 10px;
|
height : 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -323,7 +323,7 @@ tree > treehead > treerow {
|
||||||
padding-right : 0px;
|
padding-right : 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.3rd-column-spring { /* Vertical Springs between 3rd column buttons */
|
.third-column-spring { /* Vertical Springs between 3rd column buttons */
|
||||||
height : 10px;
|
height : 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
|
|
||||||
[hide]
|
[hide]
|
||||||
{
|
{
|
||||||
display : none;
|
display : none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
#acctCentralHeaderRow
|
#acctCentralHeaderRow
|
||||||
{
|
{
|
||||||
background-color:lightgrey;
|
background-color:lightgrey;
|
||||||
font-weightt:bold;
|
font-weight:bold;
|
||||||
font-size:20px;
|
font-size:20px;
|
||||||
margin:5px 5px 5px 5px;
|
margin:5px 5px 5px 5px;
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#ubhist
|
#ubhist
|
||||||
{
|
{
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
background-color : ThreeDFace;
|
background-color : -moz-Dialog;
|
||||||
list-style-image : url("chrome://global/skin/scroll-down.gif");
|
list-style-image : url("chrome://global/skin/scroll-down.gif");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.middle {
|
.middle {
|
||||||
vertical-align: middle:
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bold {
|
.bold {
|
||||||
|
|
|
@ -334,7 +334,7 @@ tree {
|
||||||
padding-right: 0px;
|
padding-right: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.3rd-column-spring {
|
.third-column-spring {
|
||||||
height: 10px;
|
height: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -548,7 +548,7 @@ searchterm {
|
||||||
/* ::::: miscellany :::::: */
|
/* ::::: miscellany :::::: */
|
||||||
|
|
||||||
[hide] {
|
[hide] {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
dummy.usesMailWidgets {
|
dummy.usesMailWidgets {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче