Skip to content

Commit

Permalink
Show all details on mobile when showProgressDetails is true (#3174)
Browse files Browse the repository at this point in the history
  • Loading branch information
Murderlon committed Sep 20, 2021
1 parent c84e218 commit a298e59
Show file tree
Hide file tree
Showing 8 changed files with 740 additions and 453 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Expand Up @@ -85,7 +85,7 @@ module.exports = {
'no-param-reassign': ['warn'],
'no-redeclare': ['warn'],
'no-shadow': ['warn'],
'no-use-before-define': ['warn'],
'no-use-before-define': ['warn', { 'functions': false }],
'radix': ['warn'],
'react/button-has-type': 'error',
'react/destructuring-assignment': ['warn'],
Expand Down
1 change: 0 additions & 1 deletion BACKLOG.md
Expand Up @@ -50,7 +50,6 @@ PRs are welcome! Please do open an issue to discuss first if it's a big feature,
- [ ] Display data like image resolution on file cards. should be done by thumbnail generator maybe #783
- [ ] Possibility to edit/delete more than one file at once. example: add copyrigh info to 1000 files #118, #97
- [ ] Possibility to work on already uploaded / in progress files. We'll just provide the `fileId` to the `file-edit-complete` event so that folks can more easily roll out custom code for this themselves #112, #113, #2063
- [ ] Show upload speed too if `showProgressDetails: true`. Maybe have separate options for which things are displayed, or at least have css-classes that can be hidden with `display: none` #766
- [ ] Focus jumps weirdly if you remove a file https://github.com/transloadit/uppy/pull/2161#issuecomment-613565486
- [ ] A mini UI that features drop & progress (may involve a `mini: true` options for dashboard, may involve drop+progress or new plugin) (@arturi)
- [ ] Add a Load More button so you don't have to TAB endlessly to get to the upload button (https://github.com/transloadit/uppy/issues/1419)
Expand Down
5 changes: 0 additions & 5 deletions packages/@uppy/dashboard/src/style.scss
Expand Up @@ -705,11 +705,6 @@
height: 100%;
}

// Do not show progress details in the StatusBar if we do not have space.
.uppy-Dashboard:not(.uppy-size--md) .uppy-StatusBar-additionalInfo {
display: none;
}

.uppy-Dashboard-filesContainer {
@include clearfix;

Expand Down

0 comments on commit a298e59

Please sign in to comment.