- iOS volume display fix
This commit is contained in:
Sam Potts 2020-02-14 17:33:09 +00:00
parent 04d06f2242
commit 6350b7b9e4
5 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,7 @@
### v3.5.10
- iOS volume display fix
### v3.5.9 ### v3.5.9
- Fix for regression with volume control width - Fix for regression with volume control width

2
demo/dist/demo.css vendored

File diff suppressed because one or more lines are too long

2
dist/plyr.css vendored

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{ {
"name": "plyr", "name": "plyr",
"version": "3.5.9", "version": "3.5.10",
"description": "A simple, accessible and customizable HTML5, YouTube and Vimeo media player", "description": "A simple, accessible and customizable HTML5, YouTube and Vimeo media player",
"homepage": "https://plyr.io", "homepage": "https://plyr.io",
"author": "Sam Potts <sam@potts.es>", "author": "Sam Potts <sam@potts.es>",

View File

@ -17,3 +17,9 @@
z-index: 2; z-index: 2;
} }
} }
// Auto size on iOS as there's no slider
.plyr--is-ios .plyr__volume {
min-width: 0;
width: auto;
}