mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
scale the whole edit widget, not just the icon
This commit is contained in:
parent
c89455f93f
commit
9d9305300c
@ -39,9 +39,13 @@ export default class EditButton extends OnClickButtonWidget {
|
|||||||
// make the edit button stand out on the first display, otherwise
|
// make the edit button stand out on the first display, otherwise
|
||||||
// it's difficult to notice that the note is readonly
|
// it's difficult to notice that the note is readonly
|
||||||
if (this.isVisible() && !wasVisible) {
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user