From 57db1893753cdb65f4c2a11d04b7021b55a99ffc Mon Sep 17 00:00:00 2001 From: shats Date: Mon, 16 Feb 2026 17:50:48 +0700 Subject: [PATCH] refactor(Managers): enhance button group styling in tables for improved visual consistency and user experience --- frontend/src/index.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/frontend/src/index.css b/frontend/src/index.css index 156004e..e7b3669 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -324,6 +324,29 @@ button:focus-visible, white-space: nowrap; } +/* Группы кнопок в таблицах: «слитые» Tabler-style action buttons */ +.table .btn-group.btn-group-sm { + gap: 0; +} + +.table .btn-group.btn-group-sm .btn { + border-radius: 0; +} + +.table .btn-group.btn-group-sm .btn + .btn { + margin-left: -1px; /* убираем двойную границу между кнопками */ +} + +.table .btn-group.btn-group-sm .btn:first-child { + border-top-left-radius: .375rem; + border-bottom-left-radius: .375rem; +} + +.table .btn-group.btn-group-sm .btn:last-child { + border-top-right-radius: .375rem; + border-bottom-right-radius: .375rem; +} + /* Выбранная строка поверх zebra (table-striped) */ .table-striped tbody tr.table-selected > * { --tblr-table-bg-type: rgba(32, 107, 196, 0.08);