@latest-thinking/lt-player 1.0.5-i → 1.0.5-j

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@latest-thinking/lt-player",
3
- "version": "1.0.5-i",
3
+ "version": "1.0.5-j",
4
4
  "description": "LT player.",
5
5
  "main": "dist/js/lt-player-main.js",
6
6
  "module": "dist/js/lt-player-main.js",
@@ -266,6 +266,8 @@
266
266
  min-width: 60px;
267
267
  height: 34px;
268
268
  margin-left: 10px;
269
+ margin-bottom: 0!important;
270
+ margin-top: 0!important;
269
271
  }
270
272
 
271
273
  &__input-switch {
@@ -201,7 +201,9 @@ export namespace LTPlayerControlsEvents {
201
201
 
202
202
 
203
203
  controls.addEventListener('mouseleave', function () {
204
- controls.classList.remove('plyr__controls-enable')
204
+ if (!controls.classList.contains('plyr__controls-enable-settings')) {
205
+ controls.classList.remove('plyr__controls-enable')
206
+ }
205
207
  })
206
208
  }
207
209