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);