Fleet UI: Fix silly truncation of table item names (#23353)

This commit is contained in:
RachelElysia 2024-10-30 13:49:46 -04:00 committed by GitHub
parent a60d2afd9f
commit c4ed4feb8f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 8 deletions

View file

@ -9,29 +9,31 @@
.data-table__table {
thead {
.name__header {
width: $col-md;
width: auto;
}
.host_count__header {
.host_count__header,
.user_count__header {
width: $col-md;
}
.actions__header {
width: auto;
width: $col-sm;
}
}
tbody {
.name__cell {
max-width: $col-md;
width: auto;
}
.host_count__cell {
.host_count__cell,
.user_count__cell {
max-width: $col-md;
}
.actions__cell {
width: auto;
width: $col-sm;
}
}
}

View file

@ -6,7 +6,7 @@
.data-table__table {
thead {
.query_name__header {
width: $col-lg;
min-width: $col-lg;
}
.last_fetched__header {
display: table-cell;
@ -21,7 +21,7 @@
tbody {
tr {
.query_name__cell {
width: $col-lg;
min-width: $col-lg;
}
.last_fetched__cell {
display: table-cell;