From d31db5da2b9f4b6b39ea6241e1b780e591e90382 Mon Sep 17 00:00:00 2001 From: Georgii Karataev Date: Wed, 1 Nov 2023 13:18:30 +0100 Subject: [PATCH 1/3] fix: Change font size of InventoryTable entries Fixes https://issues.redhat.com/browse/RHIF-72. --- src/components/InventoryTable/InventoryList.scss | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/components/InventoryTable/InventoryList.scss b/src/components/InventoryTable/InventoryList.scss index 82a28e5aa..487355094 100644 --- a/src/components/InventoryTable/InventoryList.scss +++ b/src/components/InventoryTable/InventoryList.scss @@ -90,10 +90,6 @@ font-size: var(--pf-global--FontSize--sm); } - * { - font-size: var( --pf-global--FontSize--lg); - } - .ins-composed-col { cursor: pointer; } From 6087392cec55abe4df554017a2fdd2e123548c33 Mon Sep 17 00:00:00 2001 From: Georgii Karataev Date: Wed, 1 Nov 2023 13:19:44 +0100 Subject: [PATCH 2/3] fix: Prevent toolbar button overflow Fixes https://issues.redhat.com/browse/RHIF-72. --- src/components/InventoryTable/InventoryList.scss | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/components/InventoryTable/InventoryList.scss b/src/components/InventoryTable/InventoryList.scss index 487355094..cc93a1553 100644 --- a/src/components/InventoryTable/InventoryList.scss +++ b/src/components/InventoryTable/InventoryList.scss @@ -99,12 +99,6 @@ display: inline-block; } - .pf-c-table__action .pf-c-dropdown { - position: relative; - left: 10px; - top: 3px; - } - .ins-composed-col div { word-wrap: break-word; word-break:break-all; From 659900ce151f7324f98bce67dd8337bb67c0588c Mon Sep 17 00:00:00 2001 From: Georgii Karataev Date: Fri, 3 Nov 2023 17:46:23 +0100 Subject: [PATCH 3/3] fix(InventoryTable): Maintain the 24px margin for actions toolbar Fixes https://issues.redhat.com/browse/RHIF-72. --- src/components/InventoryTable/InventoryList.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/InventoryTable/InventoryList.scss b/src/components/InventoryTable/InventoryList.scss index cc93a1553..8fefd204a 100644 --- a/src/components/InventoryTable/InventoryList.scss +++ b/src/components/InventoryTable/InventoryList.scss @@ -115,3 +115,9 @@ } .ins-c-inventory__no-access { background-color: var(--pf-global--BackgroundColor--100); } + +.pf-c-table__action { + .pf-c-dropdown__toggle.pf-m-plain { + padding-right: var(--pf-global--spacer--lg); + } +} \ No newline at end of file