mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 22:32:34 +00:00
42 lines
864 B
SCSS
42 lines
864 B
SCSS
input,
|
|
textarea {
|
|
background: transparent;
|
|
|
|
/* Placeholder color */
|
|
&::placeholder {
|
|
@apply text-hint;
|
|
}
|
|
|
|
&::-moz-placeholder {
|
|
@apply text-hint;
|
|
}
|
|
|
|
&::-webkit-input-placeholder {
|
|
@apply text-hint;
|
|
}
|
|
|
|
&:-ms-input-placeholder {
|
|
@apply text-hint;
|
|
}
|
|
|
|
&:-webkit-autofill {
|
|
transition: background-color 600000s 0s, color 600000s 0s !important;
|
|
}
|
|
|
|
&:-webkit-autofill:hover {
|
|
transition: background-color 600000s 0s, color 600000s 0s !important;
|
|
}
|
|
|
|
&:-webkit-autofill:focus {
|
|
transition: background-color 600000s 0s, color 600000s 0s !important;
|
|
}
|
|
|
|
&:-webkit-autofill:active {
|
|
transition: background-color 600000s 0s, color 600000s 0s !important;
|
|
}
|
|
|
|
[data-autocompleted] {
|
|
background-color: transparent !important;
|
|
}
|
|
}
|