This commit is contained in:
2026-01-31 01:38:08 +01:00
parent 2a16d662d7
commit 30e8e9b3a4
2 changed files with 12 additions and 8 deletions

View File

@@ -1 +1 @@
1.1.71 1.1.72

View File

@@ -697,7 +697,7 @@
btn.setAttribute('aria-label', title); btn.setAttribute('aria-label', title);
btn.className = 'bridge-rte-btn'; btn.className = 'bridge-rte-btn';
btn.setAttribute('data-bridge-rte', 'button'); btn.setAttribute('data-bridge-rte', 'button');
btn.style.padding = '6px 10px'; btn.style.padding = '8px 12px';
btn.style.border = '1px solid #cbd5f5'; btn.style.border = '1px solid #cbd5f5';
btn.style.borderRadius = '4px'; btn.style.borderRadius = '4px';
btn.style.background = '#f8fafc'; btn.style.background = '#f8fafc';
@@ -705,7 +705,7 @@
btn.style.display = 'inline-flex'; btn.style.display = 'inline-flex';
btn.style.alignItems = 'center'; btn.style.alignItems = 'center';
btn.style.justifyContent = 'center'; btn.style.justifyContent = 'center';
btn.style.gap = '6px'; btn.style.gap = '8px';
btn.addEventListener('mousedown', (evt) => { btn.addEventListener('mousedown', (evt) => {
evt.preventDefault(); evt.preventDefault();
saveSelection(); saveSelection();
@@ -730,7 +730,7 @@
select.setAttribute('aria-label', title); select.setAttribute('aria-label', title);
select.className = 'bridge-rte-select'; select.className = 'bridge-rte-select';
select.setAttribute('data-bridge-rte', 'select'); select.setAttribute('data-bridge-rte', 'select');
select.style.padding = '6px 10px'; select.style.padding = '8px 12px';
select.style.border = '1px solid #cbd5f5'; select.style.border = '1px solid #cbd5f5';
select.style.borderRadius = '4px'; select.style.borderRadius = '4px';
select.style.background = '#ffffff'; select.style.background = '#ffffff';
@@ -1222,15 +1222,19 @@
border-top: 1px dashed #e2e8f0; border-top: 1px dashed #e2e8f0;
} }
.bridge-rte-btn { .bridge-rte-btn {
font-size: 14px; font-size: 16px;
line-height: 1; line-height: 1;
min-height: 34px; min-height: 40px;
min-width: 34px; min-width: 40px;
font-weight: 600; font-weight: 600;
color: #0f172a; color: #0f172a;
background: #f8fafc; background: #f8fafc;
} }
.bridge-rte-btn svg { width: 16px; height: 16px; } .bridge-rte-btn svg { width: 18px; height: 18px; }
.bridge-rte-select {
font-size: 15px;
min-height: 40px;
}
.bridge-rte-btn:hover { background: #e2e8f0; } .bridge-rte-btn:hover { background: #e2e8f0; }
.bridge-rte-btn:active { transform: translateY(1px); } .bridge-rte-btn:active { transform: translateY(1px); }
.bridge-rte-actions .bridge-rte-btn { min-width: 88px; } .bridge-rte-actions .bridge-rte-btn { min-width: 88px; }