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