mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 13:26:08 +00:00
fix eye position
This commit is contained in:
@@ -8,6 +8,18 @@
|
||||
<div class="attachment" >
|
||||
|
||||
<div class="attach-title-item tex-left d-flex ">
|
||||
|
||||
<div *ngIf="!isSelectedAttachmentIsDraft(attachment)" (click)="clickDocument(attachment, i )">
|
||||
<button mat-icon-button aria-label="Example icon-button with a menu">
|
||||
<ion-icon src="assets/icon/iconmonstr-eye-9.svg" class=" font-25-em "></ion-icon>
|
||||
</button>
|
||||
</div>
|
||||
<div *ngIf="isSelectedAttachmentIsDraft(attachment)" (click)="clickDraft(i )">
|
||||
<button mat-icon-button aria-label="Example icon-button with a menu">
|
||||
<ion-icon src="assets/icon/iconmonstr-eye-9.svg" class=" font-25-em "></ion-icon>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div class="subject" [ngClass]="{'add-ellipsis': i != selectedIndex}">{{ attachment.Assunto || "Sem assunto" }}</div>
|
||||
<div class="user" >
|
||||
@@ -15,19 +27,10 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<span class="document-type ml-20" (click)="clickDraft(i)" *ngIf="isSelectedAttachmentIsDraft(attachment)">Rascunho</span>
|
||||
<span class="document-type ml-20" (click)="clickDraft(i)" *ngIf="isSelectedAttachmentIsDraft(attachment)" style="max-height: 33px;">Rascunho</span>
|
||||
<br *ngIf="isSelectedAttachmentIsDraft(attachment)">
|
||||
<div class="date d-flex justify-content-between" >
|
||||
<div *ngIf="!isSelectedAttachmentIsDraft(attachment)" (click)="clickDocument(attachment, i )">
|
||||
<button mat-icon-button aria-label="Example icon-button with a menu">
|
||||
<ion-icon src="assets/images/icons-nav-actions.svg" class=" font-25-em "></ion-icon>
|
||||
</button>
|
||||
</div>
|
||||
<div *ngIf="isSelectedAttachmentIsDraft(attachment)" (click)="clickDraft(i )">
|
||||
<button mat-icon-button aria-label="Example icon-button with a menu">
|
||||
<ion-icon src="assets/images/icons-nav-actions.svg" class=" font-25-em "></ion-icon>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div *ngIf="!isSelectedAttachmentIsDraft(attachment)">
|
||||
<button (click)="doSomething($event);" mat-icon-button [matMenuTriggerFor]="menu" aria-label="Example icon-button with a menu">
|
||||
<mat-icon>more_vert</mat-icon>
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
width: 100%;
|
||||
color:#0d89d1;
|
||||
padding-bottom: 5px;
|
||||
text-wrap: nowrap;
|
||||
}
|
||||
/* SPAN */
|
||||
.user{
|
||||
@@ -26,6 +27,10 @@
|
||||
.subject {
|
||||
max-width: 230px;
|
||||
}
|
||||
|
||||
ion-icon {
|
||||
color: black;
|
||||
}
|
||||
}
|
||||
|
||||
iframe {
|
||||
@@ -37,12 +42,12 @@ iframe {
|
||||
.selected-attachment {
|
||||
border: 3px solid #ffb703 !important;
|
||||
color: #3498db !important;
|
||||
.user, .date {
|
||||
.user, .date, ion-icon {
|
||||
color: #3498db !important;
|
||||
}
|
||||
|
||||
.subject {
|
||||
max-width: unset !important;
|
||||
max-width: 300px !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user