디장인 수정사항 반영
This commit is contained in:
parent
a53f4961c9
commit
a92d373f40
|
@ -130,7 +130,7 @@
|
|||
'common.file.errors.expired' | translate
|
||||
}}</span>
|
||||
<button
|
||||
mat-stroked-button
|
||||
mat-flat-button
|
||||
class="mat-primary"
|
||||
(click)="downloadAttachFileAll()"
|
||||
>
|
||||
|
|
|
@ -109,7 +109,7 @@
|
|||
.ps {
|
||||
align-items: flex-start;
|
||||
}
|
||||
.attachFile {
|
||||
.attachFile {
|
||||
border-top: 1px solid #dddddd;
|
||||
li {
|
||||
display: flex;
|
||||
|
@ -124,6 +124,7 @@
|
|||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
overflow: hidden;
|
||||
margin-right: 10px;
|
||||
span:last-child {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
@ -132,18 +133,18 @@
|
|||
}
|
||||
}
|
||||
.file-size {
|
||||
display: inline-flex;
|
||||
display: flex;
|
||||
margin-left: auto;
|
||||
align-self: flex-end;
|
||||
flex: 0 0 auto;
|
||||
margin: 0 10px;
|
||||
}
|
||||
a {
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
height: 100%;
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -49,15 +49,24 @@
|
|||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
<mat-icon *ngIf="!!message.resType && message.resType === ContentType.Image">image</mat-icon>
|
||||
<mat-icon *ngIf="!!message.resType && message.resType === ContentType.AttachFile">attach_file</mat-icon>
|
||||
<mat-icon
|
||||
*ngIf="!!message.resType && message.resType === ContentType.Image"
|
||||
>image</mat-icon
|
||||
>
|
||||
<mat-icon
|
||||
*ngIf="!!message.resType && message.resType === ContentType.AttachFile"
|
||||
>attach_file</mat-icon
|
||||
>
|
||||
{{ message.title }}
|
||||
</dd>
|
||||
</dl>
|
||||
<div class="date">
|
||||
<span>{{ message.regDate | ucapDate: 'MM:DD' }}</span>
|
||||
<span *ngIf="message.type === MessageType.Receive && !message.readYn" class="badge-new bg-warn-darkest">
|
||||
<span
|
||||
*ngIf="message.type === MessageType.Receive && !message.readYn"
|
||||
class="badge-new bg-warn-darkest"
|
||||
>
|
||||
N
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<!--체크박스 보여줄때는 <div class="list-item checkbox" matRipple> 클래스에 checkbox만 추가-->
|
||||
<div class="list-item" *ngIf="userInfo" matRipple>
|
||||
<div class="list-item checkbox" *ngIf="userInfo" matRipple>
|
||||
<!--pcOn , pcOut pcOff , pcOther-->
|
||||
<span class="presence" [ngClass]="getPresence(PresenceType.PC)"> </span>
|
||||
<dl class="item-default">
|
||||
|
|
Loading…
Reference in New Issue
Block a user