Skip to content

Commit ae59ace

Browse files
committed
fix(fieldlable): adds back vender prefixes
1 parent a76ce0e commit ae59ace

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

components/textfield/index.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ governing permissions and limitations under the License.
445445
Details: https://github.com/csstools/normalize.css/blob/main/normalize.css#L297
446446
*/
447447
/* stylelint-disable-next-line value-no-vendor-prefix */
448-
appearance: textfield;
448+
-moz-appearance: textfield;
449449

450450
/* All browsers - Change the input font styles */
451451
text-overflow: ellipsis;
@@ -783,7 +783,7 @@ governing permissions and limitations under the License.
783783

784784
/* TODO: Determine if the vendor prefix toggling of appearance is still needed */
785785
/* stylelint-disable-next-line value-no-vendor-prefix */
786-
appearance: none;
786+
-webkit-appearance: none;
787787

788788
/*
789789
Removes the native spin buttons in Firefox; -moz-appearance: none results in spinners.
@@ -794,7 +794,7 @@ governing permissions and limitations under the License.
794794
Details: https://github.com/csstools/normalize.css/blob/main/normalize.css#L297
795795
*/
796796
/* stylelint-disable-next-line value-no-vendor-prefix */
797-
appearance: textfield;
797+
-moz-appearance: textfield;
798798

799799
/* place in same cell: input, focus indicator, and grows sizer */
800800
grid-row: 2;
@@ -812,7 +812,7 @@ governing permissions and limitations under the License.
812812
&::-webkit-inner-spin-button,
813813
&::-webkit-outer-spin-button {
814814
/* stylelint-disable-next-line value-no-vendor-prefix */
815-
appearance: none;
815+
-webkit-appearance: none;
816816
margin: 0;
817817
}
818818

0 commit comments

Comments
 (0)