Skip to content

Commit

Permalink
Merge pull request #27 from unicef-polymer/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
adi130987 authored Dec 18, 2018
2 parents 4d5b0e6 + 265139b commit 8b93305
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "etools-upload",
"description": "Use to upload files",
"version": "1.0.2",
"version": "1.0.3",
"main": "etools-upload.html",
"dependencies": {
"polymer": "Polymer/polymer#^2.0.0",
Expand Down
5 changes: 3 additions & 2 deletions etools-upload.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,10 @@
.filename-and-actions-container {
@apply --layout-horizontal;
@apply --layout-wrap;
max-width: 100%;
}

.file-name:not([allow-multiline-filename]) {
.file-name {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
Expand Down Expand Up @@ -96,7 +97,7 @@
<!-- File name container an upload status -->
<div class="filename-container" hidden$="[[!_thereIsAFileSelectedOrSaved(_filename)]]">
<iron-icon class="file-icon" icon="attachment"></iron-icon>
<span class="file-name" allow-multiline-filename$="[[allowMultilineFilename]]" title="[[_filename]]">[[_filename]]</span>
<span class="file-name" title="[[_filename]]">[[_filename]]</span>
</div>
<div class="upload-status">
<paper-spinner id="uploadingSpinner" hidden$="[[!uploadInProgress]]"
Expand Down

0 comments on commit 8b93305

Please sign in to comment.