style: client action buttons flow in a row, not a column

Widen actions cell (min-width 360px) and keep buttons nowrap +
no-shrink so Выключить/Скачать/Прямая ссылка/Копировать/Удалить
wrap horizontally instead of stacking one per line.
This commit is contained in:
andrey271192
2026-06-16 19:50:54 +03:00
parent c49e7eea8d
commit 4ebb81cede

View File

@@ -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 {