Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Report modal: different submitting states #79

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,6 @@ sw.*

# Files marked as sensitive
*.nogit.*

# Now by Vercel
.now/
134 changes: 134 additions & 0 deletions components/LoadingSpinner.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
<template lang="pug">
.la-ball-clip-rotate: div
</template>

<style lang="stylus" scoped>
/*
* Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
* Copyright 2015 Daniel Cardoso <@DanielCardoso>
* Licensed under MIT
*/
.la-ball-clip-rotate, .la-ball-clip-rotate > div
position relative
box-sizing border-box
-webkit-box-sizing border-box
-moz-box-sizing border-box

.la-ball-clip-rotate
display block
color var(--blue)
font-size 0

.la-ball-clip-rotate.la-dark
color #333

.la-ball-clip-rotate > div
display inline-block
float none
border 0 solid currentColor
background-color currentColor

.la-ball-clip-rotate
width 32px
height 32px

.la-ball-clip-rotate > div
width 32px
height 32px
border-width 2px
border-bottom-color transparent
border-radius 100%
background transparent
animation ball-clip-rotate 0.75s linear infinite
-webkit-animation ball-clip-rotate 0.75s linear infinite
-moz-animation ball-clip-rotate 0.75s linear infinite
-o-animation ball-clip-rotate 0.75s linear infinite

.la-ball-clip-rotate.la-sm
width 16px
height 16px

.la-ball-clip-rotate.la-sm > div
width 16px
height 16px
border-width 1px

.la-ball-clip-rotate.la-2x
width 64px
height 64px

.la-ball-clip-rotate.la-2x > div
width 64px
height 64px
border-width 4px

.la-ball-clip-rotate.la-3x
width 96px
height 96px

.la-ball-clip-rotate.la-3x > div
width 96px
height 96px
border-width 6px

/*
* Animation
*/
@keyframes ball-clip-rotate
0%
transform rotate(0)
-webkit-transform rotate(0)

50%
transform rotate(180deg)
-webkit-transform rotate(180deg)

100%
transform rotate(360deg)
-webkit-transform rotate(360deg)

@keyframes ball-clip-rotate
0%
transform rotate(0)
-moz-transform rotate(0)

50%
transform rotate(180deg)
-moz-transform rotate(180deg)

100%
transform rotate(360deg)
-moz-transform rotate(360deg)

@keyframes ball-clip-rotate
0%
transform rotate(0)
-o-transform rotate(0)

50%
transform rotate(180deg)
-o-transform rotate(180deg)

100%
transform rotate(360deg)
-o-transform rotate(360deg)

@keyframes ball-clip-rotate
0%
transform rotate(0)
-webkit-transform rotate(0)
-moz-transform rotate(0)
-o-transform rotate(0)

50%
transform rotate(180deg)
-webkit-transform rotate(180deg)
-moz-transform rotate(180deg)
-o-transform rotate(180deg)

100%
transform rotate(360deg)
-webkit-transform rotate(360deg)
-moz-transform rotate(360deg)
-o-transform rotate(360deg)
</style>
Loading