mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 12:44:10 -06:00
26 lines
437 B
SCSS
26 lines
437 B
SCSS
// <3: https://medium.com/@brunn/detecting-autofilled-fields-in-javascript-aed598d25da7
|
|
// sass-lint:disable no-empty-rulesets
|
|
@keyframes onAutoFillStart {
|
|
from {
|
|
/**/
|
|
}
|
|
to {
|
|
/**/
|
|
}
|
|
}
|
|
@keyframes onAutoFillCancel {
|
|
from {
|
|
/**/
|
|
}
|
|
to {
|
|
/**/
|
|
}
|
|
}
|
|
input:-webkit-autofill {
|
|
animation-name: onAutoFillStart;
|
|
transition: transform 1ms;
|
|
}
|
|
input:not(:-webkit-autofill) {
|
|
animation-name: onAutoFillCancel;
|
|
}
|