diff options
| author | sD <stoned@derpymail.org> | 2020-04-25 20:15:59 +0200 |
|---|---|---|
| committer | sD <stoned@derpymail.org> | 2020-04-25 20:15:59 +0200 |
| commit | 5fc8916902c5288257f2412eaf941003fbc2deec (patch) | |
| tree | 5b5d8b3fc16d769230e4e242a100b1c3dbc1eb3b /webAO | |
| parent | f46d60efba4b9ac6ca8fd5e32e1ab875f25fd6d1 (diff) | |
add idle spinner to dgs
Diffstat (limited to 'webAO')
| -rw-r--r-- | webAO/styles/chatbox/dgs.css | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/webAO/styles/chatbox/dgs.css b/webAO/styles/chatbox/dgs.css index d9caa2d..30f853d 100644 --- a/webAO/styles/chatbox/dgs.css +++ b/webAO/styles/chatbox/dgs.css @@ -93,5 +93,25 @@ } #client_chatwaiting { - display: none; + display: block; + position: absolute; + color: #ded7a2; + right: 0.7em; + top: 50%; + line-height: 0.5; + animation: idling 0.4s linear infinite; +} + +@keyframes idling { + 0% { + right: 0.6em; + } + + 25% { + right: 0.7em; + } + + 100% { + right: 0.6em; + } }
\ No newline at end of file |
