Skip to content

Commit cca2c56

Browse files
committed
Fix sort arrow appearing behind text in inventory table headers
Changed inventory headers from text-align to justify-content for proper flexbox alignment, ensuring the sort arrow icon displays next to the column text rather than behind it. Fixes #4094
1 parent 3ca0c93 commit cca2c56

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

src/web/assets/inventory/dist/css/inventory.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/web/assets/inventory/dist/css/inventory.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/web/assets/inventory/src/css/inventory.scss

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
.inventory-headers,
1+
.inventory-headers {
2+
.ltr & {
3+
justify-content: flex-end;
4+
}
5+
6+
.rtl & {
7+
justify-content: flex-start;
8+
}
9+
}
10+
211
.inventory-cell {
312
.ltr & {
413
text-align: right;

0 commit comments

Comments
 (0)