design
This commit is contained in:
		
							parent
							
								
									97b7d34177
								
							
						
					
					
						commit
						bc094bd381
					
				@ -9,8 +9,20 @@
 | 
				
			|||||||
                <span *ngIf="discoverZone.discoverHost.discoverPort.includeUDP">UDP</span>
 | 
					                <span *ngIf="discoverZone.discoverHost.discoverPort.includeUDP">UDP</span>
 | 
				
			||||||
            </span>
 | 
					            </span>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
 | 
					        <div *ngIf="services && services.length > 0" class="of-key-value-div">
 | 
				
			||||||
 | 
					            <p-overlayPanel #op>
 | 
				
			||||||
 | 
					                <div *ngFor="let service of services">
 | 
				
			||||||
 | 
					                    {{service}}
 | 
				
			||||||
 | 
					                </div>
 | 
				
			||||||
 | 
					            </p-overlayPanel>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            <span>Services</span>
 | 
				
			||||||
 | 
					            <span class="ng-star-inserted ui-nopad">
 | 
				
			||||||
 | 
					                <a style="cursor: pointer" (click)="op.toggle($event)">{{services.length}} services has selected.</a>
 | 
				
			||||||
 | 
					            </span>
 | 
				
			||||||
 | 
					        </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <!--
 | 
				
			||||||
        <div *ngIf="services && services.length > 0" class="ui-g-12 ui-top-border-1" style="text-align: right">
 | 
					        <div *ngIf="services && services.length > 0" class="ui-g-12 ui-top-border-1" style="text-align: right">
 | 
				
			||||||
            <p-overlayPanel #op>
 | 
					            <p-overlayPanel #op>
 | 
				
			||||||
                <div *ngFor="let service of services">
 | 
					                <div *ngFor="let service of services">
 | 
				
			||||||
@ -20,5 +32,6 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
            <a style="cursor: pointer" (click)="op.toggle($event)">{{services.length}} services has selected.</a>
 | 
					            <a style="cursor: pointer" (click)="op.toggle($event)">{{services.length}} services has selected.</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
 | 
					-->
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
@ -1,6 +1,7 @@
 | 
				
			|||||||
<of-block-progressbar [target]="content" [pending]="!finished"></of-block-progressbar>
 | 
					<of-block-progressbar [target]="content" [pending]="!finished"></of-block-progressbar>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<p-panel #content [showHeader]="false" class="block-panel">
 | 
					<div class="ui-discovery">
 | 
				
			||||||
 | 
					    <p-panel #content [showHeader]="false" class="block-panel">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <p-messages [(value)]="msgs"></p-messages>
 | 
					        <p-messages [(value)]="msgs"></p-messages>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -47,7 +48,8 @@
 | 
				
			|||||||
        <button class="ui-button-width-fit ui-float-right ui-top-space-10" [disabled]="selectedItems.length === 0" type="button"
 | 
					        <button class="ui-button-width-fit ui-float-right ui-top-space-10" [disabled]="selectedItems.length === 0" type="button"
 | 
				
			||||||
            label="Save" icon="ui-icon-close" pButton (click)="saveTargets()"></button>
 | 
					            label="Save" icon="ui-icon-close" pButton (click)="saveTargets()"></button>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
</p-panel>
 | 
					    </p-panel>
 | 
				
			||||||
 | 
					</div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<p-dialog header="Title" [(visible)]="targetSaved" [modal]="true" [responsive]="true" [width]="600" [minWidth]="200" [minY]="70"
 | 
					<p-dialog header="Title" [(visible)]="targetSaved" [modal]="true" [responsive]="true" [width]="600" [minWidth]="200" [minY]="70"
 | 
				
			||||||
 | 
				
			|||||||
@ -10,7 +10,7 @@
 | 
				
			|||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <p-table selectionMode="multiple" [scrollable]="true" scrollHeight="200px" [value]="metaCrawlers" [(selection)]="includeServices"
 | 
					        <p-table selectionMode="multiple" [scrollable]="true" scrollHeight="200px" [value]="metaCrawlers" [(selection)]="includeServices"
 | 
				
			||||||
            dataKey="id" (onRowSelect)="onSelect($event.data)" (onRowUnselect)="onUnselect($event.data)">
 | 
					            dataKey="id" (onRowSelect)="onSelect($event.data)" (onRowUnselect)="onUnselect($event.data)" class="ui-unbg-table">
 | 
				
			||||||
            <ng-template pTemplate="body" let-rowData let-columns="columns">
 | 
					            <ng-template pTemplate="body" let-rowData let-columns="columns">
 | 
				
			||||||
                <tr [pSelectableRow]="rowData">
 | 
					                <tr [pSelectableRow]="rowData">
 | 
				
			||||||
                    <!-- <td>
 | 
					                    <!-- <td>
 | 
				
			||||||
 | 
				
			|||||||
