reduce size of show buttons checkbox

This commit is contained in:
LenAnderson
2024-01-05 16:44:57 +00:00
parent b57b42d26a
commit e117c9da4e
3 changed files with 4 additions and 3 deletions

View File

@ -55,6 +55,7 @@ export class QuickReplySetLink {
}
const visible = document.createElement('label'); {
visible.classList.add('qr--visible');
visible.title = 'Show buttons';
const cb = document.createElement('input'); {
cb.type = 'checkbox';
cb.checked = this.isVisible;
@ -64,7 +65,7 @@ export class QuickReplySetLink {
});
visible.append(cb);
}
visible.append('Show buttons');
visible.append('Buttons');
item.append(visible);
}
const edit = document.createElement('div'); {