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

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-k",
4
4
  "description": "LT player.",
5
5
  "main": "dist/js/lt-player-main.js",
6
6
  "module": "dist/js/lt-player-main.js",
@@ -289,7 +289,9 @@
289
289
  background-color: #E6E6E6;
290
290
  -webkit-transition: 0.4s;
291
291
  transition: 0.4s;
292
- display: inline-block
292
+ display: inline-block;
293
+ margin-bottom: 0!important;
294
+ margin-top: 0!important;
293
295
  }
294
296
 
295
297
  &__slider:focus {
@@ -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