mirror of
https://github.com/grafana/grafana.git
synced 2025-01-15 19:22:34 -06:00
6e2237c02f
* chore(sass): introduce stylelint * chore(sass): introduce stylelint config that closely matches sass-lint config * chore: remove sass-lint from codebase * style(theme): disable stylelint string-quotes rule * chore(sass): introduce stylelint-prettier-config to prevent config conflicts * chore: delete sass-lint file * style(sass): fix remaining stylelint errors
25 lines
398 B
SCSS
25 lines
398 B
SCSS
// <3: https://medium.com/@brunn/detecting-autofilled-fields-in-javascript-aed598d25da7
|
|
@keyframes onAutoFillStart {
|
|
from {
|
|
/**/
|
|
}
|
|
to {
|
|
/**/
|
|
}
|
|
}
|
|
@keyframes onAutoFillCancel {
|
|
from {
|
|
/**/
|
|
}
|
|
to {
|
|
/**/
|
|
}
|
|
}
|
|
input:-webkit-autofill {
|
|
animation-name: onAutoFillStart;
|
|
transition: transform 1ms;
|
|
}
|
|
input:not(:-webkit-autofill) {
|
|
animation-name: onAutoFillCancel;
|
|
}
|