Skip to content

Commit

Permalink
Yet more container detail page tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
gashcrumb committed Sep 26, 2013
1 parent 0c0d060 commit 5507d23
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hawtio-web/src/main/webapp/app/fabric/html/container.html
Expand Up @@ -45,8 +45,8 @@ <h2><i ng-class="statusIcon()"></i>Container: {{row.id}}</h2>
<dt>Server Status:</dt>
<dd>
<div ng-switch="row.alive">
<p style="display: inline;" ng-switch-when="true" class="green">Running</p>
<p style="display: inline;" ng-switch-default class="red">Not Running</p>
<p style="display: inline;" ng-switch-when="true" class="green bold">Running</p>
<p style="display: inline;" ng-switch-default class="red bold">Not Running</p>
</div>
</dd>
</dl>
Expand All @@ -60,7 +60,7 @@ <h2><i ng-class="statusIcon()"></i>Container: {{row.id}}</h2>
</dl>
<dl class="dl-horizontal">
<dt>Provision Status:</dt>
<dd>{{row.provisionStatus}}</dd>
<dd><i ng-class="statusIcon()"></i> {{row.provisionStatus}}</dd>
</dl>
<dl class="dl-horizontal">
<dt>Root Container:</dt>
Expand Down
5 changes: 5 additions & 0 deletions hawtio-web/src/main/webapp/css/site-base.css
Expand Up @@ -1493,6 +1493,11 @@ input[type="checkbox"].ng-invalid {
.container-settings {

}

.bold {
font-weight: bold;
}

.container-settings dd .ep {
display: inline-block;
}
Expand Down

0 comments on commit 5507d23

Please sign in to comment.