Fix container that was being cutoff

rancher/rancher#8518
This commit is contained in:
Westly Wright 2017-04-21 11:03:23 -07:00
parent 80fe59887a
commit 0ffd65045d
No known key found for this signature in database
GPG Key ID: 90C6F54EB2513CAE
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,5 @@
{{#multi-container-stats model=model linkName=linkName emitMaps=true as |stats|}}
{{#liquid-if (eq mode "small")}}
{{#liquid-if (eq mode "small") class=(if stats.loading 'child-loading')}}
{{#if stats.loading}}
<span class="text-muted" style="position: relative; top: 3px;">Connecting&hellip;</span>
{{else if stats.active}}

View File

@ -18,3 +18,8 @@
padding-right: 10px;
}
}
.child-loading {
>.liquid-child {
height: 30px;
}
}