Change uses of CSS properties not part of the CSS2 spec to use -moz- prefix. b=3935

Fix some CSS errors found with CSS parser error reporting, with Ben's approval.
This commit is contained in:
dbaron%fas.harvard.edu 2000-09-06 02:17:26 +00:00
Родитель 6484d2a821
Коммит cfceba7dca
132 изменённых файлов: 578 добавлений и 571 удалений

Просмотреть файл

@ -1929,7 +1929,7 @@ nsXULElement::GetScriptObject(nsIScriptContext* aContext, void** aScriptObject)
nsAutoString empty;
viewCSS->GetComputedStyle(this, empty, getter_AddRefs(cssDecl));
if (cssDecl) {
nsAutoString behavior; behavior.Assign(NS_LITERAL_STRING("behavior"));
nsAutoString behavior; behavior.Assign(NS_LITERAL_STRING("-moz-binding"));
nsAutoString value;
cssDecl->GetPropertyValue(behavior, value);
if (!value.IsEmpty()) {

Просмотреть файл

@ -43,40 +43,39 @@ a[name] {
cursor: default;
}
a:link img, a:visited img, a:active, {
user-input: none;
a:link img, a:visited img, a:active {
-moz-user-input: none;
}
a:visited, a:active, a:out-of-date {
cursor: text;
color : inherit;
user-input: none;
-moz-user-input: none;
}
input, select, textarea {
user-select: _moz_all !important;
user-select: all !important;
user-input: none !important;
user-focus: none !important;
-moz-user-select: all !important;
-moz-user-input: none !important;
-moz-user-focus: none !important;
}
input[type="hidden"] {
border: 1px solid black !important;
visibility: normal !important;
visibility: visible !important;
}
label {
user-select: all !important;
-moz-user-select: all !important;
}
:-moz-display-comboboxcontrol-frame {
user-select: text !important;
-moz-user-select: text !important;
}
:-moz-dropdown-list {
user-select: text !important;
-moz-user-select: text !important;
}
option {
user-select: text !important;
-moz-user-select: text !important;
}

Просмотреть файл

@ -43,40 +43,39 @@ a[name] {
cursor: default;
}
a:link img, a:visited img, a:active, {
user-input: none;
a:link img, a:visited img, a:active {
-moz-user-input: none;
}
a:visited, a:active, a:out-of-date {
cursor: text;
color : inherit;
user-input: none;
-moz-user-input: none;
}
input, select, textarea {
user-select: _moz_all !important;
user-select: all !important;
user-input: none !important;
user-focus: none !important;
-moz-user-select: all !important;
-moz-user-input: none !important;
-moz-user-focus: none !important;
}
input[type="hidden"] {
border: 1px solid black !important;
visibility: normal !important;
visibility: visible !important;
}
label {
user-select: all !important;
-moz-user-select: all !important;
}
:-moz-display-comboboxcontrol-frame {
user-select: text !important;
-moz-user-select: text !important;
}
:-moz-dropdown-list {
user-select: text !important;
-moz-user-select: text !important;
}
option {
user-select: text !important;
-moz-user-select: text !important;
}

Просмотреть файл

@ -267,4 +267,4 @@ function onCancelColor()
window.arguments[1].Cancel = true;
SaveWindowLocation();
window.close();
}
}

Просмотреть файл

@ -56,11 +56,11 @@ iframe {
/* focusable content */
a, area, button, input, object, select, textarea {
user-focus: normal;
-moz-user-focus: normal;
}
option {
user-focus: none;
-moz-user-focus: none;
}
/* blocks */
@ -163,7 +163,7 @@ table {
border-collapse: separate;
margin-top: 0;
margin-bottom: 0;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
/* must never set padding in td, th */
@ -180,7 +180,7 @@ th {
caption {
text-align: center;
display: table-caption;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
tr {
display: table-row;
@ -319,7 +319,7 @@ ul, menu, dir {
margin: 1em 0;
padding-left: 40px;
counter-reset: -html-counter 0;
float-edge: margin-box;
-moz-float-edge: margin-box;
}
ol {
@ -328,7 +328,7 @@ ol {
margin: 1em 0;
padding-left: 40px;
counter-reset: -html-counter 0;
float-edge: margin-box;
-moz-float-edge: margin-box;
}
li {
@ -380,9 +380,12 @@ dl {
dt {
display: block;
}
dl[compact] > dt { /* compact allowed on DL, OL, UL, DIR MENU */
/* compact allowed on DL, OL, UL, DIR MENU */
/*
dl[compact] > dt {
display: compact;
}
*/
dd {
display: block;
margin-left: 40px;
@ -419,7 +422,7 @@ img[usemap], object[usemap] {
}
img[usemap], object[usemap] {
color: blue;
user-focus: normal;
-moz-user-focus: normal;
}
img:-moz-text {
/* font-family: sans-serif; */
@ -447,23 +450,23 @@ input {
border: 2px inset rgb(204, 204, 204);
color: black;
background-color: white;
box-sizing: border-box;
-moz-box-sizing: border-box;
font-family:-moz-fixed;
behavior: url("chrome://global/content/platformHTMLBindings.xml#inputFields");
-moz-binding: url("chrome://global/content/platformHTMLBindings.xml#inputFields");
cursor: text;
}
input[type="hidden"] {
border: none;
visibility: collapse;
behavior: none;
-moz-binding: none;
}
input[type="image"] {
box-sizing: border-box;
-moz-box-sizing: border-box;
border: none;
vertical-align:baseline;
behavior: none;
-moz-binding: none;
background-color: inherit;
cursor: default;
font-family: sans-serif;
@ -485,10 +488,10 @@ input[type="image"][disabled] {
/* file selector */
input[type="file"] {
box-sizing: border-box;
-moz-box-sizing: border-box;
white-space: nowrap;
border:none;
behavior: none;
-moz-binding: none;
cursor: default;
}
@ -500,7 +503,7 @@ input[type="file"] > input {
input[type="file"] > input[type="button"] {
height:inherit;
font-family: sans-serif;
user-select: none !important;
-moz-user-select: none !important;
}
@ -523,7 +526,7 @@ input[type="radio"] {
color:black;
width:12px;
height:12px;
behavior: none;
-moz-binding: none;
-moz-border-radius:6px;
cursor: default;
}
@ -580,7 +583,7 @@ input[type="checkbox"] {
width:13px;
height:13px;
color:black;
behavior: none;
-moz-binding: none;
cursor: default;
/* -moz-border-radius:1px; */
}
@ -616,16 +619,16 @@ input[type="checkbox"][disabled]:active {
/* submit */
input[type="submit"] {
box-sizing: border-box;
-moz-box-sizing: border-box;
border: 2px outset rgb(156, 154, 156);
background-color: rgb(206, 207, 206);
color:black;
user-select: none !important;
-moz-user-select: none !important;
padding: 1px;
font-family: sans-serif;
font-size: small;
behavior: none;
-moz-binding: none;
cursor: default;
}
@ -667,7 +670,7 @@ input[type="submit"][disabled], input[type="submit"][disabled]:active {
/* reset */
input[type="reset"] {
box-sizing: border-box;
-moz-box-sizing: border-box;
border: 2px outset rgb(156, 154, 156);
background-color: rgb(206, 207, 206);
color:black;
@ -675,8 +678,8 @@ input[type="reset"] {
padding: 1px;
font-family: sans-serif;
font-size: small;
behavior: none;
user-select: none !important;
-moz-binding: none;
-moz-user-select: none !important;
cursor: default;
}
@ -721,16 +724,16 @@ input[type="reset"][disabled],input[type="reset"][disabled]:active {
/* button */
input[type="button"] {
box-sizing: border-box;
-moz-box-sizing: border-box;
border: 2px outset rgb(156, 154, 156);
background-color: rgb(206, 207, 206);
color:black;
padding: 1px;
font-family: sans-serif;
font-size: small;
behavior: none;
-moz-binding: none;
white-space: pre;
user-select: none !important;
-moz-user-select: none !important;
cursor: default;
}
@ -779,11 +782,11 @@ input[type="button"][disabled], input[type="button"][disabled]:active {
button {
font-family: sans-serif;
font-size: small;
user-select: none !important;
-moz-user-select: none !important;
display: inline;
vertical-align: bottom;
cursor: default;
box-sizing: border-box;
-moz-box-sizing: border-box;
border: 2px outset rgb(156, 154, 156);
background-color: rgb(206, 207, 206);
@ -794,7 +797,7 @@ button {
button:hover {
/* border : 2px solid black; */
user-select: none !important;
-moz-user-select: none !important;
}
button:active:hover {
@ -830,7 +833,7 @@ button[disabled], button[disabled]:active {
/* text input */
input[type="text"] {
box-sizing: border-box;
-moz-box-sizing: border-box;
font-family:-moz-fixed;
border: 2px inset rgb(204, 204, 204); /* for Nav Quirks */
padding: 0px; /* for Nav Quirks */
@ -868,7 +871,7 @@ label {
/* Combo box style */
:-moz-display-comboboxcontrol-frame {
cursor: default !important;
user-select: none !important;
-moz-user-select: none !important;
overflow:hidden !important;
white-space:nowrap !important;
background-color: inherit !important;
@ -886,8 +889,8 @@ select:-moz-dummy-option {
}
select[size] {
user-select: none !important;
box-sizing: border-box;
-moz-user-select: none !important;
-moz-box-sizing: border-box;
font-family: sans-serif;
font-size: small;
background-color: white;
@ -900,8 +903,8 @@ select[size] {
}
select, select[size="1"] {
user-select: none !important;
box-sizing: border-box;
-moz-user-select: none !important;
-moz-box-sizing: border-box;
font-family: sans-serif;
font-size: small;
background-color: white;
@ -925,8 +928,8 @@ select[disabled] {
/* combobox button */
select > input[type="button"] {
user-focus: none;
user-select: none !important;
-moz-user-focus: none;
-moz-user-select: none !important;
position: static !important;
white-space:nowrap;
border: outset 2px rgb(204, 204, 204);
@ -964,7 +967,7 @@ option {
display:block;
font-family: inherit;
font-size: inherit;
user-select: none;
-moz-user-select: none;
}
/* we need to address the part where there is a label */
@ -1054,7 +1057,7 @@ td textarea {
textarea {
text-align: start;
box-sizing: border-box;
-moz-box-sizing: border-box;
font-family:-moz-fixed;
vertical-align: bottom;
border: 2px inset #c0c0c0;
@ -1065,7 +1068,7 @@ textarea {
margin-bottom: 1px;
margin-left: 0px;
margin-right: 0px;
behavior: url("chrome://global/content/platformHTMLBindings.xml#textAreas");
-moz-binding: url("chrome://global/content/platformHTMLBindings.xml#textAreas");
}
textarea[disabled] {
@ -1194,7 +1197,7 @@ sourcetext { /* XXX should not be in HTML namespace */
/* XXX Temporary until @page is supported... */
:-moz-page, :-moz-page-sequence {
background: none;
background: transparent;
display: block;
}
@ -1209,7 +1212,7 @@ sourcetext { /* XXX should not be in HTML namespace */
border-collapse: separate;
margin-top: 0;
margin-bottom: 0;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
:table-outer {
@ -1225,7 +1228,7 @@ sourcetext { /* XXX should not be in HTML namespace */
left: inherit;
z-index: inherit;
clip: inherit;
opacity: inherit;
-moz-opacity: inherit;
width: 0px; /* hack for boxes */
height: 0px; /* hack for boxes */
}
@ -1277,7 +1280,7 @@ sourcetext { /* XXX should not be in HTML namespace */
/* combobox dropdown list */
:-moz-dropdown-list {
user-select: none !important;
-moz-user-select: none !important;
background-color:inherit;
border: 2px inset rgb(153, 153, 153);
}

Просмотреть файл

@ -73,7 +73,7 @@ li > ol:first-node {
input[type="text"] {
font-family:-moz-fixed;
border-width: 2px !important;
border-width: inset !important;
border-style: inset !important;
border-color: rgb(204, 204, 204);
padding-top: 1px;
padding-bottom: 0px;

Просмотреть файл

@ -1530,8 +1530,8 @@ nsGfxTextControlFrame2::CreateFrameFor(nsIPresContext* aPresContext,
return NS_ERROR_FAILURE;
}
#define DIV_STRING "user-focus: none; border: 0px !important; padding: 0px; margin:0px; "
#define DIV_STRING_SINGLELINE "user-focus: none; white-space : nowrap; overflow:auto; border: 0px !important; padding: 0px; margin:0px"
#define DIV_STRING "-moz-user-focus: none; border: 0px !important; padding: 0px; margin:0px; "
#define DIV_STRING_SINGLELINE "-moz-user-focus: none; white-space : nowrap; overflow:auto; border: 0px !important; padding: 0px; margin:0px"
NS_IMETHODIMP
nsGfxTextControlFrame2::CreateAnonymousContent(nsIPresContext* aPresContext,

Просмотреть файл

@ -141,8 +141,8 @@ mtable {
margin-top: -1.0ex;
margin-bottom: -1.0ex;
/* margin: 0.5ex 0.4em 0.5ex 0.4em; top right bottom left */
box-sizing: border-box;
/* box-sizing: content-box; */
-moz-box-sizing: border-box;
/* -moz-box-sizing: content-box; */
}
mtr {

Просмотреть файл

@ -56,11 +56,11 @@ iframe {
/* focusable content */
a, area, button, input, object, select, textarea {
user-focus: normal;
-moz-user-focus: normal;
}
option {
user-focus: none;
-moz-user-focus: none;
}
/* blocks */
@ -163,7 +163,7 @@ table {
border-collapse: separate;
margin-top: 0;
margin-bottom: 0;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
/* must never set padding in td, th */
@ -180,7 +180,7 @@ th {
caption {
text-align: center;
display: table-caption;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
tr {
display: table-row;
@ -319,7 +319,7 @@ ul, menu, dir {
margin: 1em 0;
padding-left: 40px;
counter-reset: -html-counter 0;
float-edge: margin-box;
-moz-float-edge: margin-box;
}
ol {
@ -328,7 +328,7 @@ ol {
margin: 1em 0;
padding-left: 40px;
counter-reset: -html-counter 0;
float-edge: margin-box;
-moz-float-edge: margin-box;
}
li {
@ -380,9 +380,12 @@ dl {
dt {
display: block;
}
dl[compact] > dt { /* compact allowed on DL, OL, UL, DIR MENU */
/* compact allowed on DL, OL, UL, DIR MENU */
/*
dl[compact] > dt {
display: compact;
}
*/
dd {
display: block;
margin-left: 40px;
@ -419,7 +422,7 @@ img[usemap], object[usemap] {
}
img[usemap], object[usemap] {
color: blue;
user-focus: normal;
-moz-user-focus: normal;
}
img:-moz-text {
/* font-family: sans-serif; */
@ -447,23 +450,23 @@ input {
border: 2px inset rgb(204, 204, 204);
color: black;
background-color: white;
box-sizing: border-box;
-moz-box-sizing: border-box;
font-family:-moz-fixed;
behavior: url("chrome://global/content/platformHTMLBindings.xml#inputFields");
-moz-binding: url("chrome://global/content/platformHTMLBindings.xml#inputFields");
cursor: text;
}
input[type="hidden"] {
border: none;
visibility: collapse;
behavior: none;
-moz-binding: none;
}
input[type="image"] {
box-sizing: border-box;
-moz-box-sizing: border-box;
border: none;
vertical-align:baseline;
behavior: none;
-moz-binding: none;
background-color: inherit;
cursor: default;
font-family: sans-serif;
@ -485,10 +488,10 @@ input[type="image"][disabled] {
/* file selector */
input[type="file"] {
box-sizing: border-box;
-moz-box-sizing: border-box;
white-space: nowrap;
border:none;
behavior: none;
-moz-binding: none;
cursor: default;
}
@ -500,7 +503,7 @@ input[type="file"] > input {
input[type="file"] > input[type="button"] {
height:inherit;
font-family: sans-serif;
user-select: none !important;
-moz-user-select: none !important;
}
@ -523,7 +526,7 @@ input[type="radio"] {
color:black;
width:12px;
height:12px;
behavior: none;
-moz-binding: none;
-moz-border-radius:6px;
cursor: default;
}
@ -580,7 +583,7 @@ input[type="checkbox"] {
width:13px;
height:13px;
color:black;
behavior: none;
-moz-binding: none;
cursor: default;
/* -moz-border-radius:1px; */
}
@ -616,16 +619,16 @@ input[type="checkbox"][disabled]:active {
/* submit */
input[type="submit"] {
box-sizing: border-box;
-moz-box-sizing: border-box;
border: 2px outset rgb(156, 154, 156);
background-color: rgb(206, 207, 206);
color:black;
user-select: none !important;
-moz-user-select: none !important;
padding: 1px;
font-family: sans-serif;
font-size: small;
behavior: none;
-moz-binding: none;
cursor: default;
}
@ -667,7 +670,7 @@ input[type="submit"][disabled], input[type="submit"][disabled]:active {
/* reset */
input[type="reset"] {
box-sizing: border-box;
-moz-box-sizing: border-box;
border: 2px outset rgb(156, 154, 156);
background-color: rgb(206, 207, 206);
color:black;
@ -675,8 +678,8 @@ input[type="reset"] {
padding: 1px;
font-family: sans-serif;
font-size: small;
behavior: none;
user-select: none !important;
-moz-binding: none;
-moz-user-select: none !important;
cursor: default;
}
@ -721,16 +724,16 @@ input[type="reset"][disabled],input[type="reset"][disabled]:active {
/* button */
input[type="button"] {
box-sizing: border-box;
-moz-box-sizing: border-box;
border: 2px outset rgb(156, 154, 156);
background-color: rgb(206, 207, 206);
color:black;
padding: 1px;
font-family: sans-serif;
font-size: small;
behavior: none;
-moz-binding: none;
white-space: pre;
user-select: none !important;
-moz-user-select: none !important;
cursor: default;
}
@ -779,11 +782,11 @@ input[type="button"][disabled], input[type="button"][disabled]:active {
button {
font-family: sans-serif;
font-size: small;
user-select: none !important;
-moz-user-select: none !important;
display: inline;
vertical-align: bottom;
cursor: default;
box-sizing: border-box;
-moz-box-sizing: border-box;
border: 2px outset rgb(156, 154, 156);
background-color: rgb(206, 207, 206);
@ -794,7 +797,7 @@ button {
button:hover {
/* border : 2px solid black; */
user-select: none !important;
-moz-user-select: none !important;
}
button:active:hover {
@ -830,7 +833,7 @@ button[disabled], button[disabled]:active {
/* text input */
input[type="text"] {
box-sizing: border-box;
-moz-box-sizing: border-box;
font-family:-moz-fixed;
border: 2px inset rgb(204, 204, 204); /* for Nav Quirks */
padding: 0px; /* for Nav Quirks */
@ -868,7 +871,7 @@ label {
/* Combo box style */
:-moz-display-comboboxcontrol-frame {
cursor: default !important;
user-select: none !important;
-moz-user-select: none !important;
overflow:hidden !important;
white-space:nowrap !important;
background-color: inherit !important;
@ -886,8 +889,8 @@ select:-moz-dummy-option {
}
select[size] {
user-select: none !important;
box-sizing: border-box;
-moz-user-select: none !important;
-moz-box-sizing: border-box;
font-family: sans-serif;
font-size: small;
background-color: white;
@ -900,8 +903,8 @@ select[size] {
}
select, select[size="1"] {
user-select: none !important;
box-sizing: border-box;
-moz-user-select: none !important;
-moz-box-sizing: border-box;
font-family: sans-serif;
font-size: small;
background-color: white;
@ -925,8 +928,8 @@ select[disabled] {
/* combobox button */
select > input[type="button"] {
user-focus: none;
user-select: none !important;
-moz-user-focus: none;
-moz-user-select: none !important;
position: static !important;
white-space:nowrap;
border: outset 2px rgb(204, 204, 204);
@ -964,7 +967,7 @@ option {
display:block;
font-family: inherit;
font-size: inherit;
user-select: none;
-moz-user-select: none;
}
/* we need to address the part where there is a label */
@ -1054,7 +1057,7 @@ td textarea {
textarea {
text-align: start;
box-sizing: border-box;
-moz-box-sizing: border-box;
font-family:-moz-fixed;
vertical-align: bottom;
border: 2px inset #c0c0c0;
@ -1065,7 +1068,7 @@ textarea {
margin-bottom: 1px;
margin-left: 0px;
margin-right: 0px;
behavior: url("chrome://global/content/platformHTMLBindings.xml#textAreas");
-moz-binding: url("chrome://global/content/platformHTMLBindings.xml#textAreas");
}
textarea[disabled] {
@ -1194,7 +1197,7 @@ sourcetext { /* XXX should not be in HTML namespace */
/* XXX Temporary until @page is supported... */
:-moz-page, :-moz-page-sequence {
background: none;
background: transparent;
display: block;
}
@ -1209,7 +1212,7 @@ sourcetext { /* XXX should not be in HTML namespace */
border-collapse: separate;
margin-top: 0;
margin-bottom: 0;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
:table-outer {
@ -1225,7 +1228,7 @@ sourcetext { /* XXX should not be in HTML namespace */
left: inherit;
z-index: inherit;
clip: inherit;
opacity: inherit;
-moz-opacity: inherit;
width: 0px; /* hack for boxes */
height: 0px; /* hack for boxes */
}
@ -1277,7 +1280,7 @@ sourcetext { /* XXX should not be in HTML namespace */
/* combobox dropdown list */
:-moz-dropdown-list {
user-select: none !important;
-moz-user-select: none !important;
background-color:inherit;
border: 2px inset rgb(153, 153, 153);
}

Просмотреть файл

@ -73,7 +73,7 @@ li > ol:first-node {
input[type="text"] {
font-family:-moz-fixed;
border-width: 2px !important;
border-width: inset !important;
border-style: inset !important;
border-color: rgb(204, 204, 204);
padding-top: 1px;
padding-bottom: 0px;

Просмотреть файл

@ -151,7 +151,7 @@ nsGenericXMLElement::GetScriptObject(nsIScriptContext* aContext,
nsCOMPtr<nsIDOMElement> elt(do_QueryInterface(mContent));
viewCSS->GetComputedStyle(elt, empty, getter_AddRefs(cssDecl));
if (cssDecl) {
nsAutoString behavior; behavior.AssignWithConversion("behavior");
nsAutoString behavior; behavior.AssignWithConversion("-moz-binding");
nsAutoString value;
cssDecl->GetPropertyValue(behavior, value);
if (!value.IsEmpty()) {

Просмотреть файл

@ -31,7 +31,7 @@ Contributor(s):
<window xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
class="dialog" style="max-width: 27em; user-focus: ignore !important"
class="dialog" style="max-width: 27em; -moz-user-focus: ignore !important"
orient="vertical"
onload="OnLoad()">

Просмотреть файл

@ -30,7 +30,7 @@ Contributor(s):
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
orient="vertical"
onload="OnLoad()"
style="min-height: 8em; user-focus: ignore;"
style="min-height: 8em; -moz-user-focus: ignore;"
class="dialog"
title="&noSpace.label;">

Просмотреть файл

@ -7,7 +7,7 @@
<window id="selectLangWindow"
title="&langSelBox.title.label;"
orient="vertical" class="dialog"
style="width: 30em; user-focus: ignore;"
style="width: 30em; -moz-user-focus: ignore;"
onload="Startup();"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

Просмотреть файл

@ -1929,7 +1929,7 @@ nsXULElement::GetScriptObject(nsIScriptContext* aContext, void** aScriptObject)
nsAutoString empty;
viewCSS->GetComputedStyle(this, empty, getter_AddRefs(cssDecl));
if (cssDecl) {
nsAutoString behavior; behavior.Assign(NS_LITERAL_STRING("behavior"));
nsAutoString behavior; behavior.Assign(NS_LITERAL_STRING("-moz-binding"));
nsAutoString value;
cssDecl->GetPropertyValue(behavior, value);
if (!value.IsEmpty()) {

Просмотреть файл

@ -1,7 +1,7 @@
#navigator-throbber
{
behavior : url("chrome://global/content/xulBindings.xml#buttontop");
-moz-binding : url("chrome://global/content/xulBindings.xml#buttontop");
background-image : url("chrome://communicator/skin/navbar-endbox.gif");
background-repeat : no-repeat;
list-style-image : url("chrome://global/skin/animthrob_single.gif");
@ -34,4 +34,4 @@
{
display : none;
}

Просмотреть файл

@ -282,7 +282,7 @@
menubutton.button-toolbar-4
{
behavior : url("chrome://global/content/menulistBindings.xml#menubutton-single-right");
-moz-binding : url("chrome://global/content/menulistBindings.xml#menubutton-single-right");
}
.button-toolbar-4 > .button-internal-box,
@ -292,4 +292,4 @@ menubutton.button-toolbar-4
padding : 0px !important;
}

Просмотреть файл

@ -3,7 +3,7 @@
**/
.box-smallheader
{
behavior : url(chrome://communicator/content/dialogBindings.xml#smallheader);
-moz-binding : url(chrome://communicator/content/dialogBindings.xml#smallheader);
border : 1px inset #CCCCCC;
margin : 0px 5px 6px 5px;
}
@ -40,7 +40,7 @@
**/
.box-header
{
behavior : url(chrome://communicator/content/dialogBindings.xml#largeheader);
-moz-binding : url(chrome://communicator/content/dialogBindings.xml#largeheader);
}
.box-header-header
@ -84,7 +84,7 @@
**/
.box-status
{
behavior : url(chrome://communicator/content/dialogBindings.xml#status);
-moz-binding : url(chrome://communicator/content/dialogBindings.xml#status);
}
.box-status-bg

Просмотреть файл

@ -58,7 +58,7 @@
.menubutton-dual.toolbar
{
behavior : url("chrome://communicator/skin/menubuttonBindings.xml#menubutton-dual-foo");
-moz-binding : url("chrome://communicator/skin/menubuttonBindings.xml#menubutton-dual-foo");
border : none ! important;
}
@ -111,4 +111,4 @@
<xul:text class="button-text" inherits="value,accesskey,crop"/>
</xul:box>
</xul:box>

Просмотреть файл

@ -25,7 +25,7 @@
padding: 0px;
border: none;
background-color: #003366;
behavior:
-moz-binding:
url("chrome://communicator/skin/sidebar/sidebarSplitterBindings.xml#sidebar-splitter");
}
@ -176,7 +176,7 @@
*/
.box-texttab
{
behavior : url("chrome://communicator/content/sidebar/sidebarBindings.xml#texttab");
-moz-binding : url("chrome://communicator/content/sidebar/sidebarBindings.xml#texttab");
background-color : #CCCCCC;
padding-top : 2px;
}

Просмотреть файл

@ -27,7 +27,7 @@
{
margin-top : 2px;
min-height : 1em;
user-focus : ignore;
-moz-user-focus : ignore;
}
.taskbutton

Просмотреть файл

@ -39,5 +39,5 @@
#bgDiv {position:absolute; top:0px; left:0px; width:1; background:url("chrome://editor/skin/images/Map_checker.gif"); background-color: white; cursor: inherit;}
BODY {background-color:appworkspace;}
HTML {height: 100%;}
IMG {opacity: .99;}
IMG {-moz-opacity: .99;}

Просмотреть файл

@ -160,7 +160,7 @@ button.edit-mode > .button-internal-box > .button.icon:hover:active
#printButton
{
behavior : url("chrome://communicator/skin/menubuttonBindings.xml#menubutton-dual-standard");
-moz-binding : url("chrome://communicator/skin/menubuttonBindings.xml#menubutton-dual-standard");
list-style-image : url("chrome://editor/skin/images/print.gif");
margin-top : 0px;
margin-left : 0px !important;

Просмотреть файл

@ -74,7 +74,7 @@
/* strictly speaking not necessary because default for buttonright is
* to lay image out horizontally, but leaving here as a reminder to
* implement this feature */
behavior : url(chrome://global/content/xulBindings.xml#buttonright);
-moz-binding : url(chrome://global/content/xulBindings.xml#buttonright);
font-weight : bold;
list-style-image : url("chrome://global/skin/return.gif");
}

Просмотреть файл

@ -10,7 +10,7 @@
checkbox > .internal-box
{
user-focus: none;
-moz-user-focus: none;
}
/* checkmark outer frame */

Просмотреть файл

@ -3,7 +3,7 @@
**/
.box-smallheader
{
behavior : url(chrome://global/content/dialogBindings.xml#smallheader);
-moz-binding : url(chrome://global/content/dialogBindings.xml#smallheader);
border : 1px inset #CCCCCC;
margin : 0px 5px 6px 5px;
}
@ -40,7 +40,7 @@
**/
.box-header
{
behavior : url(chrome://global/content/dialogBindings.xml#largeheader);
-moz-binding : url(chrome://global/content/dialogBindings.xml#largeheader);
}
.box-header-header
@ -84,7 +84,7 @@
**/
.box-status
{
behavior : url(chrome://global/content/dialogBindings.xml#status);
-moz-binding : url(chrome://global/content/dialogBindings.xml#status);
}
.box-status-bg

Просмотреть файл

@ -128,13 +128,13 @@
{
border-top : 1px solid #999999;
background-color : #CCCCCC;
user-focus : ignore;
-moz-user-focus : ignore;
overflow : hidden
}
statusbar
{
/*behavior : url("chrome://global/skin/globalBindings.xml#status-bar");*/
/*-moz-binding : url("chrome://global/skin/globalBindings.xml#status-bar");*/
}
.statusbar-left
@ -230,7 +230,7 @@
/** XUL <scrollbar> element **/
scrollbar
{
user-focus : ignore;
-moz-user-focus : ignore;
}

Просмотреть файл

@ -9,7 +9,7 @@
radio > .internal-box
{
user-focus: none;
-moz-user-focus: none;
}

Просмотреть файл

@ -3,13 +3,13 @@
/********* XP Scrollbar *********/
scrollbar {
behavior: url("chrome://global/content/xulBindings.xml#scrollbar");
-moz-binding: url("chrome://global/content/xulBindings.xml#scrollbar");
}
/********* XP Scrollbar *********/
thumb {
behavior: url(chrome://global/content/xulBindings.xml#thumb);
-moz-binding: url(chrome://global/content/xulBindings.xml#thumb);
background-color: #CCCCCC;
border: 1px outset #CCCCCC;
list-style-image: url("chrome://global/skin/scroll-thumb-horiz.gif")

Просмотреть файл

@ -27,7 +27,7 @@
{
margin-top : 2px;
min-height : 1em;
user-focus : ignore;
-moz-user-focus : ignore;
}
.taskbutton
@ -44,4 +44,4 @@
#taskbar > toolbargrippy
{
display : none;
}
}

Просмотреть файл

@ -97,7 +97,7 @@ treeitem[container="true"] > treerow > .treecell-indent > .tree-cell-primary-ico
.tree-cell-twisty {
list-style-image: url("chrome://global/skin/closedtwisty.gif");
user-focus:ignore;
-moz-user-focus:ignore;
padding-right: 2px;
}

Просмотреть файл

@ -29,7 +29,7 @@ Rights Reserved.
overflow: auto;
background-color: #EEEEEE;
min-width: 150px;
user-focus: ignore;
-moz-user-focus: ignore;
}
#CardViewInnerBox {

Просмотреть файл

@ -29,7 +29,7 @@
}
dummy.usesMailWidgets {
behavior: url(chrome://messenger/content/mailWidgets.xml#dummy);
-moz-binding: url(chrome://messenger/content/mailWidgets.xml#dummy);
}
spring.spacer {
@ -104,7 +104,7 @@ iframe {
#button-print
{
behavior : url("chrome://communicator/skin/menubuttonBindings.xml#menubutton-dual-standard");
-moz-binding : url("chrome://communicator/skin/menubuttonBindings.xml#menubutton-dual-standard");
list-style-image : url("chrome://global/skin/print.gif");
margin : 0px;
}
@ -273,17 +273,17 @@ box#messagepanebox
}
searchattribute {
behavior: url(chrome://messenger/content/mailWidgets.xml#searchattribute);
-moz-binding: url(chrome://messenger/content/mailWidgets.xml#searchattribute);
}
searchoperator {
behavior: url(chrome://messenger/content/mailWidgets.xml#searchoperator);
-moz-binding: url(chrome://messenger/content/mailWidgets.xml#searchoperator);
}
searchvalue {
behavior: url(chrome://messenger/content/mailWidgets.xml#searchvalue);
-moz-binding: url(chrome://messenger/content/mailWidgets.xml#searchvalue);
}
searchterm {
behavior: url(chrome://messenger/content/mailWidgets.xml#searchterm);
-moz-binding: url(chrome://messenger/content/mailWidgets.xml#searchterm);
}

Просмотреть файл

@ -28,7 +28,7 @@ tree[class="addressingWidget"] treeitem > treerow > treecell > box > image {
padding:2px;
border:none;
list-style-image: url("chrome://messenger/skin/addressbook/person.gif");
user-focus: ignore;
-moz-user-focus: ignore;
}
/*
@ -110,24 +110,24 @@ toolbar#MsgHeadersToolbar {
}
box#addressingWidget {
user-focus: normal;
-moz-user-focus: normal;
}
tree#attachmentBucket {
user-focus: normal;
-moz-user-focus: normal;
}
#msgSubject {
user-focus: normal;
-moz-user-focus: normal;
}
#msgIdentity {
user-focus: normal;
-moz-user-focus: normal;
}
.identity-popup-item
{
behavior: url(chrome://messenger/content/messengercompose/mailComposeBindings.xml#fromMenuitem);
-moz-binding: url(chrome://messenger/content/messengercompose/mailComposeBindings.xml#fromMenuitem);
}
.composemenu-text-2

Просмотреть файл

@ -28,7 +28,7 @@ Rights Reserved.
@namespace html url("http://www.w3.org/1999/xhtml"); /* namespace for XUL elements */
mail-emailaddress {
behavior: url(chrome://messenger/content/mailWidgets.xml#mail-emailaddress);
-moz-binding: url(chrome://messenger/content/mailWidgets.xml#mail-emailaddress);
display: inline;
}

Просмотреть файл

@ -146,8 +146,8 @@ window[chromehidden~="extrachrome"] .chromeclass-extrachrome {
#nav-bar-buttons
{
behavior : url("chrome://navigator/skin/navigatorBindings.xml#navigation-buttons");
-moz-binding : url("chrome://navigator/skin/navigatorBindings.xml#navigation-buttons");
vertical-align : middle;
}

Просмотреть файл

@ -74,7 +74,7 @@
/* need to override default border on button-toolbar buttons/menubuttons */
.button-toolbar.bookmarkitem
{
behavior : url("chrome://global/skin/classicBindings.xml#toolbarbutton-left");
-moz-binding : url("chrome://global/skin/classicBindings.xml#toolbarbutton-left");
border : none;
vertical-align : middle;
margin : 1px 2px 1px 2px;

Просмотреть файл

@ -2,7 +2,7 @@
.box-toolbar-group
{
behavior : url("chrome://global/skin/classicBindings.xml#double-box");
-moz-binding : url("chrome://global/skin/classicBindings.xml#double-box");
border-left : 1px solid #9D9D9D;
border-top : 1px solid #9D9D9D;
border-bottom : 1px solid #FFFFFF;
@ -14,4 +14,4 @@
.box-toolbar-group > .db-internal-box
{
border : 1px solid #000000;
}
}

Просмотреть файл

@ -1,7 +1,7 @@
#navigator-throbber
{
behavior : url("chrome://global/content/xulBindings.xml#buttontop");
-moz-binding : url("chrome://global/content/xulBindings.xml#buttontop");
border : 1px solid #000000;
list-style-image : url("chrome://global/skin/animthrob_single.gif");
margin : 0px 2px 0px 10px;
@ -36,4 +36,4 @@
{
list-style-image : url("chrome://global/skin/animthrob.gif");
}

Просмотреть файл

@ -5,7 +5,7 @@
/* outer frame */
.button-toolbar-1, .button-toolbar-2
{
behavior : url("chrome://global/content/xulBindings.xml#buttontop");
-moz-binding : url("chrome://global/content/xulBindings.xml#buttontop");
min-width : 0px;
margin : 0px 1px;
border : 1px solid transparent;
@ -14,7 +14,7 @@
.button-toolbar, .button-toolbar-4
{
behavior : url("chrome://global/content/xulBindings.xml#buttonleft");
-moz-binding : url("chrome://global/content/xulBindings.xml#buttonleft");
min-width : 0px;
border : 1px solid transparent;
background-color : transparent;
@ -172,9 +172,9 @@
{
margin : 0px 0px 0px 3px;
font-weight : bold;
user-focus: : ignore;
-moz-user-focus: : ignore;
background-color : transparent;
/* behavior : url(chrome://global/content/xulBindings.xml#buttonleft);
/* -moz-binding : url(chrome://global/content/xulBindings.xml#buttonleft);
background-color : #99CCCC
border-left : 1px solid #DDDDDD !important;
border-top : 1px solid #DDDDDD !important;
@ -248,5 +248,5 @@
menubutton.button-toolbar-4
{
behavior : url("chrome://global/content/menulistBindings.xml#menubutton-single-right");
-moz-binding : url("chrome://global/content/menulistBindings.xml#menubutton-single-right");
}

Просмотреть файл

@ -3,7 +3,7 @@
**/
.box-smallheader
{
behavior : url(chrome://communicator/content/dialogBindings.xml#smallheader);
-moz-binding : url(chrome://communicator/content/dialogBindings.xml#smallheader);
border : 1px inset #CCCCCC;
margin : 0px 5px 6px 5px;
}
@ -39,7 +39,7 @@
**/
.box-header
{
behavior : url(chrome://global/skin/classicBindings.xml#largeheader);
-moz-binding : url(chrome://global/skin/classicBindings.xml#largeheader);
border-bottom : 1px solid #FFFFFF;
background-color : #FFFFFF;
}

Просмотреть файл

@ -57,7 +57,7 @@
/* toolbar menubuttons */
menubutton.button-toolbar, menubutton.button-toolbar-4
{
behavior : url("chrome://communicator/skin/menubuttonBindings.xml#menubutton-toolbar-single");
-moz-binding : url("chrome://communicator/skin/menubuttonBindings.xml#menubutton-toolbar-single");
border : 1px solid transparent;
}

Просмотреть файл

@ -68,7 +68,7 @@
*/
.box-texttab
{
behavior : url("chrome://communicator/skin/sidebar/sidebarSplitterBindings.xml#panelheader");
-moz-binding : url("chrome://communicator/skin/sidebar/sidebarSplitterBindings.xml#panelheader");
background-color : #DDDDDD;
border-left : 1px solid #FFFFFF;
border-top : 1px solid #FFFFFF;

Просмотреть файл

@ -63,7 +63,7 @@
*/
.box-texttab
{
behavior : url("chrome://communicator/skin/sidebar/sidebarSplitterBindings.xml#panelheader");
-moz-binding : url("chrome://communicator/skin/sidebar/sidebarSplitterBindings.xml#panelheader");
background-color : threedface;
border-left : 1px solid threedhighlight;
border-top : 1px solid threedhighlight;

Просмотреть файл

@ -33,7 +33,7 @@
#sidebar-panel-picker:hover
{
color : activecaptiontext !important;
color : activecaption !important;
}
.sidebar-header-text
@ -67,7 +67,7 @@
*/
.box-texttab
{
behavior : url("chrome://communicator/skin/sidebar/sidebarBindings.xml#panelheader");
-moz-binding : url("chrome://communicator/skin/sidebar/sidebarBindings.xml#panelheader");
background-color : threedface;
cursor : pointer;
}
@ -136,7 +136,7 @@
.panelheader-box-1[selected="true"]
{
background-color : threedface;
background : none;
background : transparent;
border-left : 1px solid threedhighlight;
border-top : 1px solid threedhighlight;
border-right : 1px solid threedshadow;
@ -166,4 +166,4 @@
border-right : 1px solid threedshadow;
}

Просмотреть файл

@ -1,7 +1,7 @@
#navigator-throbber
{
behavior : url("chrome://global/content/xulBindings.xml#buttontop");
-moz-binding : url("chrome://global/content/xulBindings.xml#buttontop");
border : 1px solid threedface;
list-style-image : url("chrome://global/skin/animthrob_single.gif");
margin : 0px;
@ -35,4 +35,4 @@
{
list-style-image : url("chrome://global/skin/animthrob.gif");
}

Просмотреть файл

@ -5,7 +5,7 @@
/* outer frame */
.button-toolbar-1, .button-toolbar-2
{
behavior : url("chrome://global/content/xulBindings.xml#buttontop");
-moz-binding : url("chrome://global/content/xulBindings.xml#buttontop");
min-width : 0px;
margin : 0px 1px 0px 1px;
border : 1px solid transparent;
@ -13,7 +13,7 @@
.button-toolbar, .button-toolbar-4
{
behavior : url("chrome://global/content/xulBindings.xml#buttonleft");
-moz-binding : url("chrome://global/content/xulBindings.xml#buttonleft");
min-width : 0px;
margin : 1px;
border : 1px solid transparent;
@ -185,5 +185,5 @@
menubutton.button-toolbar-4
{
behavior : url("chrome://global/content/menulistBindings.xml#menubutton-single-right");
-moz-binding : url("chrome://global/content/menulistBindings.xml#menubutton-single-right");
}

Просмотреть файл

@ -3,7 +3,7 @@
**/
.box-smallheader
{
behavior : url(chrome://communicator/content/dialogBindings.xml#smallheader);
-moz-binding : url(chrome://communicator/content/dialogBindings.xml#smallheader);
border-left : 1px solid threedshadow;
border-top : 1px solid threedshadow;
border-right : 1px solid threedhighlight;
@ -42,7 +42,7 @@
**/
.box-header
{
behavior : url(chrome://communicator/content/dialogBindings.xml#largeheader);
-moz-binding : url(chrome://communicator/content/dialogBindings.xml#largeheader);
}
.box-header-header
@ -86,7 +86,7 @@
**/
.box-status
{
behavior : url(chrome://communicator/content/dialogBindings.xml#status);
-moz-binding : url(chrome://communicator/content/dialogBindings.xml#status);
}
.box-status-bg

Просмотреть файл

@ -54,7 +54,7 @@
/* toolbar menubuttons */
menubutton.button-toolbar, menubutton.button-toolbar-4
{
behavior : url("chrome://communicator/skin/menubuttonBindings.xml#menubutton-toolbar-single");
-moz-binding : url("chrome://communicator/skin/menubuttonBindings.xml#menubutton-toolbar-single");
border : 1px solid threedface;
}

Просмотреть файл

@ -2,7 +2,7 @@
.box-toolbar-group
{
behavior : url("chrome://global/skin/classicBindings.xml#double-box");
-moz-binding : url("chrome://global/skin/classicBindings.xml#double-box");
border-left : 1px solid threedshadow;
border-top : 1px solid threedshadow;
border-bottom : 1px solid threedhighlight;
@ -14,4 +14,4 @@
.box-toolbar-group > .db-internal-box
{
border : 1px solid threeddarkshadow;
}
}

Просмотреть файл

@ -1,13 +1,13 @@
#navigator-throbber
{
behavior : url("chrome://global/content/xulBindings.xml#buttontop");
-moz-binding : url("chrome://global/content/xulBindings.xml#buttontop");
border : 1px solid threeddarkshadow;
list-style-image : url("chrome://global/skin/animthrob_single.gif");
margin : 1px 2px 1px 10px;
min-width : 0px;
cursor : pointer;
user-focus : none;
-moz-user-focus : none;
}
#navigator-throbber > .button-internal-box
@ -30,11 +30,11 @@
border-top : 1px solid threedshadow !important;
border-right : 1px solid threedhighlight !important;
border-bottom : 1px solid threedhighlight !important;
padding : 2px 0xp 0xp 2px !important;
padding : 2px 0px 0px 2px !important;
}
#navigator-throbber[busy="true"]
{
list-style-image : url("chrome://global/skin/animthrob.gif");
}

Просмотреть файл

@ -5,12 +5,12 @@
/* outer frame */
.button-toolbar-1, .button-toolbar-2
{
background-color : none;
behavior : url("chrome://global/content/xulBindings.xml#buttontop");
background-color : transparent;
-moz-binding : url("chrome://global/content/xulBindings.xml#buttontop");
min-width : 47px;
margin : 0px;
border : 1px solid transparent;
user-focus : ignore;
-moz-user-focus : ignore;
}
.button-toolbar-1:hover, .button-toolbar-2:hover
@ -88,11 +88,11 @@
**/
.button-toolbar
{
behavior : url("chrome://global/content/xulBindings.xml#buttonleft");
-moz-binding : url("chrome://global/content/xulBindings.xml#buttonleft");
min-width : 0px;
margin : 0px 1px 0px 1px;
border : 1px solid transparent;
user-focus : ignore;
-moz-user-focus : ignore;
max-width : 14em;
}
@ -173,12 +173,12 @@
**/
.button-toolbar-4
{
background-color : none;
behavior : url("chrome://global/content/xulBindings.xml#buttonleft");
background-color : transparent;
-moz-binding : url("chrome://global/content/xulBindings.xml#buttonleft");
min-width : 0px;
margin : 0px;
border : 1px solid transparent;
user-focus : ignore;
-moz-user-focus : ignore;
}
.button-toolbar-4 > .button-internal-box
@ -235,7 +235,7 @@
menubutton.button-toolbar-4
{
behavior : url("chrome://global/content/menulistBindings.xml#menubutton-single-right");
-moz-binding : url("chrome://global/content/menulistBindings.xml#menubutton-single-right");
}
/** Low profile rollover buttons, e.g. "search"
@ -245,12 +245,12 @@
.button-toolbar-3[disabled="true"]:hover,
.button-toolbar-3[disabled="true"]:hover:active
{
behavior : url("chrome://global/content/xulBindings.xml#buttonleft");
-moz-binding : url("chrome://global/content/xulBindings.xml#buttonleft");
margin : 1px 1px 2px 4px !important;
border : 0px;
background-color : threedface;
min-width : 0px;
user-focus : ignore;
-moz-user-focus : ignore;
}
.button-toolbar-3:hover, .button-toolbar-3:hover:active
@ -291,7 +291,7 @@
.button-expander
{
border : none;
padding : none;
padding : 0;
margin : 1px 5px 3px 1px;
background-color : inherit;
list-style-image : url("chrome://global/skin/closedtwisty.gif");
@ -308,8 +308,8 @@
{
border : none;
background-color : inherit;
padding : none;
margin : none;
padding : 0;
margin : 0;
}
.button-expander:hover

Просмотреть файл

@ -3,7 +3,7 @@
**/
.box-smallheader
{
behavior : url(chrome://communicator/content/dialogBindings.xml#smallheader);
-moz-binding : url(chrome://communicator/content/dialogBindings.xml#smallheader);
border-left : 1px solid threedshadow;
border-top : 1px solid threedshadow;
border-right : 1px solid threedhighlight;
@ -43,7 +43,7 @@
**/
.box-header
{
behavior : url(chrome://global/skin/classicBindings.xml#largeheader);
-moz-binding : url(chrome://global/skin/classicBindings.xml#largeheader);
border-bottom : 1px solid threedhighlight;
}
@ -76,7 +76,7 @@
**/
.box-status
{
visibility : collapsed;
visibility : collapse;
}
/**

Просмотреть файл

@ -1,20 +1,20 @@
.menubutton-dual.toolbar.top
{
behavior : url("chrome://global/content/menulistBindings.xml#menubutton-dual-ex");
-moz-binding : url("chrome://global/content/menulistBindings.xml#menubutton-dual-ex");
border : 1px solid transparent;
user-focus : none !important;
-moz-user-focus : none !important;
}
/* internal button */
.menubutton-dual-ex-button.top
{
behavior : url("chrome://global/skin/buttonBindings.xml#simplebutton");
-moz-binding : url("chrome://global/skin/buttonBindings.xml#simplebutton");
border : 1px solid transparent;
min-width : 47px;
margin : 0px;
padding : 2px 7px 2px 6px;
user-focus : none !important;
-moz-user-focus : none !important;
}
/* dropmarker */
@ -191,17 +191,17 @@
/*
.menubutton-dual.toolbar.top
{
behavior : url("chrome://global/content/menulistBindings.xml#menubutton-dual-top");
-moz-binding : url("chrome://global/content/menulistBindings.xml#menubutton-dual-top");
}
.menubutton-dual.toolbar.top > .menubutton-internal-box > .menubutton-dual-button
{
behavior : url("chrome://global/skin/classicBindings.xml#toolbarbutton-top");
-moz-binding : url("chrome://global/skin/classicBindings.xml#toolbarbutton-top");
background-color : none;
min-width : 47px;
margin : 0px;
border : 1px solid transparent;
user-focus : none;
-moz-user-focus : none;
padding : 2px 3px 2px 3px;
text-align : center;
}
@ -302,13 +302,13 @@
/* toolbar menubuttons */
menubutton.button-toolbar-4
{
behavior : url("chrome://communicator/skin/menubuttonBindings.xml#menubutton-toolbar-single");
-moz-binding : url("chrome://communicator/skin/menubuttonBindings.xml#menubutton-toolbar-single");
border : 1px solid transparent;
}
menubutton.button-toolbar
{
behavior : url("chrome://communicator/skin/menubuttonBindings.xml#menubutton-toolbar-single");
-moz-binding : url("chrome://communicator/skin/menubuttonBindings.xml#menubutton-toolbar-single");
}
menubutton.button-toolbar[open="true"],
@ -365,4 +365,4 @@ menubutton.button-toolbar-4[open="true"] > .menubutton-toolbar-single-internal-b
list-style-image : url("chrome://global/skin/scroll-up.gif");
}

Просмотреть файл

@ -39,4 +39,4 @@
#bgDiv {position:absolute; top:0px; left:0px; width:1; background:url("chrome://editor/skin/images/Map_checker.gif"); background-color: white; cursor: inherit;}
BODY {background-color:appworkspace;}
HTML {height: 100%;}
IMG {opacity: .99;}
IMG {-moz-opacity: .99;}

Просмотреть файл

@ -43,7 +43,7 @@ button.edit-mode:hover,
button.edit-mode:hover:active,
button.edit-mode
{
behavior : url(chrome://global/content/xulBindings.xml#buttonleft);
-moz-binding : url(chrome://global/content/xulBindings.xml#buttonleft);
-moz-border-radius : 0px 0px 8px 8px;
padding : 1px 5px 1px 4px;
margin : 0px 1px;
@ -624,7 +624,7 @@ button.edit-mode[selected="1"]:hover:active
#text-align-left[disabled="true"]:hover:active,
#align-left-button[disabled="true"],
#align-left-button[disabled="true"]:hover,
#align-left-button[disabled="true"]:hover:active,
#align-left-button[disabled="true"]:hover:active
{
list-style-image : url("chrome://editor/skin/images/left-disabled.gif");
}

Просмотреть файл

@ -7,7 +7,7 @@
button.plain
{
behavior : url(chrome://global/content/xulBindings.xml#buttonleft);
-moz-binding : url(chrome://global/content/xulBindings.xml#buttonleft);
}
button.plain, button.plain:hover, button.plain:hover:active,
@ -37,7 +37,7 @@
button.plain-extended
{
behavior : url("chrome://global/skin/buttonBindings.xml#buttonleft");
-moz-binding : url("chrome://global/skin/buttonBindings.xml#buttonleft");
border-left : 1px solid #DDDDDD;
border-top : 1px solid #DDDDDD;
border-right : 1px solid #000000;
@ -103,9 +103,9 @@
/** All .button-* styles also apply to dialog exit buttons (OK/Cancel) (as seen in XBL binding) **/
button, .exit-dialog {
behavior : url(chrome://global/skin/buttonBindings.xml#exit-button);
-moz-binding : url(chrome://global/skin/buttonBindings.xml#exit-button);
border : 0px;
user-focus : ignore;
-moz-user-focus : ignore;
min-width : 60px;
color : #000000;
background-color : transparent !important; /* Greatly increases responsiveness and 'feel' */

Просмотреть файл

@ -6,7 +6,7 @@
checkbox
{
margin: 3px 5px 3px 5px;
user-focus: ignore;
-moz-user-focus: ignore;
}
/* checkmark outer frame */

Просмотреть файл

@ -3,7 +3,7 @@
**/
.box-smallheader
{
behavior : url(chrome://global/content/dialogBindings.xml#smallheader);
-moz-binding : url(chrome://global/content/dialogBindings.xml#smallheader);
border : 1px inset #CCCCCC;
margin : 0px 5px 6px 5px;
}
@ -39,7 +39,7 @@
**/
.box-header
{
behavior : url(chrome://global/content/dialogBindings.xml#largeheader);
-moz-binding : url(chrome://global/content/dialogBindings.xml#largeheader);
}
.box-header-header
@ -83,7 +83,7 @@
**/
.box-status
{
behavior : url(chrome://global/content/dialogBindings.xml#status);
-moz-binding : url(chrome://global/content/dialogBindings.xml#status);
}
.box-status-bg

Просмотреть файл

@ -224,7 +224,7 @@
/** XUL <scrollbar> element **/
scrollbar
{
user-focus : ignore;
-moz-user-focus : ignore;
}

Просмотреть файл

@ -35,7 +35,7 @@ menupopup, popup
border-top : thin solid white;
border-right : 3px ridge black;
border-bottom : 3px ridge black;
user-focus : ignore;
-moz-user-focus : ignore;
}
menupopup > menu, popup > menu,

Просмотреть файл

@ -4,7 +4,7 @@
.menubutton-dual[buttondown="true"][disabled="true"],
.menubutton-dual[buttonover="true"][disabled="true"]
{
behavior : url("chrome://global/skin/menubuttonBindings.xml#menubutton-toolbar-top");
-moz-binding : url("chrome://global/skin/menubuttonBindings.xml#menubutton-toolbar-top");
border : 1px solid transparent;
margin : 0px 2px;
}
@ -66,7 +66,7 @@
.menubutton-dual[disabled="true"]:hover:active > .classic-simplebutton,
.menubutton-dual[buttonover="true"][disabled="true"] > .classic-simplebutton
{
behavior : url("chrome://global/skin/menubuttonBindings.xml#buttontop");
-moz-binding : url("chrome://global/skin/menubuttonBindings.xml#buttontop");
margin : 0px;
border : 1px solid transparent !important;
min-width : 0px;
@ -114,7 +114,7 @@
.menubutton-icon
{
behavior : url("chrome://global/skin/classicBindings.xml#menubutton-icon");
-moz-binding : url("chrome://global/skin/classicBindings.xml#menubutton-icon");
border : 1px solid #000000;
-moz-border-radius : 2px;
background-color : #DDDDDD;

Просмотреть файл

@ -9,7 +9,7 @@
background-color : #DDDDDD;
-moz-border-radius : 4px;
margin : 1px 5px 2px 5px;
user-focus : ignore;
-moz-user-focus : ignore;
}
menulist[open="true"]

Просмотреть файл

@ -5,7 +5,7 @@
radio
{
margin: 3px 5px 3px 5px;
user-focus: ignore;
-moz-user-focus: ignore;
}

Просмотреть файл

@ -3,7 +3,7 @@
/********* XP Scrollbar *********/
scrollbar {
behavior: url("chrome://global/skin/classicBindings.xml#scrollbar");
-moz-binding: url("chrome://global/skin/classicBindings.xml#scrollbar");
border-top: 1px solid black;
}
@ -15,8 +15,8 @@ scrollbar[align="vertical"] {
}
slider {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
background-color: #AAAAAA;
background-image: url("chrome://global/skin/slider-bg-horiz.gif");
}
@ -27,20 +27,20 @@ slider[align="vertical"] {
scrollbarbutton {
display: inline;
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
}
scrollbar[value="hidden"] {
visibility: hidden;
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
}
thumb {
behavior: url("chrome://global/skin/classicBindings.xml#thumb");
user-focus: ignore;
user-select: none;
-moz-binding: url("chrome://global/skin/classicBindings.xml#thumb");
-moz-user-focus: ignore;
-moz-user-select: none;
background-color: #9999FF;
border-left: 1px solid #000000;
border-right: 1px solid #000000;
@ -67,8 +67,8 @@ thumb:active {
}
thumb[disabled="true"] {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
list-style-image: none;
}
@ -86,55 +86,55 @@ thumb[align="vertical"]:active {
}
scrollbarbutton {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
vertical-align: bottom;
cursor: default;
}
scrollbarbutton:hover:active {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
}
scrollbarbutton[type="decrement"] {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
list-style-image: url("chrome://global/skin/scroll-left.gif");
border-right: 1px solid black;
}
scrollbarbutton[type="decrement"]:hover:active {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
list-style-image: url("chrome://global/skin/scroll-left-active.gif");
}
scrollbarbutton[type="decrement"][disabled="true"],
scrollbarbutton[type="decrement"][disabled="true"]:hover:active {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
list-style-image: url("chrome://global/skin/scroll-left-disabled.gif");
}
scrollbarbutton[type="increment"] {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
list-style-image: url("chrome://global/skin/scroll-right.gif");
border-left: 1px solid black;
border-right: 1px solid black;
}
scrollbarbutton[type="increment"]:hover:active {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
list-style-image: url("chrome://global/skin/scroll-right-active.gif");
}
scrollbarbutton[type="increment"][disabled="true"],
scrollbarbutton[type="increment"][disabled="true"]:hover:active {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
list-style-image: url("chrome://global/skin/scroll-right-disabled.gif")
}
@ -144,43 +144,43 @@ scrollbar[align="vertical"] > scrollbarbutton {
}
scrollbar[align="vertical"] > scrollbarbutton[type="decrement"] {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
list-style-image: url("chrome://global/skin/scroll-up.gif");
border-bottom: 1px solid black;
}
scrollbar[align="vertical"] > scrollbarbutton[type="decrement"]:hover:active {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
list-style-image: url("chrome://global/skin/scroll-up-active.gif");
}
scrollbar[align="vertical"] > scrollbarbutton[type="decrement"][disabled="true"],
scrollbar[align="vertical"] > scrollbarbutton[type="decrement"][disabled="true"]:hover:active {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
list-style-image: url("chrome://global/skin/scroll-up-disabled.gif");
}
scrollbar[align="vertical"] > scrollbarbutton[type="increment"] {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
list-style-image: url("chrome://global/skin/scroll-down.gif");
border-top: 1px solid black;
border-bottom: 1px solid black;
}
scrollbar[align="vertical"] > scrollbarbutton[type="increment"]:hover:active {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
list-style-image: url("chrome://global/skin/scroll-down-active.gif");
}
scrollbar[align="vertical"] > scrollbarbutton[type="increment"][disabled="true"],
scrollbar[align="vertical"] > scrollbarbutton[type="increment"][disabled="true"]:hover:active {
user-focus: ignore;
user-select: none;
-moz-user-focus: ignore;
-moz-user-select: none;
list-style-image: url("chrome://global/skin/scroll-down-disabled.gif");
}

Просмотреть файл

@ -9,7 +9,7 @@ splitter
grippy, grippy[collapse="before"]
{
behavior : url("chrome://global/skin/classicBindings.xml#grippy");
-moz-binding : url("chrome://global/skin/classicBindings.xml#grippy");
margin : 0px;
border-left : 1px solid #FFFFFF;
border-top : 1px solid #FFFFFF;

Просмотреть файл

@ -6,7 +6,7 @@
*******************************/
tab {
behavior : url(chrome://global/skin/classicBindings.xml#tab);
-moz-binding : url(chrome://global/skin/classicBindings.xml#tab);
color : #000000;
padding : 0px;
max-height : 24px;
@ -90,7 +90,7 @@ tab:hover:active[selected="true"] > .tab-image-right {
}
tabbox {
behavior : url(chrome://global/skin/classicBindings.xml#tabbox);
-moz-binding : url(chrome://global/skin/classicBindings.xml#tabbox);
padding : 0px;
}

Просмотреть файл

@ -22,7 +22,7 @@
{
margin-top : 2px;
min-height : 1em;
user-focus : ignore;
-moz-user-focus : ignore;
}
.taskbutton
@ -39,4 +39,4 @@
#taskbar > toolbargrippy
{
display : none;
}
}

Просмотреть файл

@ -24,7 +24,7 @@ toolbar
toolbargrippy
{
behavior : url("chrome://global/skin/classicBindings.xml#toolbargrippy");
-moz-binding : url("chrome://global/skin/classicBindings.xml#toolbargrippy");
background-color : #DDDDDD;
border-left : 1px solid #FFFFFF;
border-top : 1px solid #FFFFFF;

Просмотреть файл

@ -50,7 +50,7 @@ treecell {
}
.treecell-header, .treecell-inset-header {
behavior: url("chrome://global/skin/treeBindings.xml#treecell-header");
-moz-binding: url("chrome://global/skin/treeBindings.xml#treecell-header");
background-color: #CCCCCC;
border-left: 1px solid #666666 !important;
border-top: 1px solid #666666 !important;
@ -101,7 +101,7 @@ treecell {
.treecell-header-image
{
behavior : url("chrome://global/skin/treeBindings.xml#treecell-header-image");
-moz-binding : url("chrome://global/skin/treeBindings.xml#treecell-header-image");
padding : 0px;
}
@ -143,7 +143,7 @@ treecell.propertylist {
.tree-cell-twisty {
list-style-image: url("chrome://global/skin/twisty-closed.gif");
user-focus:ignore;
-moz-user-focus:ignore;
padding-right: 2px;
}

Просмотреть файл

@ -7,7 +7,7 @@
/* outer frame */
button, button.left
{
behavior : url("chrome://global/skin/buttonBindings.xml#buttonleft");
-moz-binding : url("chrome://global/skin/buttonBindings.xml#buttonleft");
border-left : 1px solid threedface;
border-top : 1px solid threedface;
border-right : 1px solid threeddarkshadow;

Просмотреть файл

@ -4,7 +4,7 @@
/* outer frame */
checkbox
{
behavior : url("chrome://global/skin/classicBindings.xml#checkbox");
-moz-binding : url("chrome://global/skin/classicBindings.xml#checkbox");
margin : 3px 5px 3px 5px;
}
@ -80,4 +80,4 @@
padding : 0px;
}

Просмотреть файл

@ -3,7 +3,7 @@
**/
.box-smallheader
{
behavior : url(chrome://global/content/dialogBindings.xml#smallheader);
-moz-binding : url(chrome://global/content/dialogBindings.xml#smallheader);
border-left : 1px solid threedshadow;
border-top : 1px solid threedshadow;
border-right : 1px solid threedhighlight;
@ -42,7 +42,7 @@
**/
.box-header
{
behavior : url(chrome://global/content/dialogBindings.xml#largeheader);
-moz-binding : url(chrome://global/content/dialogBindings.xml#largeheader);
}
.box-header-header
@ -86,7 +86,7 @@
**/
.box-status
{
behavior : url(chrome://global/content/dialogBindings.xml#status);
-moz-binding : url(chrome://global/content/dialogBindings.xml#status);
}
.box-status-bg

Просмотреть файл

@ -142,7 +142,7 @@
{
border-top : 1px solid threedhighlight;
background-color : threedface;
user-focus : ignore;
-moz-user-focus : ignore;
overflow : hidden
}
*/
@ -212,7 +212,7 @@
/** XUL <scrollbar> element **/
scrollbar
{
user-focus : ignore;
-moz-user-focus : ignore;
}
@ -243,7 +243,7 @@
/*
text[disabled="true"]
{
behavior : url("chrome://global/skin/classicBindings.xml#textdisabled");
-moz-binding : url("chrome://global/skin/classicBindings.xml#textdisabled");
}
text[disabled="true"] > .text-top

Просмотреть файл

@ -4,7 +4,7 @@
.menubutton-dual[buttondown="true"][disabled="true"],
.menubutton-dual[buttonover="true"][disabled="true"]
{
behavior : url("chrome://global/skin/menubuttonBindings.xml#menubutton-toolbar-top");
-moz-binding : url("chrome://global/skin/menubuttonBindings.xml#menubutton-toolbar-top");
border : 1px solid threedface;
}
@ -48,7 +48,7 @@
.menubutton-dual[buttonover="true"][disabled="true"] > .classic-simplebutton,
.menubutton-dual[buttondown="true"][disabled="true"] > .classic-simplebutton
{
behavior : url("chrome://global/skin/menubuttonBindings.xml#buttontop");
-moz-binding : url("chrome://global/skin/menubuttonBindings.xml#buttontop");
margin : 0px;
border : 1px solid threedface;
min-width : 0px;

Просмотреть файл

@ -4,7 +4,7 @@
/* outer frame */
menulist
{
behavior : url("chrome://global/skin/menulistBindings.xml#menulist");
-moz-binding : url("chrome://global/skin/menulistBindings.xml#menulist");
border-left : 1px solid threedshadow;
border-top : 1px solid threedshadow;
border-right : 1px solid threedhighlight;
@ -96,7 +96,7 @@
/* rules for popups and separators associated with menulists */
menulist > menupopup
{
behavior : url("chrome://global/skin/menulistBindings.xml#menulistpopup");
-moz-binding : url("chrome://global/skin/menulistBindings.xml#menulistpopup");
background-color : window;
border : 1px solid #000000;
min-width : 0px;

Просмотреть файл

@ -4,7 +4,7 @@
/* outer frame */
radio
{
behavior : url("chrome://global/skin/classicBindings.xml#radio");
-moz-binding : url("chrome://global/skin/classicBindings.xml#radio");
margin : 3px 5px 3px 5px;
}
@ -82,4 +82,4 @@
padding : 0px;
}

Просмотреть файл

@ -4,7 +4,7 @@
scrollbar
{
behavior : url("chrome://global/skin/classicBindings.xml#scrollbar");
-moz-binding : url("chrome://global/skin/classicBindings.xml#scrollbar");
}
slider
@ -23,7 +23,7 @@ scrollbar[value="hidden"]
thumb
{
behavior : url(chrome://global/skin/classicBindings.xml#thumb);
-moz-binding : url(chrome://global/skin/classicBindings.xml#thumb);
border-left : 1px solid threedface;
border-top : 1px solid threedface;
border-right : 1px solid threeddarkshadow;
@ -50,7 +50,7 @@ thumb
**/
scrollbarbutton
{
behavior : url("chrome://global/skin/classicBindings.xml#scrollbarbutton");
-moz-binding : url("chrome://global/skin/classicBindings.xml#scrollbarbutton");
cursor : default;
border-left : 1px solid threedface;
border-top : 1px solid threedface;

Просмотреть файл

@ -9,7 +9,7 @@ splitter
grippy, grippy[collapse="before"]
{
behavior : url("chrome://global/skin/classicBindings.xml#grippy");
-moz-binding : url("chrome://global/skin/classicBindings.xml#grippy");
border : 1px solid threedshadow;
list-style-image : url("chrome://global/skin/grippy-horizontal-before.gif");
cursor : pointer;

Просмотреть файл

@ -22,7 +22,7 @@
{
margin-top : 2px;
min-height : 1em;
user-focus : ignore;
-moz-user-focus : ignore;
}
.taskbutton
@ -39,4 +39,4 @@
#taskbar > toolbargrippy
{
display : none;
}
}

Просмотреть файл

@ -28,7 +28,7 @@ toolbar
toolbargrippy
{
behavior : url("chrome://global/skin/classicBindings.xml#toolbargrippy");
-moz-binding : url("chrome://global/skin/classicBindings.xml#toolbargrippy");
background-color : threedface;
border-left : 1px solid threedhighlight;
border-top : 1px solid threedhighlight;
@ -64,4 +64,4 @@ toolbar[collapsed="true"] > toolbargrippy
toolbarseparator
{
width : 2em;
}
}

Просмотреть файл

@ -40,7 +40,7 @@ treecell
.treecell-header,
.treecell-inset-header
{
behavior : url("chrome://global/skin/treeBindings.xml#treecell-header");
-moz-binding : url("chrome://global/skin/treeBindings.xml#treecell-header");
border-left : 1px solid threedface !important;
border-top : 1px solid threedface !important;
border-right : 1px solid threeddarkshadow !important;
@ -102,7 +102,7 @@ treecell.propertylist
.tree-cell-twisty {
list-style-image: url("chrome://global/skin/closedtwisty.gif");
user-focus:ignore;
-moz-user-focus:ignore;
padding-right: 2px;
}

Просмотреть файл

@ -7,16 +7,17 @@
/* outer frame */
button, button.left
{
behavior : url("chrome://global/skin/buttonBindings.xml#buttonleft");
-moz-binding : url("chrome://global/skin/buttonBindings.xml#buttonleft");
border-left : 1px solid threedface;
border-top : 1px solid threedface;
border-right : 1px solid threeddarkshadow;
border-bottom : 1px solid threeddarkshadow;
margin : 1px 5px 2px 5px;
min-width : 6.3em;
font : button,sans-serif;
/* font-family : sans-serif;
font : button; */
color : buttontext;
user-focus : normal;
-moz-user-focus : normal;
}
.button-box-1
@ -25,7 +26,7 @@
border-top : 1px solid threedhighlight;
border-right : 1px solid threedshadow;
border-bottom : 1px solid threedshadow;
user-focus : none;
-moz-user-focus : none;
}
.button-box-2
@ -153,7 +154,7 @@
.reorder-up > .button-internal-box > .button-icon,
.reorder-down > .button-internal-box > .button-icon
{
margin : none;
padding : none;
margin : 0;
padding : 0;
}

Просмотреть файл

@ -4,7 +4,7 @@
/* outer frame */
checkbox
{
behavior : url("chrome://global/skin/classicBindings.xml#checkbox");
-moz-binding : url("chrome://global/skin/classicBindings.xml#checkbox");
margin : 3px 5px 3px 5px;
}
@ -18,7 +18,7 @@
margin : 2px 2px 0px 0px;
width : 13px;
height : 13px;
user-focus : none;
-moz-user-focus : none;
}
.checkbox-checkmark-box-1[disabled="true"]
@ -83,5 +83,5 @@
.checkbox-internal-box
{
user-focus : none;
-moz-user-focus : none;
}

Просмотреть файл

@ -3,7 +3,7 @@
**/
.box-smallheader
{
behavior : url(chrome://global/content/dialogBindings.xml#smallheader);
-moz-binding : url(chrome://global/content/dialogBindings.xml#smallheader);
border-left : 1px solid threedshadow;
border-top : 1px solid threedshadow;
border-right : 1px solid threedhighlight;
@ -42,7 +42,7 @@
**/
.box-header
{
behavior : url(chrome://global/skin/classicBindings.xml#largeheader);
-moz-binding : url(chrome://global/skin/classicBindings.xml#largeheader);
border-bottom : 1px solid threedhighlight;
}

Просмотреть файл

@ -160,7 +160,7 @@
/* top only */
.double-box-top
{
behavior : url("chrome://global/skin/classicBindings.xml#double-box");
-moz-binding : url("chrome://global/skin/classicBindings.xml#double-box");
border-top : 1px solid threedshadow;
background-color : #FFFFFF;
margin : 0px;
@ -174,7 +174,7 @@
/* all round */
.double-box
{
behavior : url("chrome://global/skin/classicBindings.xml#double-box");
-moz-binding : url("chrome://global/skin/classicBindings.xml#double-box");
border-left : 1px solid threedshadow;
border-top : 1px solid threedshadow;
border-bottom : 1px solid threedhighlight;
@ -186,4 +186,4 @@
.double-box > .db-internal-box
{
border : 1px solid threeddarkshadow;
}
}

Просмотреть файл

@ -55,8 +55,9 @@
background-color : threedface;
color : windowtext;
padding : 0px;
font : dialog, sans-serif;
user-focus : ignore;
/* font-family : sans-serif;
font : dialog; */
-moz-user-focus : ignore;
}
window[wait-cursor]
@ -151,7 +152,7 @@
{
border-top : 1px solid threedhighlight;
background-color : threedface;
user-focus : ignore;
-moz-user-focus : ignore;
overflow : hidden
}
*/
@ -232,7 +233,7 @@
/** XUL <scrollbar> element **/
scrollbar
{
user-focus : ignore;
-moz-user-focus : ignore;
}
@ -261,7 +262,7 @@
/*
text[disabled="true"]
{
behavior : url("chrome://global/skin/classicBindings.xml#textdisabled");
-moz-binding : url("chrome://global/skin/classicBindings.xml#textdisabled");
}
*/

Просмотреть файл

@ -208,7 +208,7 @@ menuitem[checked="true"][type="radio"][menuactive="true"]
background-color : infobackground;
border : 1px solid windowframe;
color : infotext;
font : smaller;
font-size : smaller;
padding : 2px;
max-width : 40em;
}

Просмотреть файл

@ -5,7 +5,7 @@
.menubutton-dual[buttondown="true"][disabled="true"],
.menubutton-dual[buttonover="true"][disabled="true"]
{
behavior : url("chrome://global/skin/menubuttonBindings.xml#menubutton-toolbar-top");
-moz-binding : url("chrome://global/skin/menubuttonBindings.xml#menubutton-toolbar-top");
border : 1px solid transparent;
}
@ -49,7 +49,7 @@
.menubutton-dual[buttonover="true"][disabled="true"] > .classic-simplebutton,
.menubutton-dual[buttondown="true"][disabled="true"] > .classic-simplebutton
{
behavior : url("chrome://global/skin/menubuttonBindings.xml#buttontop");
-moz-binding : url("chrome://global/skin/menubuttonBindings.xml#buttontop");
margin : 0px;
border : 1px solid transparent;
min-width : 0px;
@ -116,4 +116,4 @@
{
margin : 0px;
}
*/
*/

Просмотреть файл

@ -3,7 +3,7 @@
/* outer frame */
menulist
{
behavior : url("chrome://global/skin/menulistBindings.xml#menulist");
-moz-binding : url("chrome://global/skin/menulistBindings.xml#menulist");
border-left : 1px solid threedshadow;
border-top : 1px solid threedshadow;
border-right : 1px solid threedhighlight;
@ -26,7 +26,7 @@
border-top : 1px solid threeddarkshadow;
border-right : 1px solid threedface;
border-bottom : 1px solid threedface;
user-focus : none;
-moz-user-focus : none;
}
.menulist-display-box,
@ -49,7 +49,7 @@
.menulist-text
{
padding : 0px 2px 0px 2px;
margin: : 0px;
margin : 0px;
}
/* drop marker display frame */
@ -96,7 +96,7 @@
/* rules for popups and separators associated with menulists */
menulist > menupopup
{
behavior : url("chrome://global/skin/menulistBindings.xml#menulistpopup");
-moz-binding : url("chrome://global/skin/menulistBindings.xml#menulistpopup");
background-color : window;
border : 1px solid #000000;
min-width : 0px;
@ -129,8 +129,8 @@
**/
.menulist-compact
{
behavior : url("chrome://global/skin/menulistBindings.xml#menulist-compact");
user-focus : none; /* we don't take focus */
-moz-binding : url("chrome://global/skin/menulistBindings.xml#menulist-compact");
-moz-user-focus : none; /* we don't take focus */
border-left : 1px solid threedhighlight;
border-top : 1px solid threedhighlight;
border-right : 1px solid threeddarkshadow;
@ -155,4 +155,4 @@
margin-left : 2px;
}

Просмотреть файл

@ -4,7 +4,7 @@
/* outer frame */
radio
{
behavior : url("chrome://global/skin/classicBindings.xml#radio");
-moz-binding : url("chrome://global/skin/classicBindings.xml#radio");
margin : 3px 5px 3px 5px;
}
@ -84,5 +84,5 @@
.radio-internal-box
{
user-focus : none;
}
-moz-user-focus : none;
}

Просмотреть файл

@ -4,7 +4,7 @@
scrollbar
{
behavior : url("chrome://global/skin/classicBindings.xml#scrollbar");
-moz-binding : url("chrome://global/skin/classicBindings.xml#scrollbar");
}
slider
@ -23,7 +23,7 @@ scrollbar[value="hidden"]
thumb
{
behavior : url(chrome://global/skin/classicBindings.xml#thumb);
-moz-binding : url(chrome://global/skin/classicBindings.xml#thumb);
border-left : 1px solid threedface;
border-top : 1px solid threedface;
border-right : 1px solid threeddarkshadow;
@ -50,7 +50,7 @@ thumb
**/
scrollbarbutton
{
behavior : url("chrome://global/skin/classicBindings.xml#scrollbarbutton");
-moz-binding : url("chrome://global/skin/classicBindings.xml#scrollbarbutton");
cursor : default;
border-left : 1px solid threedface;
border-top : 1px solid threedface;

Просмотреть файл

@ -9,7 +9,7 @@
grippy, grippy[collapse="before"]
{
behavior : url("chrome://global/skin/classicBindings.xml#grippy");
-moz-binding : url("chrome://global/skin/classicBindings.xml#grippy");
border : 1px solid threedshadow;
list-style-image : url("chrome://global/skin/grippy-horizontal-before.gif");
cursor : pointer;
@ -56,7 +56,7 @@
box[align="vertical"] > splitter
{
cursor : n-resize;
behavior : url("chrome://global/skin/classicBindings.xml#splitter-hack");
-moz-binding : url("chrome://global/skin/classicBindings.xml#splitter-hack");
border-top : 1px solid threedhighlight;
}
@ -144,4 +144,4 @@
{
list-style-image : url("chrome://global/skin/grippy-vertical-before.gif");
}

Просмотреть файл

@ -22,7 +22,7 @@
{
margin-top : 2px;
min-height : 1em;
user-focus : ignore;
-moz-user-focus : ignore;
}
.taskbutton
@ -39,4 +39,4 @@
#taskbar > toolbargrippy
{
display : none;
}
}

Просмотреть файл

@ -21,7 +21,7 @@ toolbar
toolbargrippy
{
behavior : url("chrome://global/skin/classicBindings.xml#toolbargrippy");
-moz-binding : url("chrome://global/skin/classicBindings.xml#toolbargrippy");
border-left : 1px solid threedhighlight;
border-top : 1px solid threedhighlight;
border-right : 1px solid threedshadow;
@ -46,7 +46,7 @@ toolbargrippy
toolbargrippy[tbgrippy-collapsed="true"]
{
behavior : url("chrome://global/skin/classicBindings.xml#toolbargrippy-collapsed");
-moz-binding : url("chrome://global/skin/classicBindings.xml#toolbargrippy-collapsed");
border-left : 1px solid threedhighlight;
border-top : 1px solid threedhighlight;
border-right : 1px solid threedshadow;
@ -96,5 +96,5 @@ toolbarseparator
.toolbar-focustarget
{
user-focus : none !important;
}
-moz-user-focus : none !important;
}

Просмотреть файл

@ -58,7 +58,7 @@ treecell
.treecell-header,
.treecell-inset-header
{
behavior : url("chrome://global/skin/treeBindings.xml#treecell-header");
-moz-binding : url("chrome://global/skin/treeBindings.xml#treecell-header");
border-left : 1px solid threedhighlight !important;
border-top : 1px solid threedhighlight !important;
border-right : 1px solid threeddarkshadow !important;
@ -86,7 +86,7 @@ treecell
.treecell-header-image
{
behavior : url("chrome://global/skin/treeBindings.xml#treecell-header-image");
-moz-binding : url("chrome://global/skin/treeBindings.xml#treecell-header-image");
padding : 0px;
}
@ -154,7 +154,7 @@ treecell.propertylist
.tree-cell-twisty {
list-style-image: url("chrome://global/skin/twisty-closed.gif");
user-focus:ignore;
-moz-user-focus:ignore;
padding-right: 2px;
}

Просмотреть файл

@ -29,7 +29,7 @@ Rights Reserved.
overflow: auto;
background-color: #FFFFFF;
min-width: 150px;
user-focus: ignore;
-moz-user-focus: ignore;
}
#CardViewInnerBox {

Просмотреть файл

@ -28,7 +28,7 @@ Rights Reserved.
@namespace html url("http://www.w3.org/1999/xhtml"); /* namespace for XUL elements */
mail-emailaddress {
behavior: url(chrome://messenger/content/mailWidgets.xml#mail-emailaddress);
-moz-binding: url(chrome://messenger/content/mailWidgets.xml#mail-emailaddress);
display: inline;
}

Просмотреть файл

@ -55,6 +55,8 @@ iframe {
/**
* boxes
*/
/* XXX The CSS selector results_box is invalid and is ignored !!!
No underscores are allowed!!!!! */
#results_box {
border-left: 8px solid #CCCCCC;
min-width: 10px;
@ -450,23 +452,23 @@ box#messagepanebox
}
dummy.usesMailWidgets {
behavior: url(chrome://messenger/content/mailWidgets.xml#dummy);
-moz-binding: url(chrome://messenger/content/mailWidgets.xml#dummy);
}
searchattribute {
behavior: url(chrome://messenger/content/mailWidgets.xml#searchattribute);
-moz-binding: url(chrome://messenger/content/mailWidgets.xml#searchattribute);
}
searchoperator {
behavior: url(chrome://messenger/content/mailWidgets.xml#searchoperator);
-moz-binding: url(chrome://messenger/content/mailWidgets.xml#searchoperator);
}
searchvalue {
behavior: url(chrome://messenger/content/mailWidgets.xml#searchvalue);
-moz-binding: url(chrome://messenger/content/mailWidgets.xml#searchvalue);
}
searchterm {
behavior: url(chrome://messenger/content/mailWidgets.xml#searchterm);
-moz-binding: url(chrome://messenger/content/mailWidgets.xml#searchterm);
}
.treecell-mailcardicon

Просмотреть файл

@ -216,13 +216,12 @@
#addressingWidgetTree
{
user-focus : none;
-moz-user-focus : none;
}
#attachmentBucket, #attachmentBucketText
{
margin-left : 0px;
user-focus : none;
-moz-user-focus : none;
}

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше