From b6fa438fef5eff18fe096ac85ae9900a5ac9ff97 Mon Sep 17 00:00:00 2001 From: Alex P Date: Fri, 7 Jul 2017 17:20:33 -0700 Subject: [PATCH] Make NAME and HOST columns less likely to wrap - LEVEL, TIME and and VALUE have fixed pixels widths as the maximum content size is predictable --- ui/src/alerts/constants/tableSizing.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ui/src/alerts/constants/tableSizing.js b/ui/src/alerts/constants/tableSizing.js index ab2879ff7b..7ae91016c5 100644 --- a/ui/src/alerts/constants/tableSizing.js +++ b/ui/src/alerts/constants/tableSizing.js @@ -1,7 +1,7 @@ export const ALERTS_TABLE = { - colName: '15%', - colLevel: '10%', - colTime: '25%', - colHost: '25%', - colValue: '25%', + colName: 'calc(45% - 216px)', + colLevel: '82px', + colTime: '190px', + colHost: 'calc(55% - 216px)', + colValue: '160px', }