fix tool tips in config

This commit is contained in:
Matt Hill
2021-10-07 08:34:11 -06:00
committed by Aiden McClelland
parent 261509c841
commit 43df7bca16
2 changed files with 6 additions and 8 deletions

View File

@@ -1,5 +1,8 @@
<ion-icon *ngIf="data.spec.description" class="help-icon" name="help-circle-outline" (click)="presentAlertDescription()"></ion-icon>
<span>&nbsp;{{ data.spec.name }}</span>
<ion-button *ngIf="data.spec.description" class="help-button" fill="clear" size="small" (click)="presentAlertDescription()">
<ion-icon name="help-circle-outline"></ion-icon>
</ion-button>
<span>{{ data.spec.name }}</span>
<ion-text color="success" *ngIf="data.isNew">&nbsp;(New)</ion-text>
<ion-text color="warning" *ngIf="data.isEdited">&nbsp;(Edited)</ion-text>

View File

@@ -1,11 +1,6 @@
.help-icon {
.help-button {
display: inline-block;
vertical-align: middle;
padding-bottom: 1px;
padding-right: 6px;
font-size: 18px;
color: var(--ion-color-dark);
cursor: pointer;
}
ion-input {