mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
55 lines
1 KiB
SCSS
55 lines
1 KiB
SCSS
.team-management {
|
|
.data-table-block {
|
|
.data-table__table {
|
|
thead {
|
|
.name__header {
|
|
width: auto;
|
|
}
|
|
|
|
.host_count__header,
|
|
.user_count__header {
|
|
width: $col-md;
|
|
}
|
|
|
|
.actions__header {
|
|
width: $col-sm;
|
|
}
|
|
}
|
|
|
|
tbody {
|
|
// Override data-table td max-width at low widths to fit screen
|
|
@media (max-width: ($break-md - 1)) {
|
|
.name__cell {
|
|
max-width: 430px;
|
|
}
|
|
}
|
|
@media (max-width: ($break-sm - 1)) {
|
|
.name__cell {
|
|
max-width: 330px;
|
|
}
|
|
}
|
|
|
|
.host_count__cell,
|
|
.user_count__cell {
|
|
max-width: $col-md;
|
|
}
|
|
|
|
.actions__cell {
|
|
.team-actions-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
width: $col-sm;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.disabled-by-gitops-mode {
|
|
@include disabled;
|
|
.actions-dropdown-select__control--is-disabled {
|
|
min-height: 0;
|
|
padding: 0;
|
|
}
|
|
}
|
|
}
|