diff options
author | John McLear <john@mclear.co.uk> | 2014-11-18 19:13:51 +0000 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2014-11-18 19:13:51 +0000 |
commit | 9b5ee93bce5c6853c234855398fa8b9ee81e06ef (patch) | |
tree | 628bd09cac526879f302f8d1e20ea1fc4c0335cf /src/static | |
parent | 3ad9a58895090a6fad0ce5930cefdcfd89b64312 (diff) | |
download | etherpad-lite-9b5ee93bce5c6853c234855398fa8b9ee81e06ef.zip |
spinning loading icons
Diffstat (limited to 'src/static')
-rw-r--r-- | src/static/css/pad.css | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/src/static/css/pad.css b/src/static/css/pad.css index f97e1b3e..d30d3303 100644 --- a/src/static/css/pad.css +++ b/src/static/css/pad.css @@ -224,6 +224,39 @@ li[data-key=showusers] > a #online_count { padding:10px; } +.loadingAnimation{ + -webkit-animation: loadingAnimation 2s infinite linear; + animation: loadingAnimation 2s infinite linear; + font-family: "fontawesome-etherpad"; + font-size:24px; + z-index:150; +} + +.loadingAnimation:before{ + content: "\e80e"; +} + +@-webkit-keyframes loadingAnimation { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes loadingAnimation { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + #editorcontainerbox { position: absolute; bottom: 0; @@ -1107,5 +1140,4 @@ input[type=checkbox] { .gritter-light .gritter-title { text-shadow: none; } - /* End of gritter stuff */ |