scale the whole edit widget, not just the icon

This commit is contained in:
zadam 2022-12-20 20:25:52 +01:00
parent c89455f93f
commit 9d9305300c

View file

@ -39,9 +39,13 @@ export default class EditButton extends OnClickButtonWidget {
// make the edit button stand out on the first display, otherwise
// it's difficult to notice that the note is readonly
if (this.isVisible() && !wasVisible) {
this.$iconSpan.addClass("bx-tada bx-lg");
this.$iconSpan.addClass("bx-tada");
this.$widget.css("transform", "scale(2)");
setTimeout(() => this.$iconSpan.removeClass("bx-tada bx-lg"), 1700);
setTimeout(() => {
this.$iconSpan.removeClass("bx-tada bx-lg");
this.$widget.css("transform", "scale(1)");
}, 1700);
}
}