From c68eaba650b87ad108695649c7b1f5c9e4e16f91 Mon Sep 17 00:00:00 2001 From: Electron - Mark Firth Date: Wed, 27 Jun 2018 01:21:30 +1000 Subject: [PATCH] Only Affects Help Table table.table--help { td:nth-of-type(1) { color: var(--text-color); font-family: 'metropolis-semibold'; min-width: 130px; } td:nth-of-type(2) { /*Tourniquets text over 20VW*/ max-width: 20vw; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } } --- src/renderer/scss/component/_table.scss | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/renderer/scss/component/_table.scss b/src/renderer/scss/component/_table.scss index 31e362158..b7832afab 100644 --- a/src/renderer/scss/component/_table.scss +++ b/src/renderer/scss/component/_table.scss @@ -13,11 +13,6 @@ table.table, tr td:last-of-type, tr th:last-of-type { padding-right: $spacing-vertical * 2/3; -/*Tourniquets text over 20VW*/ - max-width: 20vw; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; } thead { @@ -85,6 +80,13 @@ table.table--help { font-family: 'metropolis-semibold'; min-width: 130px; } + td:nth-of-type(2) { +/*Tourniquets text over 20VW*/ + max-width: 20vw; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + } } table.table--transactions {