Fix pod row style issue

https://github.com/rancher/rancher/issues/15733
This commit is contained in:
loganhz 2018-09-20 21:41:58 +08:00
parent b2203fa52c
commit bda6f8ccdc
2 changed files with 5 additions and 1 deletions

View File

@ -32,7 +32,7 @@
{{#copy-inline clipboardText=model.displayIp}}{{format-ip model.displayIp}}{{/copy-inline}} /
{{/if}}
{{#if (and showNode model.node)}}
<a href="{{href-to "node" scope.currentCluster.id model.node.id}}">{{model.node.displayName}}</a> /
<a class="text-vertical-top" href="{{href-to "node" scope.currentCluster.id model.node.id}}">{{model.node.displayName}}</a> /
{{/if}}
{{t 'generic.createdDate' date=(date-from-now model.created) htmlSafe=true}}
</p>

View File

@ -74,6 +74,10 @@
width: 1px;
}
.text-vertical-top {
vertical-align: text-top !important;
}
.text-left {
text-align: left !important;
}