27 lines
625 B
Plaintext
27 lines
625 B
Plaintext
input {
|
|
background: none;
|
|
outline: none;
|
|
appearance: none;
|
|
border: 0;
|
|
}
|
|
input:-webkit-autofill,
|
|
input:-webkit-autofill:hover,
|
|
input:-webkit-autofill:focus,
|
|
input:-webkit-autofill:active {
|
|
font-size: inherit !important;
|
|
-webkit-box-shadow: none !important;
|
|
background-color: unset !important;
|
|
-webkit-transition-delay: 99999s;
|
|
-webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
|
|
}
|
|
|
|
img {
|
|
vertical-align: middle;
|
|
}
|
|
/*
|
|
// input:-internal-autofill-selected {
|
|
// box-shadow: 0 !important; // 改变了背景色
|
|
// -webkit-text-fill-color: #c0aefa; // 改变了字体颜色
|
|
// }
|
|
*/
|