diff options
author | Nolan Lawson <nolan@nolanlawson.com> | 2017-05-06 17:42:38 -0700 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-07 02:42:38 +0200 |
commit | df81bc4a9745288d2eb1f6a924ceb9b79017b04f (patch) | |
tree | a793f9a124247a6ecf66562ce20bb69445cb8408 /app/javascript/styles | |
parent | 87588fa8947c137de1ab75d740318ffc2dfffbbf (diff) |
add asynchronous emojione-picker (code-splitting) (#2863)
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/components.scss | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/javascript/styles/components.scss b/app/javascript/styles/components.scss index 93a3d7046..f2d6f988c 100644 --- a/app/javascript/styles/components.scss +++ b/app/javascript/styles/components.scss @@ -2141,6 +2141,20 @@ button.icon-button.active i.fa-retweet { background: radial-gradient(ellipse, rgba($color4, 0.23) 0%, rgba($color4, 0) 60%); } +@keyframes pulse { + 0% { + opacity: 1; + } + 100% { + opacity: 0.5; + } +} + +.pulse-loading { + animation: pulse 1s ease-in-out infinite; + animation-direction: alternate; +} + .emoji-dialog { width: 245px; height: 270px; |