# 이슈처리 268
This commit is contained in:
parent
e2d0744aa9
commit
53e7d5026a
|
@ -161,22 +161,27 @@
|
|||
</button>
|
||||
</div>
|
||||
|
||||
<ul>
|
||||
<li *ngFor="let file of attachFile">
|
||||
<div>
|
||||
<span class="mdi" [ngClass]="getFileStatusIcon(file)"></span>
|
||||
<span>{{ file.resContent }}</span>
|
||||
</div>
|
||||
<span class="file-size">{{ file.resSize | ucapBytes }}</span>
|
||||
<a>
|
||||
<span
|
||||
class="mdi mdi-download"
|
||||
*ngIf="file.activeYn"
|
||||
(click)="downloadAttachFileSingle(file)"
|
||||
></span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<perfect-scrollbar>
|
||||
<ul class="attachFileList">
|
||||
<li *ngFor="let file of attachFile">
|
||||
<div>
|
||||
<span
|
||||
class="mdi"
|
||||
[ngClass]="getFileStatusIcon(file)"
|
||||
></span>
|
||||
<span>{{ file.resContent }}</span>
|
||||
</div>
|
||||
<span class="file-size">{{ file.resSize | ucapBytes }}</span>
|
||||
<a>
|
||||
<span
|
||||
class="mdi mdi-download"
|
||||
*ngIf="file.activeYn"
|
||||
(click)="downloadAttachFileSingle(file)"
|
||||
></span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</perfect-scrollbar>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -141,38 +141,42 @@
|
|||
}
|
||||
.attachFile {
|
||||
border-top: 1px solid #dddddd;
|
||||
li {
|
||||
display: flex;
|
||||
flex-flow: row;
|
||||
line-height: 2em;
|
||||
flex: 1 1 auto;
|
||||
.file-name {
|
||||
display: inline-flex;
|
||||
flex-flow: row;
|
||||
flex: 1 1 auto;
|
||||
border: 1px solid red;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
overflow: hidden;
|
||||
margin-right: 10px;
|
||||
span:last-child {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: block;
|
||||
width: calc(100% - 40px);
|
||||
}
|
||||
}
|
||||
.file-size {
|
||||
.attachFileList {
|
||||
height: 80px;
|
||||
li {
|
||||
display: flex;
|
||||
margin-left: auto;
|
||||
align-self: flex-end;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
a {
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
height: 100%;
|
||||
margin-left: 10px;
|
||||
flex-flow: row;
|
||||
line-height: 2em;
|
||||
flex: 1 1 auto;
|
||||
margin-right: 10px;
|
||||
.file-name {
|
||||
display: inline-flex;
|
||||
flex-flow: row;
|
||||
flex: 1 1 auto;
|
||||
border: 1px solid red;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
overflow: hidden;
|
||||
margin-right: 10px;
|
||||
span:last-child {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: block;
|
||||
width: calc(100% - 40px);
|
||||
}
|
||||
}
|
||||
.file-size {
|
||||
display: flex;
|
||||
margin-left: auto;
|
||||
align-self: flex-end;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
a {
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
height: 100%;
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user