Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 10 additions & 14 deletions app/components/file/details/file-details.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
<div *ngIf="filename">
<md-card class="overview">
<md-card-title-group style="margin: 0px;">
<div style="align-items:center;">
<div class="actions">
<bl-action-btn-group>
<bl-refresh-btn [refresh]="refresh"></bl-refresh-btn>
</div>
<div style="margin-left:12px; margin-right:auto;">
<md-card-title>{{filename}}</md-card-title>
<md-card-subtitle>{{contentSize}}</md-card-subtitle>
</div>
</md-card-title-group>
<md-card-content>
<p>Url: {{url}}</p>
</md-card-content>
<md-card-actions layout="row" layout-align="end center">
<bl-download-button [enabled]="downloadEnabled" (click)="downloadFile()"></bl-download-button>
</md-card-actions>
<bl-download-button [enabled]="downloadEnabled" (click)="downloadFile()"></bl-download-button>
</bl-action-btn-group>
</div>
<div class="content">
<md-card-title>{{filename}}</md-card-title>
<md-card-subtitle>{{url}}</md-card-subtitle>
<md-card-subtitle>{{contentSize}}</md-card-subtitle>
</div>
</md-card>
<md-card class="details">
<bl-file-content *ngIf="jobId && taskId && !outputKind" [jobId]="jobId" [taskId]="taskId" [filename]="filename"></bl-file-content>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h4 bl-quick-list-item-title>{{node.id}}</h4>

<bl-table *ngIf="!quickList">
<bl-thead>
<bl-column style="width: 300px">>Id</bl-column>
<bl-column style="width: 300px">Id</bl-column>
<bl-column>State</bl-column>
<bl-column>Scheduling State</bl-column>
<bl-column>VmSize</bl-column>
Expand Down
1 change: 1 addition & 0 deletions app/styles/file/log.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
background-color: $file-content-bg;
counter-reset: line-numbering;
margin-top: 0;
margin-bottom: 4px;

> bl-simple-loading {
padding-left: 10px;
Expand Down