Skip to content

Commit

Permalink
Data Explorer: Fix alignment CSS regression so that numeric data is b…
Browse files Browse the repository at this point in the history
…ack right-aligned (#3415)
  • Loading branch information
softwarenerd authored Jun 5, 2024
1 parent dd4621a commit 5827781
Showing 1 changed file with 12 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,32 +13,29 @@

.data-grid-row-cell
.content
.text-container
.text-value {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
white-space-collapse: preserve;
.text-container.left {
justify-content: left;
}

.data-grid-row-cell
.content
.text-container
.text-value.left {
justify-content: left;
.text-container.center {
justify-content: center;
}

.data-grid-row-cell
.content
.text-container
.text-value.center {
justify-content: center;
.text-container.right {
justify-content: right;
font-variant-numeric: tabular-nums;
}

.data-grid-row-cell
.content
.text-container
.text-value.right {
justify-content: right;
font-variant-numeric: tabular-nums;
.text-value {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
white-space-collapse: preserve;
}

0 comments on commit 5827781

Please sign in to comment.