Fixes color of finalized DMP icon.
This commit is contained in:
parent
c513596554
commit
235715584b
|
@ -32,7 +32,7 @@
|
|||
<mat-icon *ngIf="isDraft" matTooltip="{{'DMP-LISTING.TOOLTIP.DMP-STATUS.DRAFT' | translate}}" class="draft-icon">
|
||||
lock_open
|
||||
</mat-icon>
|
||||
<mat-icon *ngIf="isFinalized && !isPublished" matTooltip="{{'DMP-LISTING.TOOLTIP.DMP-STATUS.FINALIZED' | translate}}">
|
||||
<mat-icon *ngIf="isFinalized && !isPublished" matTooltip="{{'DMP-LISTING.TOOLTIP.DMP-STATUS.FINALIZED' | translate}}" class="lock-icon">
|
||||
lock
|
||||
</mat-icon>
|
||||
<mat-icon *ngIf="isPublished" matTooltip="{{'DMP-LISTING.TOOLTIP.DMP-STATUS.PUBLISHED' | translate}}" class="published-icon">
|
||||
|
|
|
@ -68,6 +68,10 @@ p {
|
|||
color: #aaaaaa;
|
||||
}
|
||||
|
||||
.lock-icon {
|
||||
color: #0d7489;
|
||||
}
|
||||
|
||||
.more-horiz {
|
||||
font-size: 28px;
|
||||
color: #aaaaaa;
|
||||
|
|
Loading…
Reference in New Issue