From 4b6a18dbda3ff5eef063d3be6618705b339c18cc Mon Sep 17 00:00:00 2001 From: Stephanie Roy Date: Wed, 28 Sep 2022 13:07:04 -0400 Subject: [PATCH] Fix comparison table row copy button for long paths (#2489) --- .../src/plots/components/comparisonTable/styles.module.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webview/src/plots/components/comparisonTable/styles.module.scss b/webview/src/plots/components/comparisonTable/styles.module.scss index a40b38b8ba..b80a023665 100644 --- a/webview/src/plots/components/comparisonTable/styles.module.scss +++ b/webview/src/plots/components/comparisonTable/styles.module.scss @@ -102,7 +102,7 @@ $gap: 4px; text-align: left; display: flex; user-select: text; - width: 100%; + width: calc(100% - 20px); svg { fill: $fg-color; @@ -201,6 +201,6 @@ $gap: 4px; .pathText { overflow: hidden; text-overflow: ellipsis; - width: 100%; direction: rtl; + white-space: nowrap; }