mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Fleet UI: Fix silly truncation of table item names (#23353)
This commit is contained in:
parent
a60d2afd9f
commit
c4ed4feb8f
2 changed files with 10 additions and 8 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue