Fix for Bootstrap compatibility

Fixes #6
This commit is contained in:
Sam Potts 2015-02-28 10:43:42 +11:00
parent 1216968c60
commit f8b4622093
7 changed files with 11 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "plyr", "name": "plyr",
"version": "1.0.13", "version": "1.0.14",
"description": "A simple HTML5 media player using custom controls", "description": "A simple HTML5 media player using custom controls",
"homepage": "http://plyr.io", "homepage": "http://plyr.io",
"keywords": [ "keywords": [

View File

@ -1,5 +1,8 @@
# Changelog # Changelog
## v1.0.14
- Minor change for bootstrap compatibility
## v1.0.13 ## v1.0.13
- Minor tweaks - Minor tweaks

2
dist/css/plyr.css vendored

File diff suppressed because one or more lines are too long

2
dist/js/plyr.js vendored

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{ {
"name": "plyr", "name": "plyr",
"version": "1.0.13", "version": "1.0.14",
"description": "A simple HTML5 media player using custom controls", "description": "A simple HTML5 media player using custom controls",
"homepage": "http://plyr.io", "homepage": "http://plyr.io",
"main": "gulpfile.js", "main": "gulpfile.js",

View File

@ -1,6 +1,6 @@
// ========================================================================== // ==========================================================================
// Plyr // Plyr
// plyr.js v1.0.13 // plyr.js v1.0.14
// https://github.com/sampotts/plyr // https://github.com/sampotts/plyr
// ========================================================================== // ==========================================================================
// Credits: http://paypal.github.io/accessible-html5-video-player/ // Credits: http://paypal.github.io/accessible-html5-video-player/

View File

@ -306,7 +306,9 @@
// Volume control // Volume control
// <input[type='range']> element // <input[type='range']> element
&-volume { // Specificty is for bootstrap compatibility
&-volume[type=range] {
display: inline-block;
vertical-align: middle; vertical-align: middle;
-webkit-appearance: none; -webkit-appearance: none;
-moz-appearance: none; -moz-appearance: none;