This commit is contained in:
sunny 2018-09-12 20:31:37 +09:00
parent 31d0245490
commit e59b841577
2 changed files with 15 additions and 13 deletions

View File

@ -1,11 +1,12 @@
#nic-list-border.ui-widget-content { #nic-list-border>.ui-widget-content {
border: 0px; border: 0px;
} }
// #nic-list-border.ui-widget-content .ui-listbox .ui-listbox-list { #nic-list-border>.ui-listbox-list {
// line-height: 2em; line-height: 2em;
// } }
#nic-list-border.ui-listbox-item { #nic-list-border>.ui-listbox-item {
padding: 1em; padding: 1em;
.title{ .title{

View File

@ -44,15 +44,16 @@
</li> </li>
</ul> </ul>
</p-tabPanel>
<p-tabPanel header="Hosts"> <p-tabPanel header="Hosts">
<ul class="key-value"> <ul class="key-value">
<li *ngFor="let host of zone.hostList"> <li *ngFor="let host of zone.hostList">
<span class="meta-value">{{host.address}}</span> <span *ngIf="host.name" class="meta-value"> <span class="meta-value">{{host.address}}</span> <span *ngIf="host.name" class="meta-value">
({{host.name}})</span> ({{host.name}})</span>
</li> </li>
</ul> </ul>
</p-tabPanel> </p-tabPanel>
</p-tabView> </p-tabView>
</div> </div>