@ -1,10 +1,9 @@
 | 
				
			|||||||
<div class="ui-g">
 | 
					<div class="ui-g ui-bottom-space-10">
 | 
				
			||||||
  <div class="ui-g-6 ui-nopad">
 | 
					  <div class="ui-g-6 ui-nopad">
 | 
				
			||||||
    <h3>General</h3>
 | 
					    <h3>General</h3>
 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  <!-- info -->
 | 
					  <!-- info -->
 | 
				
			||||||
  <div class="ui-g ui-bottom-space-10">
 | 
					 | 
				
			||||||
  <div class="ui-g-12 ui-nopad">
 | 
					  <div class="ui-g-12 ui-nopad">
 | 
				
			||||||
    <p-panel [showHeader]="false">
 | 
					    <p-panel [showHeader]="false">
 | 
				
			||||||
      <div *ngIf="noAuthProbe">
 | 
					      <div *ngIf="noAuthProbe">
 | 
				
			||||||
@ -32,5 +31,4 @@
 | 
				
			|||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
    </p-panel>
 | 
					    </p-panel>
 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
  </div>
 | 
					 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
@ -3,7 +3,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
<p-panel #content [showHeader]="false" class="block-panel">
 | 
					<p-panel #content [showHeader]="false" class="block-panel">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  <div class="ui-g">
 | 
					  <div class="ui-g ui-bottom-space-10">
 | 
				
			||||||
    <div class="ui-g-6 ui-nopad">
 | 
					    <div class="ui-g-6 ui-nopad">
 | 
				
			||||||
      <h3>Host</h3>
 | 
					      <h3>Host</h3>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -13,7 +13,7 @@
 | 
				
			|||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  <!-- Host info -->
 | 
					  <!-- Host info -->
 | 
				
			||||||
  <div class="ui-g ui-bottom-space-10">
 | 
					  <div class="ui-g">
 | 
				
			||||||
    <div class="ui-g-12 ui-nopad">
 | 
					    <div class="ui-g-12 ui-nopad">
 | 
				
			||||||
      <p-panel [showHeader]="false">
 | 
					      <p-panel [showHeader]="false">
 | 
				
			||||||
        <div *ngIf="infraHost">
 | 
					        <div *ngIf="infraHost">
 | 
				
			||||||
 | 
				
			|||||||
@ -1903,3 +1903,38 @@ body .ui-progressbar .ui-progressbar-value {
 | 
				
			|||||||
.ui-confirmdialog-message {
 | 
					.ui-confirmdialog-message {
 | 
				
			||||||
    white-space: pre-line;
 | 
					    white-space: pre-line;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					.ui-unbg-table{
 | 
				
			||||||
 | 
					    .ui-table .ui-table-tbody > tr:nth-child(odd) .ui-state-active, .ui-state-highlight {
 | 
				
			||||||
 | 
					        background-color: #f4f4f4 !important;
 | 
				
			||||||
 | 
					        color: #203976 !important;
 | 
				
			||||||
 | 
					        font-weight: bold;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        .fa {
 | 
				
			||||||
 | 
					            color: #ffffff;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    .ui-table .ui-table-tbody > tr:nth-child(odd) .ui-state-active, .ui-state-highlight .ui-chkbox .ui-chkbox-box.ui-state-active {
 | 
				
			||||||
 | 
					        border-color: #3e464c!important;
 | 
				
			||||||
 | 
					        background-color: #3e464c!important;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    .ui-table .ui-table-tbody > tr:nth-child .ui-state-active, .ui-state-highlight {
 | 
				
			||||||
 | 
					    background-color: #ffffff !important;
 | 
				
			||||||
 | 
					    color: #203976 !important;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        .fa {
 | 
				
			||||||
 | 
					            color: #ffffff;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					//ui-togglebutton
 | 
				
			||||||
 | 
					body .ui-discovery .ui-button, .ui-togglebutton {
 | 
				
			||||||
 | 
					    background-color: #f1f1f1 !important;
 | 
				
			||||||
 | 
					    border: 1px solid #bdbdbd !important;
 | 
				
			||||||
 | 
					    color: #212121 !important;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					body .ui-discovery .ui-button, .ui-togglebutton:not(.ui-state-active):not(.ui-state-disabled):hover {
 | 
				
			||||||
 | 
					background-color: #e2e2e2 !important; }
 | 
				
			||||||
 | 
					body .ui-discovery .ui-button, .ui-togglebutton.ui-state-active {
 | 
				
			||||||
 | 
					background-color: #5180ce !important;
 | 
				
			||||||
 | 
					color: #ffffff !important; }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user