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
Fix size of progress container
Signed-off-by: julia.kirschenheuter <[email protected]>
  • Loading branch information
JuliaKirschenheuter authored and skjnldsv committed Jun 8, 2023
commit c4eb4294dec9a4b2c2fffcc3f9ec171a543f4429
Binary file modified cypress/snapshots/base/visual-regression.cy.js/image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified cypress/snapshots/base/visual-regression.cy.js/image2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified cypress/snapshots/base/visual-regression.cy.js/non-dav.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified cypress/snapshots/base/visual-regression.cy.js/video.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions js/viewer-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/viewer-main.js.map

Large diffs are not rendered by default.

68 changes: 39 additions & 29 deletions package-lock.json

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

7 changes: 6 additions & 1 deletion src/mixins/Plyr.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
flex-wrap: wrap;
.plyr__volume,
.plyr__progress__container {
min-width: 120px;
max-width: 100%;
flex: 1 1;
}
Expand Down Expand Up @@ -91,4 +90,10 @@
height: var(--plyr-range-track-height, 5px);
background: transparent;
}

@media only screen and (max-width: 480px) {
.plyr__volume {
display: none;
}
}
}