mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-10 19:57:13 +03:00
45 lines
616 B
Plaintext
45 lines
616 B
Plaintext
|
// main: material.less
|
||
|
|
||
|
@-webkit-keyframes input-highlight {
|
||
|
0% {
|
||
|
left: 20%;
|
||
|
width: 20%;
|
||
|
}
|
||
|
99% {
|
||
|
width: 0;
|
||
|
left: 0;
|
||
|
opacity: 1;
|
||
|
}
|
||
|
100% {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
}
|
||
|
@-moz-keyframes input-highlight {
|
||
|
0% {
|
||
|
left: 20%;
|
||
|
width: 20%;
|
||
|
}
|
||
|
99% {
|
||
|
width: 0;
|
||
|
left: 0;
|
||
|
opacity: 1;
|
||
|
}
|
||
|
100% {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
}
|
||
|
@keyframes input-highlight {
|
||
|
0% {
|
||
|
left: 20%;
|
||
|
width: 20%;
|
||
|
}
|
||
|
99% {
|
||
|
width: 0;
|
||
|
left: 0;
|
||
|
opacity: 1;
|
||
|
}
|
||
|
100% {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
}
|