Lines Matching defs:button
10 <button class="toggle start">
12 </button>
16 <button class="fs" title="fullscreen">
18 </button>
20 <button class="toggle" title="close">
22 </button>
34 const toggleButtons = this.#root.querySelectorAll('button.toggle');
35 toggleButtons.forEach(function (button) {
36 button.addEventListener('click', this.toggleDialog.bind(this))
39 this.#dialog.querySelector('button.fs').addEventListener('click', function() {
50 this.#root.querySelector('button.start').title = this.getAttribute('label') || 'AI Chat';
58 this.#root.querySelector('button.start').animate({
78 button {
83 :host > button svg {
91 button.start svg {
130 dialog header button svg {
150 window.customElements.define('aichat-button', AIChatButton);