Add loading animation to form submit button

[MAILPOET-1567]
This commit is contained in:
Rostislav Wolny
2019-01-22 09:55:24 +01:00
parent 9562d8704c
commit 0d433c7f7c
3 changed files with 55 additions and 1 deletions

View File

@@ -12,3 +12,49 @@
.mailpoet_list_label
.mailpoet_date_label
display:block
/* form loading */
.mailpoet_form_sending
.mailpoet_form_loading
display:block
.mailpoet_submit
display:none
.mailpoet_form_loading
display:none
width: 30px
text-align: center
.mailpoet_form_loading > span
width: 5px
height: 5px
background-color: #5b5b5b
border-radius: 100%
display: inline-block
-webkit-animation: mailpoet-bouncedelay 1.4s infinite ease-in-out both
animation: mailpoet-bouncedelay 1.4s infinite ease-in-out both
.mailpoet_form_loading .mailpoet_bounce1
-webkit-animation-delay: -0.32s
animation-delay: -0.32s
.mailpoet_form_loading .mailpoet_bounce2 {
-webkit-animation-delay: -0.16s
animation-delay: -0.16s
margin: 0 7px
}
@-webkit-keyframes mailpoet-bouncedelay
0%, 80%, 100%
-webkit-transform: scale(0)
40%
-webkit-transform: scale(1.0)
@keyframes mailpoet-bouncedelay
0%, 80%, 100%
-webkit-transform: scale(0)
transform: scale(0)
40%
-webkit-transform: scale(1.0)
transform: scale(1.0)