Bug 1668884 - Replace -moz-Field/-moz-FieldText with Field/FieldText in layout/ r=emilio

Depends on D92336

Differential Revision: https://phabricator.services.mozilla.com/D92337
This commit is contained in:
Itiel 2020-10-05 11:13:54 +00:00
parent 847ef41e9d
commit 90d5d91e15
3 changed files with 12 additions and 12 deletions

View File

@ -4,14 +4,14 @@ input::placeholder {
}
input:placeholder-shown {
-moz-appearance: none;
color: -moz-FieldText;
appearance: none;
color: FieldText;
background-color: red;
}
input:placeholder-shown.shown,
input.shown-ref {
-moz-appearance: none;
appearance: none;
color: green;
background-color: #c7c7c7;
font-style: italic;

View File

@ -4,14 +4,14 @@ textarea::placeholder {
}
textarea:placeholder-shown {
-moz-appearance: none;
color: -moz-FieldText;
appearance: none;
color: FieldText;
background-color: red;
}
textarea:placeholder-shown.shown,
textarea.shown-ref {
-moz-appearance: none;
appearance: none;
color: green;
background-color: #c7c7c7;
font-style: italic;

View File

@ -91,8 +91,8 @@ input {
internal padding magic) */
padding: 1px;
border: 2px inset ThreeDLightShadow;
background-color: -moz-Field;
color: -moz-FieldText;
background-color: Field;
color: FieldText;
font: -moz-field;
text-rendering: optimizeLegibility;
cursor: text;
@ -113,8 +113,8 @@ textarea {
border: 2px inset ThreeDLightShadow;
/* The 1px inline padding is for parity with Win/IE */
padding-inline: 1px;
background-color: -moz-Field;
color: -moz-FieldText;
background-color: Field;
color: FieldText;
font: medium -moz-fixed;
text-rendering: optimizeLegibility;
vertical-align: text-bottom;
@ -244,8 +244,8 @@ select {
select:-moz-select-list-box {
overflow: auto;
background-color: -moz-Field;
color: -moz-FieldText;
background-color: Field;
color: FieldText;
vertical-align: text-bottom;
padding-block: 1px;
appearance: auto;