Adds proper icon on Published DMP. (Issue #109)
This commit is contained in:
parent
049c00e25a
commit
83e1a9790e
|
@ -35,8 +35,8 @@
|
||||||
<mat-icon *ngIf="isFinalized && !isPublished" matTooltip="{{'DMP-LISTING.TOOLTIP.DMP-STATUS.FINALIZED' | translate}}" matTooltipPosition="above">
|
<mat-icon *ngIf="isFinalized && !isPublished" matTooltip="{{'DMP-LISTING.TOOLTIP.DMP-STATUS.FINALIZED' | translate}}" matTooltipPosition="above">
|
||||||
lock
|
lock
|
||||||
</mat-icon>
|
</mat-icon>
|
||||||
<mat-icon *ngIf="isPublished" matTooltip="{{'DMP-LISTING.TOOLTIP.DMP-STATUS.PUBLISHED' | translate}}" matTooltipPosition="above">
|
<mat-icon *ngIf="isPublished" matTooltip="{{'DMP-LISTING.TOOLTIP.DMP-STATUS.PUBLISHED' | translate}}" matTooltipPosition="above" class="published-icon">
|
||||||
lock
|
radio_button_checked
|
||||||
</mat-icon>
|
</mat-icon>
|
||||||
<h4 class="title" *ngIf="isDraft">
|
<h4 class="title" *ngIf="isDraft">
|
||||||
<span>{{ 'TYPES.DMP.DRAFT' | translate }}:</span> {{dmp.label}}</h4>
|
<span>{{ 'TYPES.DMP.DRAFT' | translate }}:</span> {{dmp.label}}</h4>
|
||||||
|
|
|
@ -67,3 +67,8 @@ h4 > span {
|
||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
color: #aaaaaa;
|
color: #aaaaaa;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.published-icon {
|
||||||
|
padding-top: 1px;
|
||||||
|
color: #92d050;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue