From bda6f8ccdc7584a104d24784c901f64dc26c4443 Mon Sep 17 00:00:00 2001 From: loganhz Date: Thu, 20 Sep 2018 21:41:58 +0800 Subject: [PATCH] Fix pod row style issue https://github.com/rancher/rancher/issues/15733 --- app/components/pod-row/template.hbs | 2 +- app/styles/base/_helpers.scss | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/app/components/pod-row/template.hbs b/app/components/pod-row/template.hbs index e1fe98cf2..588b052ee 100644 --- a/app/components/pod-row/template.hbs +++ b/app/components/pod-row/template.hbs @@ -32,7 +32,7 @@ {{#copy-inline clipboardText=model.displayIp}}{{format-ip model.displayIp}}{{/copy-inline}} / {{/if}} {{#if (and showNode model.node)}} - {{model.node.displayName}} / + {{model.node.displayName}} / {{/if}} {{t 'generic.createdDate' date=(date-from-now model.created) htmlSafe=true}}

diff --git a/app/styles/base/_helpers.scss b/app/styles/base/_helpers.scss index ab0c9ba52..25d421aad 100755 --- a/app/styles/base/_helpers.scss +++ b/app/styles/base/_helpers.scss @@ -74,6 +74,10 @@ width: 1px; } +.text-vertical-top { + vertical-align: text-top !important; +} + .text-left { text-align: left !important; }