@latest-thinking/lt-player 1.0.5-j → 1.0.5-l
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/dist/css/lt-player-main.css +1 -1
- package/dist/css/lt-player-main.css.map +1 -1
- package/dist/js/lt-player-main.js +1 -1
- package/dist/js/lt-player-main.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/sass/sections/_settings.scss +3 -3
- package/src/assets/sass/sections/controllers/_botom.scss +19 -7
- package/src/services/ResizeService.ts +3 -2
package/package.json
CHANGED
|
@@ -266,8 +266,6 @@
|
|
|
266
266
|
min-width: 60px;
|
|
267
267
|
height: 34px;
|
|
268
268
|
margin-left: 10px;
|
|
269
|
-
margin-bottom: 0!important;
|
|
270
|
-
margin-top: 0!important;
|
|
271
269
|
}
|
|
272
270
|
|
|
273
271
|
&__input-switch {
|
|
@@ -291,7 +289,9 @@
|
|
|
291
289
|
background-color: #E6E6E6;
|
|
292
290
|
-webkit-transition: 0.4s;
|
|
293
291
|
transition: 0.4s;
|
|
294
|
-
display: inline-block
|
|
292
|
+
display: inline-block;
|
|
293
|
+
margin-bottom: 0!important;
|
|
294
|
+
margin-top: 0!important;
|
|
295
295
|
}
|
|
296
296
|
|
|
297
297
|
&__slider:focus {
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
body {
|
|
2
|
+
margin: 0 !important;
|
|
3
|
+
}
|
|
4
|
+
|
|
1
5
|
@import "../../abstracts/variables";
|
|
2
6
|
|
|
3
7
|
.lt-player-landscape--desktop,
|
|
@@ -17,7 +21,7 @@
|
|
|
17
21
|
&__center-buttons,
|
|
18
22
|
&__right-buttons {
|
|
19
23
|
display: flex;
|
|
20
|
-
gap:
|
|
24
|
+
gap: 20px;
|
|
21
25
|
align-items: flex-end;
|
|
22
26
|
}
|
|
23
27
|
|
|
@@ -29,7 +33,7 @@
|
|
|
29
33
|
}
|
|
30
34
|
|
|
31
35
|
&__center-buttons {
|
|
32
|
-
gap:
|
|
36
|
+
gap: 32px;
|
|
33
37
|
}
|
|
34
38
|
|
|
35
39
|
&__right-buttons {
|
|
@@ -80,12 +84,20 @@
|
|
|
80
84
|
&__controls {
|
|
81
85
|
.bottom-controller {
|
|
82
86
|
.play-button {
|
|
83
|
-
padding: .75rem;
|
|
84
|
-
bottom: -2px;
|
|
87
|
+
//padding: .75rem;
|
|
88
|
+
//bottom: -2px;
|
|
85
89
|
}
|
|
86
90
|
|
|
87
91
|
&__center-buttons {
|
|
88
|
-
gap: 1rem;
|
|
92
|
+
//gap: 1rem;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
&__previous-chapter-view {
|
|
96
|
+
display: none;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
&__next-chapter-view {
|
|
100
|
+
display: none;
|
|
89
101
|
}
|
|
90
102
|
}
|
|
91
103
|
}
|
|
@@ -115,7 +127,7 @@
|
|
|
115
127
|
|
|
116
128
|
.skip-backward-seconds,
|
|
117
129
|
.skip-forward-seconds {
|
|
118
|
-
display:
|
|
130
|
+
display: flex;
|
|
119
131
|
}
|
|
120
132
|
}
|
|
121
133
|
}
|
|
@@ -230,7 +242,7 @@
|
|
|
230
242
|
&__controls {
|
|
231
243
|
.bottom-controller {
|
|
232
244
|
position: absolute;
|
|
233
|
-
bottom:
|
|
245
|
+
bottom: 0;
|
|
234
246
|
width: 100%;
|
|
235
247
|
height: 36%;
|
|
236
248
|
max-width: 500px;
|