From 4ebb81cede7697a9edadeea6c1c993919a54b401 Mon Sep 17 00:00:00 2001 From: andrey271192 Date: Tue, 16 Jun 2026 19:50:54 +0300 Subject: [PATCH] style: client action buttons flow in a row, not a column MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Widen actions cell (min-width 360px) and keep buttons nowrap + no-shrink so Выключить/Скачать/Прямая ссылка/Копировать/Удалить wrap horizontally instead of stacking one per line. --- public/styles.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/public/styles.css b/public/styles.css index 628b674..29e1d8d 100644 --- a/public/styles.css +++ b/public/styles.css @@ -656,6 +656,7 @@ table.clients-table { .clients-table td.actions { vertical-align: top; + min-width: 360px; } table { @@ -728,9 +729,16 @@ tr:last-child td { .actions { display: flex; - gap: 0.35rem; + gap: 0.4rem; justify-content: flex-end; flex-wrap: wrap; + align-items: center; +} + +.actions .btn, +.actions a.btn { + white-space: nowrap; + flex: 0 0 auto; } .export-missing-hint {