Skip to content

Commit

Permalink
Dynamically adjust recent template text based on window size (#2011)
Browse files Browse the repository at this point in the history
  • Loading branch information
zfengms authored Apr 4, 2019
1 parent fa9f4f9 commit 3559c65
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# 2.0.3

### Bug fixes
* Recent templates from "my library" are a bit too long [\#1969](https://github.com/Azure/BatchExplorer/issues/1969)
* Job schedule with autopool fail to display [\#1995](https://github.com/Azure/BatchExplorer/issues/1995)
* Pool graphs One Day and One Week option both have value of 1 day [\#1999](https://github.com/Azure/BatchExplorer/issues/1999)
* Microsoft portfolio settings not persisted [\#2004](https://github.com/Azure/BatchExplorer/issues/2004)
* Microsoft portfolio settings not persisted [\#2004](https://github.com/Azure/BatchExplorer/issues/2004)

# 2.0.2

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
<div *ngFor="let recent of recentSubmissions;trackBy: trackTemplate">
<bl-clickable (do)="run(recent)" class="submission">
<span class="label">{{recent.name}}</span>
<span class="mode">({{formatMode(recent.mode)}})</span>
</bl-clickable>
<bl-clickable class="download">
<span (click)="createParameterFile(recent)" title="Export template parameter file">
<i class="fa fa-download"></i>
<span class="mode">({{formatMode(recent.mode)}})
<bl-clickable class="download">
<span (click)="createParameterFile(recent)" title="Export template parameter file">
<i class="fa fa-download"></i>
</span>
</bl-clickable>
</span>
</bl-clickable>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ bl-recent-template-list {
.mode {
margin-left: 3px;
color: $secondary-text;
white-space: nowrap;
}

&:hover {
Expand All @@ -44,4 +45,5 @@ bl-recent-template-list {
.no-recent {
margin: 10px;
}

}

0 comments on commit 3559c65

Please sign in to comment.