diff options
Diffstat (limited to 'src/web')
| -rw-r--r-- | src/web/app/common/tags/reaction-picker.tag | 10 | ||||
| -rw-r--r-- | src/web/app/common/tags/stream-indicator.tag | 2 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/web/app/common/tags/reaction-picker.tag b/src/web/app/common/tags/reaction-picker.tag index 9bd7f96c7a..ac0d392c88 100644 --- a/src/web/app/common/tags/reaction-picker.tag +++ b/src/web/app/common/tags/reaction-picker.tag @@ -26,6 +26,7 @@ width 100% height 100% background rgba(0, 0, 0, 0.1) + opacity 0 > .popover position absolute @@ -131,8 +132,15 @@ } anime({ + targets: this.refs.backdrop, + opacity: 1, + duration: 100, + easing: 'linear' + }); + + anime({ targets: this.refs.popover, - opacity: [0, 1], + opacity: 1, scale: [0.5, 1], duration: 500 }); diff --git a/src/web/app/common/tags/stream-indicator.tag b/src/web/app/common/tags/stream-indicator.tag index 96d9b0ec95..d9f030e19b 100644 --- a/src/web/app/common/tags/stream-indicator.tag +++ b/src/web/app/common/tags/stream-indicator.tag @@ -64,7 +64,7 @@ targets: this.root, opacity: 1, easing: 'linear', - duration: 50 + duration: 100 }); }); </script> |