j1-template 2024.3.20 → 2024.3.21
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.
- checksums.yaml +4 -4
- data/_layouts/page.html +1 -0
- data/assets/data/amplitude_app.html +28 -23
- data/assets/theme/j1/adapter/js/amplitude.js +590 -354
- data/assets/theme/j1/modules/amplitudejs/css/theme/uno/dark/amplitude.css +41 -1
- data/assets/theme/j1/modules/amplitudejs/css/theme/uno/dark/amplitude.min.css +1 -1
- data/assets/theme/j1/modules/amplitudejs/css/theme/uno/dark/player/compact.css +190 -403
- data/assets/theme/j1/modules/amplitudejs/css/theme/uno/dark/player/compact.min.css +1 -2
- data/assets/theme/j1/modules/amplitudejs/css/theme/uno/dark/player/large.css +36 -33
- data/assets/theme/j1/modules/amplitudejs/css/theme/uno/dark/player/large.min.css +1 -1
- data/assets/theme/j1/modules/amplitudejs/css/theme/uno/dark/player/mini.css +72 -9
- data/assets/theme/j1/modules/amplitudejs/css/theme/uno/dark/player/mini.min.css +2 -1
- data/assets/theme/j1/modules/amplitudejs/js/tech/ytp.js +36 -24
- data/lib/j1/version.rb +1 -1
- data/lib/starter_web/README.md +5 -5
- data/lib/starter_web/_config.yml +1 -1
- data/lib/starter_web/_data/modules/amplitude_app.yml +4 -4
- data/lib/starter_web/_data/modules/amplitude_playlists.yml +44 -44
- data/lib/starter_web/_data/modules/defaults/amplitude.yml +7 -4
- data/lib/starter_web/_data/modules/swiper_app.yml +67 -0
- data/lib/starter_web/_data/modules/swiper_playlists.yml +26 -0
- data/lib/starter_web/_data/templates/feed.xml +1 -1
- data/lib/starter_web/_includes/attributes.asciidoc +5 -4
- data/lib/starter_web/_plugins/index/lunr.rb +1 -1
- data/lib/starter_web/assets/image/icon/bokeh/bokeh-32x32.ico +0 -0
- data/lib/starter_web/assets/image/icon/bokeh/bokeh.ico +0 -0
- data/lib/starter_web/assets/image/icon/bokeh/logo-160x160.png +0 -0
- data/lib/starter_web/assets/image/icon/hyvor-talk/hyvore-talk.ico +0 -0
- data/lib/starter_web/assets/image/icon/hyvor-talk/jpg/hyvor-logo.512x512.jpg +0 -0
- data/lib/starter_web/assets/image/icon/hyvor-talk/png/hyvor-logo.24x24.jpg +0 -0
- data/lib/starter_web/assets/image/icon/hyvor-talk/png/hyvor-logo.24x24.png +0 -0
- data/lib/starter_web/assets/image/icon/hyvor-talk/png/hyvor-logo.512x512.png +0 -0
- data/lib/starter_web/assets/image/icon/hyvor-talk/scalable/hyvor-logo.svg +81 -0
- data/lib/starter_web/assets/image/icon/jupyter/jupyter-32x32.ico +0 -0
- data/lib/starter_web/assets/image/icon/jupyter/jupyter.ico +0 -0
- data/lib/starter_web/assets/image/icon/jupyter/logo.png +0 -0
- data/lib/starter_web/assets/image/icon/mdi/mdi.svg +1 -0
- data/lib/starter_web/assets/image/icon/mdi/mdil.svg +1 -0
- data/lib/starter_web/assets/image/icon/scalable/facebook.svg +34 -0
- data/lib/starter_web/assets/image/icon/scalable/google.svg +35 -0
- data/lib/starter_web/assets/image/icon/scalable/ibm.svg +24 -0
- data/lib/starter_web/assets/image/icon/scalable/microsoft.svg +42 -0
- data/lib/starter_web/assets/image/module/swiper/simple/test/image/diana_krall.jpg +0 -0
- data/lib/starter_web/index.html +3 -3
- data/lib/starter_web/package.json +1 -1
- data/lib/starter_web/pages/public/learn/where_to_go.adoc +1 -1
- data/lib/starter_web/pages/public/tools/previewer/preview_amplitudejs.adoc +3 -18
- data/lib/starter_web/pages/public/tools/tester/app_tester_amplitudejs_yt.adoc +6 -6
- data/lib/starter_web/pages/public/tools/tester/app_tester_swiper.adoc +87 -0
- data/lib/starter_web/pages/public/tour/_includes/attributes.asciidoc +3 -3
- data/lib/starter_web/pages/public/tour/{play_audio.adoc → audio_data.adoc} +30 -55
- data/lib/starter_web/pages/public/tour/{present_images.adoc → image_data.adoc} +4 -5
- data/lib/starter_web/pages/public/tour/{play_video.adoc → video_data.adoc} +17 -16
- metadata +25 -5
@@ -29,11 +29,16 @@
|
|
29
29
|
overflow-y: clip;
|
30
30
|
}
|
31
31
|
|
32
|
-
.
|
33
|
-
|
34
|
-
|
32
|
+
.compact-player-middle {
|
33
|
+
padding: 10px 10px 10px 10px;
|
34
|
+
background-color: var(--ajs-theme-uno--blue-gray-900);
|
35
|
+
}
|
36
|
+
|
37
|
+
.player-bottom {
|
38
|
+
background-color: var(--ajs-theme-uno--black);
|
35
39
|
}
|
36
40
|
|
41
|
+
|
37
42
|
/* 2. Components
|
38
43
|
# ------------------------------------------------------------------------------ */
|
39
44
|
|
@@ -43,7 +48,6 @@
|
|
43
48
|
position: relative;
|
44
49
|
}
|
45
50
|
|
46
|
-
/* jadams, 2024-11-04: Overload user agent styles for width|height */
|
47
51
|
.player-top img[data-amplitude-song-info="cover_art_url"] {
|
48
52
|
width: 498px; /* size of cover image (rendered) - 1px borders left|right */
|
49
53
|
height: auto;
|
@@ -66,260 +70,121 @@
|
|
66
70
|
left: 15px;
|
67
71
|
}
|
68
72
|
|
69
|
-
/*
|
70
|
-
.compact-player-header-arrows.arrow-down {
|
71
|
-
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/up.svg") no-repeat;
|
72
|
-
}
|
73
|
-
|
74
|
-
.compact-player-header-arrows.arrow-up {
|
75
|
-
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/down.svg") no-repeat;
|
76
|
-
}
|
77
|
-
*/
|
78
|
-
|
79
|
-
|
80
73
|
/* Player MIDDLE
|
81
74
|
# --------------------------------------------------------- */
|
82
75
|
|
83
|
-
.compact-player-
|
76
|
+
.compact-player-shuffle {
|
84
77
|
display: inline-block;
|
85
78
|
user-select: none;
|
86
|
-
width: 60px;
|
87
|
-
height: 60px;
|
88
|
-
cursor: pointer;
|
89
|
-
vertical-align: middle;
|
90
|
-
}
|
91
|
-
.compact-player-play-pause:hover {
|
92
|
-
opacity: 0.5;
|
93
|
-
}
|
94
|
-
.compact-player-play-pause:focus:not(:focus-visible) {
|
95
|
-
outline: none;
|
96
|
-
}
|
97
|
-
div.compact-player-play-pause.amplitude-paused {
|
98
|
-
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/play.svg") no-repeat;
|
99
|
-
}
|
100
|
-
div.compact-player-play-pause.amplitude-playing {
|
101
|
-
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/pause.svg") no-repeat;
|
102
|
-
}
|
103
|
-
|
104
|
-
|
105
|
-
div#compact_player_control_container {
|
106
|
-
margin-top: 20px;
|
107
|
-
margin-bottom: 20px;
|
108
|
-
}
|
109
|
-
|
110
|
-
/* clearfix */
|
111
|
-
div#compact_player_control_container:after {
|
112
|
-
content: "";
|
113
|
-
display: table;
|
114
|
-
clear: both;
|
115
|
-
}
|
116
|
-
|
117
|
-
div#compact_player_control_container
|
118
|
-
div.volume-container {
|
119
|
-
float: left;
|
120
|
-
width: 88%;
|
121
|
-
margin-top: 20px;
|
122
|
-
margin-left: 12px;
|
123
|
-
}
|
124
|
-
|
125
|
-
/* clearfix */
|
126
|
-
div#compact_player_control_container
|
127
|
-
div.volume-container:after {
|
128
|
-
content: "";
|
129
|
-
display: table;
|
130
|
-
clear: both;
|
131
|
-
}
|
132
|
-
|
133
|
-
div#compact_player_control_container
|
134
|
-
div.volume-container
|
135
|
-
div.volume-controls
|
136
|
-
input[type=range] {
|
137
|
-
width: calc(100% - 45px);
|
138
|
-
}
|
139
|
-
|
140
|
-
div#compact_player_control_container
|
141
|
-
div.amplitude-mute {
|
142
|
-
float: left;
|
143
|
-
cursor: pointer;
|
144
|
-
width: 25px;
|
145
|
-
height: 19px;
|
146
|
-
margin-left: 50px;
|
147
|
-
}
|
148
|
-
|
149
|
-
div#compact_player_control_container
|
150
|
-
div.amplitude-mute.amplitude-muted {
|
151
|
-
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/mute.svg") no-repeat;
|
152
|
-
}
|
153
|
-
|
154
|
-
div#compact_player_control_container
|
155
|
-
div.amplitude-mute.amplitude-not-muted {
|
156
|
-
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/volume.svg") no-repeat;
|
157
|
-
}
|
158
|
-
|
159
|
-
div#compact_player_controls {
|
160
|
-
height: 65px;
|
161
|
-
}
|
162
|
-
|
163
|
-
div#compact_player_controls
|
164
|
-
div.compact-player-controls-container {
|
165
|
-
text-align: center;
|
166
|
-
}
|
167
|
-
|
168
|
-
div.compact-player-middle {
|
169
|
-
padding: 10px 10px 10px 10px;
|
170
|
-
background-color: var(--ajs-theme-uno--blue-gray-900);
|
171
|
-
}
|
172
|
-
|
173
|
-
div.compact-player-middle
|
174
|
-
div.compact-player-controls-container {
|
175
|
-
display: block;
|
176
|
-
}
|
177
|
-
|
178
|
-
div.compact-player-middle
|
179
|
-
div.compact-player-controls-container
|
180
|
-
div#compact_player_shuffle {
|
181
|
-
display: inline-block;
|
182
79
|
cursor: pointer;
|
183
80
|
width: 24px;
|
184
81
|
height: 24px;
|
185
82
|
vertical-align: middle;
|
186
83
|
}
|
187
84
|
|
188
|
-
|
189
|
-
div.compact-player-controls-container
|
190
|
-
div#compact_player_shuffle:hover {
|
85
|
+
.compact-player-shuffle:hover {
|
191
86
|
opacity: 0.5;
|
192
87
|
}
|
193
88
|
|
194
|
-
|
195
|
-
div.compact-player-controls-container
|
196
|
-
div#compact_player_shuffle.amplitude-shuffle-off {
|
89
|
+
/* .compact-player-shuffle.amplitude-shuffle-off {
|
197
90
|
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/shuffle-off.svg") no-repeat;
|
198
91
|
}
|
199
92
|
|
200
|
-
|
201
|
-
div.compact-player-controls-container
|
202
|
-
div#compact_player_shuffle.amplitude-shuffle-on {
|
93
|
+
.compact-player-shuffle.amplitude-shuffle-on {
|
203
94
|
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/shuffle-on.svg") no-repeat;
|
204
|
-
}
|
95
|
+
} */
|
205
96
|
|
206
|
-
|
207
|
-
div.compact-player-controls-container
|
208
|
-
div.compact-player-previous {
|
97
|
+
.compact-player-previous {
|
209
98
|
display: inline-block;
|
99
|
+
user-select: none;
|
210
100
|
cursor: pointer;
|
211
101
|
vertical-align: middle;
|
212
102
|
width: 24px;
|
213
103
|
height: 24px;
|
214
104
|
margin-right: 20px;
|
215
|
-
margin-left: 20px;
|
216
|
-
|
217
|
-
|
218
|
-
div.compact-player-middle
|
219
|
-
div.compact-player-controls-container
|
220
|
-
div.compact-player-previous {
|
221
|
-
display: inline-block;
|
222
|
-
cursor: pointer;
|
223
|
-
height: 24px;
|
224
|
-
width: 24px;
|
225
|
-
margin-right: 20px;
|
226
|
-
vertical-align: middle;
|
227
|
-
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/previous.svg") no-repeat;
|
105
|
+
margin-left: 20px;
|
106
|
+
/* background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/previous.svg") no-repeat; */
|
228
107
|
}
|
229
108
|
|
230
|
-
|
231
|
-
div.compact-player-controls-container
|
232
|
-
div.compact-player-previous:hover {
|
109
|
+
.compact-player-previous:hover {
|
233
110
|
opacity: 0.5;
|
234
111
|
}
|
235
112
|
|
236
|
-
|
237
|
-
div.compact-player-controls-container
|
238
|
-
div.compact-player-skip-backward {
|
113
|
+
.compact-player-skip-backward {
|
239
114
|
display: inline-block;
|
115
|
+
user-select: none;
|
240
116
|
cursor: pointer;
|
241
117
|
height: 24px;
|
242
118
|
width: 24px;
|
243
119
|
margin-right: 20px;
|
244
120
|
vertical-align: middle;
|
245
|
-
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/skip-backward.svg") no-repeat;
|
121
|
+
/* background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/skip-backward.svg") no-repeat; */
|
246
122
|
}
|
247
123
|
|
248
|
-
|
249
|
-
div.compact-player-controls-container
|
250
|
-
div.compact-player-skip-backward:hover {
|
124
|
+
.compact-player-skip-backward:hover {
|
251
125
|
opacity: 0.5;
|
252
126
|
}
|
253
127
|
|
254
|
-
|
255
|
-
div.compact-player-controls-container
|
256
|
-
div.compact-player-play-pause {
|
128
|
+
.compact-player-play-pause {
|
257
129
|
display: inline-block;
|
258
|
-
|
130
|
+
user-select: none;
|
259
131
|
width: 60px;
|
260
132
|
height: 60px;
|
133
|
+
cursor: pointer;
|
261
134
|
vertical-align: middle;
|
262
135
|
}
|
263
136
|
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
137
|
+
.compact-player-play-pause:hover {
|
138
|
+
opacity: 0.5;
|
139
|
+
}
|
140
|
+
|
141
|
+
.compact-player-play-pause:focus:not(:focus-visible) {
|
142
|
+
outline: none;
|
268
143
|
}
|
269
144
|
|
270
|
-
|
271
|
-
div.compact-player-controls-container
|
272
|
-
div#compact_player_play_pause.amplitude-paused {
|
145
|
+
.compact-player-play-pause.amplitude-paused {
|
273
146
|
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/play.svg") no-repeat;
|
274
147
|
}
|
275
148
|
|
276
|
-
|
277
|
-
div.compact-player-controls-container
|
278
|
-
div#compact_player_play_pause.amplitude-playing {
|
149
|
+
.compact-player-play-pause.amplitude-playing {
|
279
150
|
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/pause.svg") no-repeat;
|
280
151
|
}
|
281
152
|
|
282
|
-
|
283
|
-
|
284
|
-
div.compact-player-skip-forward {
|
153
|
+
|
154
|
+
.compact-player-skip-forward {
|
285
155
|
display: inline-block;
|
156
|
+
user-select: none;
|
286
157
|
cursor: pointer;
|
287
158
|
height: 24px;
|
288
159
|
width: 24px;
|
289
160
|
margin-left: 20px;
|
290
161
|
vertical-align: middle;
|
291
|
-
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/skip-forward.svg") no-repeat;
|
162
|
+
/* background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/skip-forward.svg") no-repeat; */
|
292
163
|
}
|
293
164
|
|
294
|
-
|
295
|
-
div.compact-player-controls-container
|
296
|
-
div.compact-player-skip-forward:hover {
|
165
|
+
.compact-player-skip-forward:hover {
|
297
166
|
opacity: .5;
|
298
167
|
}
|
299
168
|
|
300
|
-
|
301
|
-
div.compact-player-controls-container
|
302
|
-
div.compact-player-next {
|
169
|
+
.compact-player-next {
|
303
170
|
display: inline-block;
|
171
|
+
user-select: none;
|
304
172
|
cursor: pointer;
|
305
173
|
height: 24px;
|
306
174
|
width: 24px;
|
307
175
|
margin-right: 25px;
|
308
176
|
margin-left: 20px;
|
309
177
|
vertical-align: middle;
|
310
|
-
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/next.svg") no-repeat;
|
178
|
+
/* background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/next.svg") no-repeat; */
|
311
179
|
}
|
312
180
|
|
313
|
-
|
314
|
-
div.compact-player-controls-container
|
315
|
-
div.compact-player-next:hover {
|
181
|
+
.compact-player-next:hover {
|
316
182
|
opacity: .5;
|
317
183
|
}
|
318
184
|
|
319
|
-
|
320
|
-
div.compact-player-controls-container
|
321
|
-
div#compact_player_repeat {
|
185
|
+
.compact-player-repeat {
|
322
186
|
display: inline-block;
|
187
|
+
user-select: none;
|
323
188
|
cursor: pointer;
|
324
189
|
width: 24px;
|
325
190
|
height: 24px;
|
@@ -327,61 +192,61 @@ div#compact_player_repeat {
|
|
327
192
|
margin-right: 25px;
|
328
193
|
}
|
329
194
|
|
330
|
-
|
331
|
-
div.large-player-controls-container
|
332
|
-
div#compact_player_repeat:hover {
|
195
|
+
.compact-player-repeat:hover {
|
333
196
|
opacity: .5;
|
334
197
|
}
|
335
198
|
|
336
|
-
|
337
|
-
div.compact-player-controls-container
|
338
|
-
div#compact_player_repeat.amplitude-repeat-off {
|
199
|
+
/* .compact-player-repeat.amplitude-repeat-off {
|
339
200
|
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/repeat-off.svg") no-repeat;
|
340
201
|
}
|
341
202
|
|
342
|
-
|
343
|
-
div.compact-player-controls-container
|
344
|
-
div#compact_player_repeat.amplitude-repeat-on {
|
203
|
+
.compact-player-repeat.amplitude-repeat-on {
|
345
204
|
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/repeat-on.svg") no-repeat;
|
205
|
+
} */
|
206
|
+
|
207
|
+
.compact-player-control-container {
|
208
|
+
margin-top: 20px;
|
209
|
+
margin-bottom: 10px;
|
346
210
|
}
|
347
211
|
|
348
212
|
/* clearfix */
|
349
|
-
|
350
|
-
div.compact-player-controls-container::after {
|
213
|
+
.compact-player-control-container:after {
|
351
214
|
content: "";
|
352
215
|
display: table;
|
353
216
|
clear: both;
|
354
217
|
}
|
355
218
|
|
356
|
-
|
357
|
-
|
219
|
+
.compact-player-controls-container {
|
220
|
+
text-align: center;
|
221
|
+
}
|
222
|
+
|
223
|
+
/* clearfix */
|
224
|
+
.compact-player-controls-container::after {
|
225
|
+
content: "";
|
226
|
+
display: table;
|
227
|
+
clear: both;
|
228
|
+
}
|
229
|
+
|
230
|
+
.volume-container img {
|
358
231
|
display: block;
|
359
232
|
float: left;
|
360
233
|
}
|
361
234
|
|
362
235
|
/* clearfix */
|
363
|
-
|
364
|
-
div.volume-container:after {
|
236
|
+
.volume-container:after {
|
365
237
|
content: "";
|
366
238
|
display: table;
|
367
239
|
clear: both;
|
368
240
|
}
|
369
241
|
|
370
|
-
|
371
|
-
|
372
|
-
div.amplitude-mute.amplitude-not-muted {
|
373
|
-
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/volume.svg") no-repeat;
|
242
|
+
.compact-player-amplitude-mute {
|
243
|
+
margin-left: 28px;
|
374
244
|
}
|
375
245
|
|
376
|
-
div.compact-player-middle
|
377
|
-
div.volume-controls
|
378
|
-
div.amplitude-mute.amplitude-muted {
|
379
|
-
background: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/mute.svg") no-repeat;
|
380
|
-
}
|
381
246
|
|
382
247
|
/* Player BOTTOM
|
383
248
|
# --------------------------------------------------------- */
|
384
|
-
|
249
|
+
.player-bottom {
|
385
250
|
background-color: var(--ajs-theme-uno--black);
|
386
251
|
}
|
387
252
|
|
@@ -407,35 +272,34 @@ Bootstrap (BS) grid breakpoints
|
|
407
272
|
|
408
273
|
@media screen and (max-width: 576px) {
|
409
274
|
|
410
|
-
/* jadams, workaround to limit player width on smart phones */
|
411
275
|
.compact-player {
|
412
276
|
max-width: -webkit-fill-available; /* Chrome, Safari, Edge */
|
413
277
|
max-width: -moz-available; /* Firefox */
|
414
278
|
}
|
415
279
|
|
416
|
-
|
280
|
+
.player-top img[data-amplitude-song-info="cover_art_url"] {
|
417
281
|
max-width: -webkit-fill-available; /* Chrome, Safari, Edge */
|
418
282
|
max-width: -moz-available; /* Firefox */
|
419
283
|
}
|
420
284
|
|
421
|
-
|
285
|
+
.compact-player-playlist {
|
422
286
|
width: calc(100% - 1px);
|
423
287
|
}
|
424
288
|
|
425
|
-
|
289
|
+
.compact-player-volume-container
|
426
290
|
input[type=range].amplitude-volume-slider {
|
427
291
|
appearance: none;
|
428
|
-
width: calc(100% - 100px);
|
429
292
|
}
|
430
293
|
|
431
|
-
|
294
|
+
.compact-player-volume-container
|
432
295
|
input[type=range].amplitude-volume-slider::-webkit-slider-thumb {
|
433
296
|
width: 30px;
|
434
297
|
height: 30px;
|
435
298
|
border-radius: 30px;
|
436
299
|
margin-top: -15px;
|
437
300
|
}
|
438
|
-
|
301
|
+
|
302
|
+
.compact-player-volume-container
|
439
303
|
input[type=range].amplitude-volume-slider::-moz-slider-thumb {
|
440
304
|
width: 30px;
|
441
305
|
height: 30px;
|
@@ -451,10 +315,10 @@ Bootstrap (BS) grid breakpoints
|
|
451
315
|
|
452
316
|
/* playlist
|
453
317
|
# --------------------------------------------------------- */
|
454
|
-
|
455
|
-
|
456
|
-
height:
|
457
|
-
|
318
|
+
|
319
|
+
.meta-container.compact-player {
|
320
|
+
height: 120px;
|
321
|
+
border: 0px;
|
458
322
|
}
|
459
323
|
|
460
324
|
.playlist-screen-meta-container {
|
@@ -462,84 +326,70 @@ Bootstrap (BS) grid breakpoints
|
|
462
326
|
width: calc(100% - 123px);
|
463
327
|
}
|
464
328
|
|
465
|
-
|
329
|
+
.compact-player-volume-container {
|
466
330
|
margin-top: 20px;
|
467
331
|
}
|
468
332
|
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
333
|
+
.compact-player-volume-container
|
334
|
+
input[type=range].amplitude-volume-slider {
|
335
|
+
float: left;
|
336
|
+
height: 1px;
|
337
|
+
margin-top: 10px;
|
338
|
+
margin-left: 5px;
|
339
|
+
width: calc(100% - 118px);
|
340
|
+
background: transparent;
|
341
|
+
}
|
342
|
+
|
343
|
+
.compact-player-list-controls {
|
344
|
+
width: 128px !important;
|
345
|
+
margin-top: 50px !important;
|
346
|
+
margin-right: -32px !important;
|
480
347
|
}
|
481
348
|
|
482
|
-
|
483
|
-
|
484
|
-
height:
|
349
|
+
.compact-player-title-list {
|
350
|
+
width: 100%;
|
351
|
+
height: 680px;
|
485
352
|
overflow-y: scroll;
|
486
353
|
}
|
487
354
|
|
488
|
-
|
489
|
-
|
490
|
-
div.song {
|
355
|
+
.compact-player-title-list
|
356
|
+
.song {
|
491
357
|
padding: 15px;
|
492
358
|
cursor: pointer;
|
493
359
|
line-height: 20px;
|
494
360
|
background-color: var(--ajs-theme-uno--darker-silver);
|
495
361
|
}
|
496
362
|
|
497
|
-
|
498
|
-
|
499
|
-
div.song
|
500
|
-
span.song-number-now-playing {
|
363
|
+
.compact-player-title-list
|
364
|
+
.song-number-now-playing {
|
501
365
|
float: left;
|
502
366
|
width: 5px;
|
503
367
|
height: 20px;
|
504
|
-
margin-top:
|
368
|
+
margin-top: 14px;
|
505
369
|
margin-right: 20px;
|
506
370
|
}
|
507
371
|
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
span.song-number-now-playing
|
512
|
-
span.number {
|
372
|
+
.compact-player-title-list
|
373
|
+
.song-number-now-playing
|
374
|
+
.number {
|
513
375
|
opacity: 0.5;
|
514
376
|
font-family: "Lato", sans-serif;
|
515
377
|
font-size: 14px;
|
516
378
|
color: var(--ajs-theme-uno--white);
|
517
379
|
}
|
518
380
|
|
519
|
-
|
520
|
-
|
521
|
-
div.song
|
522
|
-
span.song-number-now-playing
|
381
|
+
.compact-player-title-list
|
382
|
+
.song-number-now-playing
|
523
383
|
img.now-playing {
|
524
384
|
display: none;
|
525
385
|
}
|
526
386
|
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
div.song-meta-container {
|
531
|
-
display: inline-block;
|
532
|
-
width: calc(100% - 120px);
|
533
|
-
}
|
534
|
-
|
535
|
-
div.compact-player-playlist
|
536
|
-
div.compact-player-title-list
|
537
|
-
div.song
|
538
|
-
div.song-meta-container
|
539
|
-
span.song-name {
|
387
|
+
.compact-player-title-list
|
388
|
+
.song-meta-container
|
389
|
+
.song-name {
|
540
390
|
display: block;
|
541
391
|
width: calc(100% - 40px);
|
542
|
-
margin-left:
|
392
|
+
margin-left: 38px;
|
543
393
|
font-family: "Lato", sans-serif;
|
544
394
|
font-size: 18px;
|
545
395
|
white-space: nowrap;
|
@@ -548,118 +398,56 @@ span.song-name {
|
|
548
398
|
color: var(--ajs-theme-uno--blue);
|
549
399
|
}
|
550
400
|
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
span.amplitude-audio-info {
|
555
|
-
float: right;
|
556
|
-
margin-right: -130px;
|
557
|
-
}
|
558
|
-
|
559
|
-
/*
|
560
|
-
div.compact-player-playlist
|
561
|
-
div.playlist-screen-controls
|
562
|
-
div.playlist-screen-meta-container
|
563
|
-
span.audio-rating {
|
564
|
-
float: right;
|
565
|
-
margin-right: -100px;
|
566
|
-
margin-top: 10px;
|
567
|
-
}
|
568
|
-
*/
|
569
|
-
|
570
|
-
div.screen-controls-compact-player
|
571
|
-
div.playlist-screen-meta-container
|
572
|
-
span.audio-rating {
|
573
|
-
display: flex;
|
574
|
-
float: right;
|
575
|
-
margin-top: 10px;
|
576
|
-
margin-right: -100px;
|
577
|
-
}
|
578
|
-
|
579
|
-
/*
|
580
|
-
div.screen-controls-large-player
|
581
|
-
div.playlist-screen-meta-container
|
582
|
-
span.audio-rating {
|
583
|
-
display: flex;
|
584
|
-
float: right;
|
585
|
-
margin-top: 10px;
|
586
|
-
margin-right: -48px;
|
587
|
-
}
|
588
|
-
*/
|
589
|
-
|
590
|
-
div.compact-player-playlist
|
591
|
-
div.compact-player-title-list
|
592
|
-
div.song
|
593
|
-
div.song-meta-container
|
594
|
-
span.audio-rating {
|
401
|
+
.compact-player-title-list
|
402
|
+
.song-meta-container
|
403
|
+
.audio-rating {
|
595
404
|
display: flex;
|
596
405
|
float: right;
|
597
|
-
margin-top: -
|
598
|
-
margin-right: -96px;
|
406
|
+
margin-top: -38px;
|
599
407
|
}
|
600
408
|
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
div.song-meta-container
|
605
|
-
span.song-artist-album {
|
409
|
+
.compact-player-title-list
|
410
|
+
.song-meta-container
|
411
|
+
.song-artist-album {
|
606
412
|
display: block;
|
607
|
-
margin-left:
|
413
|
+
margin-left: 38px;
|
608
414
|
font-family: "Lato", sans-serif;
|
609
415
|
font-size: 16px;
|
610
416
|
color: var(--ajs-theme-uno--gray-300);
|
611
417
|
}
|
612
418
|
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
span.audio-duration {
|
419
|
+
.compact-player-title-list
|
420
|
+
.song-meta-container
|
421
|
+
.audio-duration {
|
617
422
|
float: right;
|
618
|
-
margin-top: -
|
619
|
-
margin-right: -93px;
|
423
|
+
margin-top: -18px;
|
620
424
|
font-family: "Lato", sans-serif;
|
621
425
|
font-size: 16px;
|
622
426
|
color: var(--ajs-theme-uno--gray-300);
|
623
427
|
}
|
624
428
|
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
span.song-duration {
|
629
|
-
display: inline-block;
|
630
|
-
opacity: 0.5;
|
631
|
-
width: 35px;
|
632
|
-
font-family: "Lato", sans-serif;
|
633
|
-
font-size: 18px;
|
634
|
-
text-align: center;
|
635
|
-
color: var(--ajs-theme-uno--white);
|
636
|
-
}
|
637
|
-
|
638
|
-
div.compact-player-playlist
|
639
|
-
div.compact-player-title-list
|
640
|
-
div.song
|
641
|
-
span.audio-info {
|
429
|
+
.playlist-screen-meta-container
|
430
|
+
.audio-rating {
|
431
|
+
display: flex;
|
642
432
|
float: right;
|
643
|
-
margin-top:
|
644
|
-
margin-right: -
|
433
|
+
margin-top: 10px;
|
434
|
+
margin-right: -100px;
|
645
435
|
}
|
646
436
|
|
647
|
-
.
|
648
|
-
|
649
|
-
|
437
|
+
.playlist-screen-meta-container
|
438
|
+
.amplitude-audio-info {
|
439
|
+
float: right;
|
440
|
+
margin-right: -130px;
|
650
441
|
}
|
651
442
|
|
652
|
-
|
653
|
-
|
654
|
-
div.compact-player-title-list
|
655
|
-
div.song.amplitude-active-song-container {
|
443
|
+
.compact-player-title-list
|
444
|
+
.song.amplitude-active-song-container {
|
656
445
|
background-color: var(--ajs-theme-uno--medium-silver) !important;
|
657
446
|
}
|
658
447
|
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
span.song-number-now-playing
|
448
|
+
.compact-player-title-list
|
449
|
+
.song.amplitude-active-song-container
|
450
|
+
.song-number-now-playing
|
663
451
|
img.now-playing {
|
664
452
|
display: inline-block;
|
665
453
|
height: 16px;
|
@@ -668,25 +456,35 @@ img.now-playing {
|
|
668
456
|
margin-left: 4px;
|
669
457
|
}
|
670
458
|
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
459
|
+
.compact-player-title-list
|
460
|
+
.song.amplitude-active-song-container
|
461
|
+
.song-number-now-playing
|
462
|
+
.number {
|
463
|
+
display: none;
|
464
|
+
}
|
465
|
+
|
466
|
+
.compact-player-playlist {
|
676
467
|
display: none;
|
468
|
+
position: absolute;
|
469
|
+
top: 0;
|
470
|
+
right: 0;
|
471
|
+
left: 0;
|
472
|
+
bottom: 0;
|
473
|
+
/* jadams 2024-11-07, workaround (reason unclear) */
|
474
|
+
/* NOTE: make playlist 1 pixel wider to fit in width */
|
475
|
+
width: calc(100% + 1px);
|
476
|
+
background-color: var(--ajs-theme-uno--black);
|
677
477
|
}
|
678
478
|
|
679
|
-
|
680
|
-
|
681
|
-
div.playlist-screen-meta-container {
|
479
|
+
.playlist-screen-controls
|
480
|
+
.playlist-screen-meta-container {
|
682
481
|
float: left;
|
683
482
|
width: calc(100% - 123px);
|
684
483
|
}
|
685
484
|
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
span.song-name {
|
485
|
+
.playlist-screen-controls
|
486
|
+
.playlist-screen-meta-container
|
487
|
+
.song-name {
|
690
488
|
font-family: "Lato", sans-serif;
|
691
489
|
font-size: 18px;
|
692
490
|
line-height: 24px;
|
@@ -696,10 +494,9 @@ span.song-name {
|
|
696
494
|
color: var(--ajs-theme-uno--white);
|
697
495
|
}
|
698
496
|
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
div.song-artist-album {
|
497
|
+
.playlist-screen-controls
|
498
|
+
.playlist-screen-meta-container
|
499
|
+
.song-artist-album {
|
703
500
|
opacity: 0.5;
|
704
501
|
font-family: "Lato", sans-serif;
|
705
502
|
font-size: 15px;
|
@@ -707,17 +504,15 @@ div.song-artist-album {
|
|
707
504
|
color: var(--ajs-theme-uno--white);
|
708
505
|
}
|
709
506
|
|
710
|
-
|
711
|
-
|
712
|
-
div.list-controls {
|
507
|
+
.playlist-screen-controls
|
508
|
+
.list-controls {
|
713
509
|
float: right;
|
714
510
|
margin-top: 48px;
|
715
511
|
}
|
716
512
|
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
div.list-previous {
|
513
|
+
.playlist-screen-controls
|
514
|
+
.list-controls
|
515
|
+
.list-previous {
|
721
516
|
float: left;
|
722
517
|
cursor: pointer;
|
723
518
|
width: 15px;
|
@@ -728,50 +523,44 @@ div.list-previous {
|
|
728
523
|
background-image: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/small/previous.svg");
|
729
524
|
}
|
730
525
|
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
div.list-previous:hover {
|
526
|
+
.playlist-screen-controls
|
527
|
+
.list-controls
|
528
|
+
.list-previous:hover {
|
735
529
|
opacity: 0.5;
|
736
530
|
}
|
737
531
|
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
div.list-play-pause {
|
532
|
+
.playlist-screen-controls
|
533
|
+
.list-controls
|
534
|
+
.amplitude-play-pause {
|
742
535
|
float: left;
|
743
536
|
cursor: pointer;
|
744
537
|
width: 17px;
|
745
538
|
height: 24px;
|
746
539
|
}
|
747
540
|
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
div.list-play-pause:hover {
|
541
|
+
.playlist-screen-controls
|
542
|
+
.list-controls
|
543
|
+
.amplitude-play-pause:hover {
|
752
544
|
opacity: 0.5;
|
753
545
|
}
|
754
546
|
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
div.list-play-pause.amplitude-playing {
|
547
|
+
.playlist-screen-controls
|
548
|
+
.list-controls
|
549
|
+
.amplitude-play-pause.amplitude-playing {
|
759
550
|
background-repeat: no-repeat;
|
760
551
|
background-image: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/small/pause.svg");
|
761
552
|
}
|
762
553
|
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
div.list-play-pause.amplitude-paused {
|
554
|
+
.playlist-screen-controls
|
555
|
+
.list-controls
|
556
|
+
.amplitude-play-pause.amplitude-paused {
|
767
557
|
background-repeat: no-repeat;
|
768
558
|
background-image: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/small/play.svg");
|
769
559
|
}
|
770
560
|
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
div.list-next {
|
561
|
+
.playlist-screen-controls
|
562
|
+
.list-controls
|
563
|
+
.list-next {
|
775
564
|
float: left;
|
776
565
|
cursor: pointer;
|
777
566
|
width: 15px;
|
@@ -782,25 +571,23 @@ div.list-next {
|
|
782
571
|
background-image: url("/assets/theme/j1/modules/amplitudejs/icons/player/dark/small/next.svg");
|
783
572
|
}
|
784
573
|
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
div.list-next:hover {
|
574
|
+
.playlist-screen-controls
|
575
|
+
.list-controls
|
576
|
+
.list-next:hover {
|
789
577
|
opacity: 0.5;
|
790
578
|
}
|
791
579
|
|
792
|
-
|
580
|
+
.compact-player-volume-container
|
793
581
|
input[type=range].amplitude-volume-slider {
|
794
582
|
float: left;
|
795
583
|
height: 1px;
|
796
584
|
margin-top: 10px;
|
797
585
|
margin-left: 5px;
|
798
|
-
width: calc(100% -
|
586
|
+
width: calc(100% - 118px);
|
799
587
|
background: transparent;
|
800
588
|
}
|
801
589
|
|
802
590
|
|
803
|
-
|
804
591
|
/* 5. Themes
|
805
592
|
# ------------------------------------------------------------------------------ */
|
806
593
|
|