chuijs 3.6.2 → 3.6.4

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.
Files changed (119) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +1203 -162
  3. package/framework/appLayout/default/chui_app_layout.js +747 -747
  4. package/framework/appLayout/default/global_style.css +592 -568
  5. package/framework/appLayout/default/main_theme_style.css +118 -101
  6. package/framework/components/chui_accordion/accordion.js +63 -63
  7. package/framework/components/chui_accordion/styles.css +79 -75
  8. package/framework/components/chui_badge/badge.js +55 -55
  9. package/framework/components/chui_badge/styles.css +29 -29
  10. package/framework/components/chui_button/button.js +48 -48
  11. package/framework/components/chui_button/styles.css +75 -70
  12. package/framework/components/chui_calendar/calendar.js +97 -97
  13. package/framework/components/chui_card/card.js +87 -0
  14. package/framework/components/chui_card/styles.css +72 -0
  15. package/framework/components/chui_code/code.js +18 -18
  16. package/framework/components/chui_code/styles.css +9 -9
  17. package/framework/components/chui_console/console.js +27 -27
  18. package/framework/components/chui_console/styles.css +31 -31
  19. package/framework/components/chui_content_block/content_block.js +51 -51
  20. package/framework/components/chui_content_block/styles.css +2 -2
  21. package/framework/components/chui_context_menu/context_menu.js +230 -0
  22. package/framework/components/chui_context_menu/styles.css +136 -0
  23. package/framework/components/chui_custom_element/custom_element.js +24 -24
  24. package/framework/components/chui_details/details.js +85 -85
  25. package/framework/components/chui_details/styles.css +70 -66
  26. package/framework/components/chui_fieldset/fieldset.js +40 -40
  27. package/framework/components/chui_fieldset/styles.css +24 -24
  28. package/framework/components/chui_form/form.js +40 -40
  29. package/framework/components/chui_form/styles.css +21 -21
  30. package/framework/components/chui_graphs/graphs.js +234 -190
  31. package/framework/components/chui_graphs/styles.css +37 -32
  32. package/framework/components/chui_hero/hero.js +98 -0
  33. package/framework/components/chui_hero/styles.css +91 -0
  34. package/framework/components/chui_html_block/html_block.js +16 -16
  35. package/framework/components/chui_html_block/styles.css +5 -5
  36. package/framework/components/chui_hx/hx.js +15 -15
  37. package/framework/components/chui_hx/styles.css +38 -38
  38. package/framework/components/chui_icons/icons.js +2144 -2144
  39. package/framework/components/chui_icons/styles.css +13 -13
  40. package/framework/components/chui_inputs/chui_check_box/check_box.js +32 -32
  41. package/framework/components/chui_inputs/chui_check_box/styles.css +91 -86
  42. package/framework/components/chui_inputs/chui_combo_box/combo_box.js +166 -150
  43. package/framework/components/chui_inputs/chui_combo_box/styles.css +113 -107
  44. package/framework/components/chui_inputs/chui_date/date.js +177 -174
  45. package/framework/components/chui_inputs/chui_date/styles.css +163 -128
  46. package/framework/components/chui_inputs/chui_email/email.js +61 -61
  47. package/framework/components/chui_inputs/chui_email/styles.css +69 -71
  48. package/framework/components/chui_inputs/chui_file/file.js +76 -76
  49. package/framework/components/chui_inputs/chui_file/styles.css +99 -99
  50. package/framework/components/chui_inputs/chui_multi_combo_box/multi_combo_box.js +295 -295
  51. package/framework/components/chui_inputs/chui_multi_combo_box/styles.css +212 -235
  52. package/framework/components/chui_inputs/chui_number/number.js +108 -108
  53. package/framework/components/chui_inputs/chui_number/styles.css +84 -84
  54. package/framework/components/chui_inputs/chui_password/password.js +99 -99
  55. package/framework/components/chui_inputs/chui_password/styles.css +97 -97
  56. package/framework/components/chui_inputs/chui_radio_button/radio_button.js +45 -45
  57. package/framework/components/chui_inputs/chui_radio_button/styles.css +76 -73
  58. package/framework/components/chui_inputs/chui_select_box/select_box.js +187 -170
  59. package/framework/components/chui_inputs/chui_select_box/styles.css +123 -117
  60. package/framework/components/chui_inputs/chui_text/styles.css +83 -84
  61. package/framework/components/chui_inputs/chui_text/text.js +91 -91
  62. package/framework/components/chui_inputs/chui_text_area/styles.css +57 -57
  63. package/framework/components/chui_inputs/chui_text_area/text_area.js +61 -61
  64. package/framework/components/chui_inputs/chui_toggle/styles.css +66 -61
  65. package/framework/components/chui_inputs/chui_toggle/toggle.js +36 -36
  66. package/framework/components/chui_label/label.js +54 -54
  67. package/framework/components/chui_label/styles.css +11 -11
  68. package/framework/components/chui_media/audio.js +908 -908
  69. package/framework/components/chui_media/audio_styles.css +458 -458
  70. package/framework/components/chui_media/image.js +105 -105
  71. package/framework/components/chui_media/image_styles.css +61 -61
  72. package/framework/components/chui_media/video.js +248 -248
  73. package/framework/components/chui_media/video_styles.css +160 -160
  74. package/framework/components/chui_menu_bar/menu_bar.js +66 -74
  75. package/framework/components/chui_menu_bar/styles.css +114 -76
  76. package/framework/components/chui_modal/modal.js +142 -135
  77. package/framework/components/chui_modal/styles.css +36 -36
  78. package/framework/components/chui_notification/notification.js +72 -72
  79. package/framework/components/chui_notification/notification_download.js +78 -78
  80. package/framework/components/chui_notification/notification_download_progress.css +119 -123
  81. package/framework/components/chui_notification/notification_download_progress.js +105 -105
  82. package/framework/components/chui_notification/notification_update.js +54 -54
  83. package/framework/components/chui_notification/styles.css +91 -91
  84. package/framework/components/chui_notification/styles_download.css +85 -85
  85. package/framework/components/chui_notification/styles_update.css +73 -73
  86. package/framework/components/chui_paragraph/paragraph.js +14 -14
  87. package/framework/components/chui_paragraph/styles.css +6 -6
  88. package/framework/components/chui_popups/popups.js +250 -250
  89. package/framework/components/chui_popups/styles.css +129 -115
  90. package/framework/components/chui_progress_bar/progress_bar.js +28 -28
  91. package/framework/components/chui_progress_bar/styles.css +28 -28
  92. package/framework/components/chui_radio_group/radio_group.js +57 -57
  93. package/framework/components/chui_radio_group/styles.css +3 -3
  94. package/framework/components/chui_slideshow/slideshow.js +75 -75
  95. package/framework/components/chui_slideshow/styles.css +94 -85
  96. package/framework/components/chui_spinner/spinner.js +45 -45
  97. package/framework/components/chui_spinner/styles.css +23 -23
  98. package/framework/components/chui_table/styles.css +42 -42
  99. package/framework/components/chui_table/table.js +234 -234
  100. package/framework/components/chui_tabs/chui_tabs.js +77 -77
  101. package/framework/components/chui_tabs/styles.css +54 -48
  102. package/framework/components/chui_text_editor/styles.css +217 -217
  103. package/framework/components/chui_text_editor/text_editor.js +144 -144
  104. package/framework/components/chui_text_editor/text_editor_panel.js +568 -568
  105. package/framework/components/chui_tree_view/styles.css +81 -75
  106. package/framework/components/chui_tree_view/tree_view.js +90 -90
  107. package/framework/components/chui_webview/styles.css +27 -27
  108. package/framework/components/chui_webview/webview.js +103 -103
  109. package/framework/components/telegram_bot/chui_telegram_bot.js +183 -183
  110. package/framework/modules/chui_animations/animations.js +121 -121
  111. package/framework/modules/chui_animations/styles.css +79 -79
  112. package/framework/modules/chui_fonts.js +7129 -6974
  113. package/framework/modules/chui_functions.js +106 -78
  114. package/framework/modules/chui_logger/chui_logger.js +53 -53
  115. package/framework/modules/chui_page/page.js +86 -86
  116. package/framework/modules/chui_page/styles.css +9 -9
  117. package/framework/tray_bar/chui_menu_items.js +48 -48
  118. package/index.js +570 -555
  119. package/package.json +51 -46
@@ -1,459 +1,459 @@
1
- chui_ap_main {
2
- display: flex;
3
- flex-direction: column;
4
- border-radius: var(--border_radius);
5
- --seek-before-width: 0%;
6
- --volume-before-width: 0%;
7
- min-width: 450px;
8
- height: max-content;
9
- }
10
-
11
- chui_ap_block {
12
- display: flex;
13
- flex-direction: column;
14
- width: -webkit-fill-available;
15
- backdrop-filter: var(--global_blur);
16
- border-radius: var(--border_radius);
17
- background: var(--ap_main_background);
18
- border: none;
19
- height: max-content;
20
- }
21
-
22
- /* Блок информация */
23
- chui_ap_info {
24
- display: flex;
25
- margin: 8px;
26
- }
27
-
28
- chui_ap_track_title {
29
- color: var(--text_color);
30
- margin: var(--margin);
31
- }
32
-
33
- chui_ap_seek_block {
34
- display: flex;
35
- width: -webkit-fill-available;
36
- align-items: center;
37
- margin: 3px;
38
- }
39
-
40
- chui_ap_seek_buf {
41
- width: 0;
42
- height: 8px;
43
- border-radius: 8px;
44
- background: var(--ap_slider_buf_background);
45
- position: absolute;
46
- }
47
-
48
- #chui_ap_seek {
49
- margin: 0;
50
- position: relative;
51
- -webkit-appearance: none;
52
- border-radius: 8px;
53
- width: 100%;
54
- height: 8px;
55
- cursor: pointer;
56
- outline: none;
57
- background: var(--ap_slider_background);
58
- float: left;
59
- z-index: 1
60
- }
61
-
62
- #chui_ap_seek::-webkit-slider-runnable-track {
63
- width: 100%;
64
- height: 8px;
65
- border-radius: 8px
66
- }
67
-
68
- #chui_ap_seek::before {
69
- transition: all 0s;
70
- position: absolute;
71
- content: '';
72
- left: 0;
73
- width: var(--seek-before-width);
74
- height: 8px;
75
- border-radius: 8px;
76
- background: var(--blue_prime_background);
77
- cursor: pointer;
78
- }
79
-
80
- #chui_ap_seek::-webkit-slider-thumb {
81
- -webkit-appearance: none;
82
- border: none;
83
- height: 0px;
84
- width: 0px;
85
- border-radius: 50%;
86
- background-color: var(--blue_prime_background);
87
- cursor: pointer;
88
- margin: -4px 0 0 0
89
- }
90
-
91
- #chui_ap_seek:focus {
92
- outline: none;
93
- border: none;
94
- }
95
-
96
- #chui_ap_seek:focus::-webkit-slider-runnable-track {
97
- outline: none;
98
- border: none;
99
- }
100
-
101
- /* УПРАВЛЕНИЕ ГРОМКОСТЬЮ */
102
- chui_ap_volume_block {
103
- display: flex;
104
- margin-left: auto
105
- }
106
-
107
- #chui_ap_volume {
108
- position: relative;
109
- -webkit-appearance: none;
110
- border-radius: 8px;
111
- width: 100px;
112
- height: 8px;
113
- cursor: pointer;
114
- outline: none;
115
- background: var(--ap_slider_background);
116
- float: left;
117
- z-index: 1;
118
- margin: auto 6px;
119
- }
120
-
121
- #chui_ap_volume:disabled:before {
122
- background: var(--ap_slider_buf_background)
123
- }
124
-
125
- #chui_ap_volume::-webkit-slider-runnable-track {
126
- width: 100%;
127
- height: 8px;
128
- border-radius: 8px
129
- }
130
-
131
- #chui_ap_volume::before {
132
- transition: all 0s;
133
- position: absolute;
134
- content: '';
135
- left: 0;
136
- width: var(--volume-before-width);
137
- height: 8px;
138
- border-radius: 8px;
139
- background: var(--blue_prime_background);
140
- cursor: pointer;
141
- }
142
-
143
- #chui_ap_volume::-webkit-slider-thumb {
144
- -webkit-appearance: none;
145
- border: none;
146
- height: 0px;
147
- width: 0px;
148
- border-radius: 50%;
149
- background-color: var(--blue_prime_background);
150
- cursor: pointer;
151
- margin: -4px 0 0 0
152
- }
153
-
154
- #chui_ap_volume:focus {
155
- outline: none;
156
- border: none;
157
- }
158
-
159
- #chui_ap_volume:focus::-webkit-slider-runnable-track {
160
- outline: none;
161
- border: none;
162
- }
163
-
164
- /* Блок управления */
165
- chui_ap_controls {
166
- display: flex;
167
- justify-content: left;
168
- margin: 8px 12px 0 12px;
169
- align-items: center
170
- }
171
-
172
- /* КНОПКИ */
173
- chui_ap_play_pause, chui_ap_next, chui_ap_prev {
174
- display: flex
175
- }
176
-
177
- .pin_bottom {
178
- position: absolute;
179
- bottom: 0;
180
- left: 0;
181
- right: 0;
182
- margin: var(--margin);
183
- }
184
-
185
- .pin_top {
186
- position: absolute;
187
- top: 0;
188
- left: 0;
189
- right: 0;
190
- margin: var(--margin);
191
- }
192
-
193
- /* Плейлист */
194
- chui_playlist_main {
195
- display: flex;
196
- height: calc(100% - 114px);
197
- flex-direction: column;
198
- width: -webkit-fill-available;
199
- backdrop-filter: var(--global_blur);
200
- border-radius: var(--border_radius);
201
- background: var(--ap_main_background);
202
- border: none;
203
- margin-top: var(--margin);
204
- padding: 10px;
205
- }
206
- chui_playlist_search {
207
- display: flex;
208
- min-height: max-content;
209
- flex-direction: row;
210
- width: -webkit-fill-available;
211
- border: none;
212
- height: 35px;
213
- }
214
- .chui_playlist_search_input {
215
- display: flex;
216
- width: -webkit-fill-available;
217
- height: max-content;
218
- margin-right: 10px;
219
- color: var(--text_color);
220
- align-items: center;
221
- position: relative;
222
- padding: var(--main_padding);
223
- border: none;
224
- box-shadow: 0 0 1px 0 var(--element_background_2);
225
- background: var(--ap_main_background_2);
226
- border-radius: var(--border_radius);
227
- }
228
- .chui_playlist_search_input:focus {
229
- border: none;
230
- box-shadow: 0 0 2px 1px var(--blue_prime_background);
231
- }
232
-
233
- chui_playlist_list {
234
- overflow: hidden overlay;
235
- display: flex;
236
- height: -webkit-fill-available;
237
- flex-direction: column;
238
- width: -webkit-fill-available;
239
- border-radius: var(--border_radius);
240
- background: var(--ap_main_background_2);
241
- border: none;
242
- box-shadow: 0 0 1px 0 var(--element_background_2);
243
- margin-top: 10px;
244
- padding: 8px;
245
- }
246
-
247
- chui_playlist_list::-webkit-scrollbar {
248
- width: 6px;
249
- }
250
-
251
- chui_playlist_list::-webkit-scrollbar-track {
252
- background-color: transparent;
253
- margin: var(--border_radius);
254
- }
255
-
256
- chui_playlist_list::-webkit-scrollbar-thumb {
257
- border-radius: var(--border_radius);
258
- background: var(--blue_prime_background_trans);
259
- }
260
-
261
- chui_playlist_list::-webkit-scrollbar-thumb:hover {
262
- background: var(--blue_prime_background)
263
- }
264
-
265
- .chui_track_active {
266
- color: var(--text_color_hover);
267
- background: var(--blue_prime_background_trans);
268
- }
269
-
270
- chui_track {
271
- display: flex;
272
- padding: var(--test_padding);
273
- color: var(--text_color);
274
- border-radius: var(--border_radius);
275
- height: max-content;
276
- align-items: center;
277
- justify-content: space-between;
278
- }
279
-
280
- chui_track:hover {
281
- background: var(--blue_prime_background);
282
- }
283
-
284
- chui_track:hover chui_track_duration {
285
- color: var(--text_color_hover);
286
- }
287
-
288
- chui_track:hover chui_track_name {
289
- color: var(--text_color_hover);
290
- }
291
-
292
- chui_track_name {
293
- margin-left: 2px;
294
- }
295
-
296
- chui_track_duration {
297
- margin-right: 2px;
298
- }
299
-
300
- chui_playlist_open_folder {
301
- display: flex;
302
- height: 35px;
303
- width: 35px;
304
- justify-content: center;
305
- align-items: center;
306
- border-radius: var(--border_radius);
307
- background: var(--ap_main_background_2);
308
- }
309
-
310
- chui_playlist_open_folder:hover {
311
- background: var(--blue_prime_background);
312
- }
313
-
314
- chui_playlist_open_folder:hover chui_icon {
315
- color: var(--text_color_hover);
316
- }
317
-
318
- chui_ap_equalizer_main {
319
- display: flex;
320
- flex-direction: column;
321
- width: max-content;
322
- height: max-content;
323
- }
324
-
325
- chui_eq_slider_main {
326
- display: flex;
327
- flex-direction: column;
328
- align-items: center;
329
- justify-content: center;
330
- height: 200px;
331
- width: 40px;
332
- }
333
-
334
- chui_ap_equalizer_controls {
335
- display: flex;
336
- flex-direction: row;
337
- align-items: center;
338
- justify-content: space-between;
339
- }
340
-
341
- chui_ap_equalizer_block {
342
- display: flex;
343
- flex-direction: row;
344
- align-items: center;
345
- justify-content: center;
346
- }
347
-
348
- chui_ap_equalizer_preamp_block {
349
- display: flex;
350
- align-items: center;
351
- justify-content: center;
352
- background: var(--element_background);
353
- border: none;
354
- border-radius: var(--border_radius);
355
- padding: 0 8px;
356
- margin: var(--margin);
357
- }
358
-
359
- chui_ap_equalizer_band_block {
360
- display: flex;
361
- flex-direction: row;
362
- align-items: center;
363
- justify-content: center;
364
- background: var(--element_background);
365
- border: none;
366
- border-radius: var(--border_radius);
367
- padding: 0 8px;
368
- margin: var(--margin);
369
- }
370
-
371
- slider_label {
372
- color: var(--text_color);
373
- font-size: var(--font_labels_size);
374
- font-weight: 500;
375
- }
376
-
377
- /* DISABLED STYLES */
378
- .chui_ap_equalizer_disabled {
379
- cursor: not-allowed;
380
- background: var(--element_background_disabled);
381
- border: none;
382
- box-shadow: 0 0 1px 0 var(--element_background_disabled_2);
383
- }
384
-
385
- /* УПРАВЛЕНИЕ ГРОМКОСТЬЮ */
386
- chui_ap_volume_block {
387
- display: flex;
388
- margin-left: auto
389
- }
390
-
391
- .eq_slider_test {
392
- position: relative;
393
- border-radius: 8px;
394
- cursor: pointer;
395
- outline: none;
396
- background: var(--ap_slider_background);
397
- margin: 70px 8px;
398
- -webkit-appearance: none;
399
- width: auto;
400
- transform: rotate(-90deg);
401
- }
402
-
403
- .eq_slider_test::before {
404
- transition: all 0s;
405
- position: absolute;
406
- content: '';
407
- height: 100%;
408
- border-radius: 8px;
409
- background: var(--blue_prime_background);
410
- cursor: pointer;
411
- width: var(--fx-before-width);
412
- left: 0;
413
- }
414
-
415
- .eq_slider_test:disabled:before {
416
- background: var(--ap_slider_buf_background)
417
- }
418
-
419
- .eq_slider_test::-webkit-slider-runnable-track {
420
- width: 100%;
421
- height: 8px;
422
- border-radius: 8px
423
- }
424
-
425
-
426
-
427
- .eq_slider_test::-webkit-slider-thumb {
428
- border: none;
429
- -webkit-appearance: none;
430
- height: 0px;
431
- width: 0px;
432
- border-radius: 50%;
433
- background-color: var(--blue_prime_background);
434
- cursor: pointer;
435
- margin: -4px 0 0 0
436
- }
437
-
438
- .eq_slider_test:focus {
439
- outline: none;
440
- border: none;
441
- }
442
-
443
- .eq_slider_test:focus::-webkit-slider-runnable-track {
444
- outline: none;
445
- border: none;
446
- }
447
-
448
- chui_ap_fx_icon, chui_ap_volume_icon, chui_ap_next, chui_ap_play_pause, chui_ap_prev {
449
- border-radius: var(--border_radius);
450
- padding: 2px;
451
- }
452
-
453
- chui_ap_fx_icon:hover, chui_ap_volume_icon:hover, chui_ap_next:hover, chui_ap_play_pause:hover, chui_ap_prev:hover {
454
- background: var(--blue_prime_background);
455
- }
456
-
457
- chui_ap_fx_icon:hover chui_icon, chui_ap_volume_icon:hover chui_icon, chui_ap_next:hover chui_icon, chui_ap_play_pause:hover chui_icon, chui_ap_prev:hover chui_icon {
458
- color: var(--text_color_hover);
1
+ chui_ap_main {
2
+ display: flex;
3
+ flex-direction: column;
4
+ border-radius: var(--border_radius);
5
+ --seek-before-width: 0%;
6
+ --volume-before-width: 0%;
7
+ min-width: 450px;
8
+ height: max-content;
9
+ }
10
+
11
+ chui_ap_block {
12
+ display: flex;
13
+ flex-direction: column;
14
+ width: -webkit-fill-available;
15
+ backdrop-filter: var(--global_blur);
16
+ border-radius: var(--border_radius);
17
+ background: var(--ap_main_background);
18
+ border: none;
19
+ height: max-content;
20
+ }
21
+
22
+ /* Блок информация */
23
+ chui_ap_info {
24
+ display: flex;
25
+ margin: 8px;
26
+ }
27
+
28
+ chui_ap_track_title {
29
+ color: var(--text_color);
30
+ margin: var(--margin);
31
+ }
32
+
33
+ chui_ap_seek_block {
34
+ display: flex;
35
+ width: -webkit-fill-available;
36
+ align-items: center;
37
+ margin: 3px;
38
+ }
39
+
40
+ chui_ap_seek_buf {
41
+ width: 0;
42
+ height: 8px;
43
+ border-radius: 8px;
44
+ background: var(--ap_slider_buf_background);
45
+ position: absolute;
46
+ }
47
+
48
+ #chui_ap_seek {
49
+ margin: 0;
50
+ position: relative;
51
+ -webkit-appearance: none;
52
+ border-radius: 8px;
53
+ width: 100%;
54
+ height: 8px;
55
+ cursor: pointer;
56
+ outline: none;
57
+ background: var(--ap_slider_background);
58
+ float: left;
59
+ z-index: 1
60
+ }
61
+
62
+ #chui_ap_seek::-webkit-slider-runnable-track {
63
+ width: 100%;
64
+ height: 8px;
65
+ border-radius: 8px
66
+ }
67
+
68
+ #chui_ap_seek::before {
69
+ transition: all 0s;
70
+ position: absolute;
71
+ content: '';
72
+ left: 0;
73
+ width: var(--seek-before-width);
74
+ height: 8px;
75
+ border-radius: 8px;
76
+ background: var(--blue_prime_background);
77
+ cursor: pointer;
78
+ }
79
+
80
+ #chui_ap_seek::-webkit-slider-thumb {
81
+ -webkit-appearance: none;
82
+ border: none;
83
+ height: 0px;
84
+ width: 0px;
85
+ border-radius: 50%;
86
+ background-color: var(--blue_prime_background);
87
+ cursor: pointer;
88
+ margin: -4px 0 0 0
89
+ }
90
+
91
+ #chui_ap_seek:focus {
92
+ outline: none;
93
+ border: none;
94
+ }
95
+
96
+ #chui_ap_seek:focus::-webkit-slider-runnable-track {
97
+ outline: none;
98
+ border: none;
99
+ }
100
+
101
+ /* УПРАВЛЕНИЕ ГРОМКОСТЬЮ */
102
+ chui_ap_volume_block {
103
+ display: flex;
104
+ margin-left: auto
105
+ }
106
+
107
+ #chui_ap_volume {
108
+ position: relative;
109
+ -webkit-appearance: none;
110
+ border-radius: 8px;
111
+ width: 100px;
112
+ height: 8px;
113
+ cursor: pointer;
114
+ outline: none;
115
+ background: var(--ap_slider_background);
116
+ float: left;
117
+ z-index: 1;
118
+ margin: auto 6px;
119
+ }
120
+
121
+ #chui_ap_volume:disabled:before {
122
+ background: var(--ap_slider_buf_background)
123
+ }
124
+
125
+ #chui_ap_volume::-webkit-slider-runnable-track {
126
+ width: 100%;
127
+ height: 8px;
128
+ border-radius: 8px
129
+ }
130
+
131
+ #chui_ap_volume::before {
132
+ transition: all 0s;
133
+ position: absolute;
134
+ content: '';
135
+ left: 0;
136
+ width: var(--volume-before-width);
137
+ height: 8px;
138
+ border-radius: 8px;
139
+ background: var(--blue_prime_background);
140
+ cursor: pointer;
141
+ }
142
+
143
+ #chui_ap_volume::-webkit-slider-thumb {
144
+ -webkit-appearance: none;
145
+ border: none;
146
+ height: 0px;
147
+ width: 0px;
148
+ border-radius: 50%;
149
+ background-color: var(--blue_prime_background);
150
+ cursor: pointer;
151
+ margin: -4px 0 0 0
152
+ }
153
+
154
+ #chui_ap_volume:focus {
155
+ outline: none;
156
+ border: none;
157
+ }
158
+
159
+ #chui_ap_volume:focus::-webkit-slider-runnable-track {
160
+ outline: none;
161
+ border: none;
162
+ }
163
+
164
+ /* Блок управления */
165
+ chui_ap_controls {
166
+ display: flex;
167
+ justify-content: left;
168
+ margin: 8px 12px 0 12px;
169
+ align-items: center
170
+ }
171
+
172
+ /* КНОПКИ */
173
+ chui_ap_play_pause, chui_ap_next, chui_ap_prev {
174
+ display: flex
175
+ }
176
+
177
+ .pin_bottom {
178
+ position: absolute;
179
+ bottom: 0;
180
+ left: 0;
181
+ right: 0;
182
+ margin: var(--margin);
183
+ }
184
+
185
+ .pin_top {
186
+ position: absolute;
187
+ top: 0;
188
+ left: 0;
189
+ right: 0;
190
+ margin: var(--margin);
191
+ }
192
+
193
+ /* Плейлист */
194
+ chui_playlist_main {
195
+ display: flex;
196
+ height: calc(100% - 114px);
197
+ flex-direction: column;
198
+ width: -webkit-fill-available;
199
+ backdrop-filter: var(--global_blur);
200
+ border-radius: var(--border_radius);
201
+ background: var(--ap_main_background);
202
+ border: none;
203
+ margin-top: var(--margin);
204
+ padding: 10px;
205
+ }
206
+ chui_playlist_search {
207
+ display: flex;
208
+ min-height: max-content;
209
+ flex-direction: row;
210
+ width: -webkit-fill-available;
211
+ border: none;
212
+ height: 35px;
213
+ }
214
+ .chui_playlist_search_input {
215
+ display: flex;
216
+ width: -webkit-fill-available;
217
+ height: max-content;
218
+ margin-right: 10px;
219
+ color: var(--text_color);
220
+ align-items: center;
221
+ position: relative;
222
+ padding: var(--main_padding);
223
+ border: none;
224
+ box-shadow: 0 0 1px 0 var(--border_color);
225
+ background: var(--ap_main_background_2);
226
+ border-radius: var(--border_radius);
227
+ }
228
+ .chui_playlist_search_input:focus {
229
+ border: none;
230
+ box-shadow: 0 0 2px 1px var(--blue_prime_background);
231
+ }
232
+
233
+ chui_playlist_list {
234
+ overflow: hidden overlay;
235
+ display: flex;
236
+ height: -webkit-fill-available;
237
+ flex-direction: column;
238
+ width: -webkit-fill-available;
239
+ border-radius: var(--border_radius);
240
+ background: var(--ap_main_background_2);
241
+ border: none;
242
+ box-shadow: 0 0 1px 0 var(--border_color);
243
+ margin-top: 10px;
244
+ padding: 8px;
245
+ }
246
+
247
+ chui_playlist_list::-webkit-scrollbar {
248
+ width: 6px;
249
+ }
250
+
251
+ chui_playlist_list::-webkit-scrollbar-track {
252
+ background-color: transparent;
253
+ margin: var(--border_radius);
254
+ }
255
+
256
+ chui_playlist_list::-webkit-scrollbar-thumb {
257
+ border-radius: var(--border_radius);
258
+ background: var(--blue_prime_background_trans);
259
+ }
260
+
261
+ chui_playlist_list::-webkit-scrollbar-thumb:hover {
262
+ background: var(--blue_prime_background)
263
+ }
264
+
265
+ .chui_track_active {
266
+ color: var(--text_color_hover);
267
+ background: var(--blue_prime_background_trans);
268
+ }
269
+
270
+ chui_track {
271
+ display: flex;
272
+ padding: var(--test_padding);
273
+ color: var(--text_color);
274
+ border-radius: var(--border_radius);
275
+ height: max-content;
276
+ align-items: center;
277
+ justify-content: space-between;
278
+ }
279
+
280
+ chui_track:hover {
281
+ background: var(--blue_prime_background);
282
+ }
283
+
284
+ chui_track:hover chui_track_duration {
285
+ color: var(--text_color_hover);
286
+ }
287
+
288
+ chui_track:hover chui_track_name {
289
+ color: var(--text_color_hover);
290
+ }
291
+
292
+ chui_track_name {
293
+ margin-left: 2px;
294
+ }
295
+
296
+ chui_track_duration {
297
+ margin-right: 2px;
298
+ }
299
+
300
+ chui_playlist_open_folder {
301
+ display: flex;
302
+ height: 35px;
303
+ width: 35px;
304
+ justify-content: center;
305
+ align-items: center;
306
+ border-radius: var(--border_radius);
307
+ background: var(--ap_main_background_2);
308
+ }
309
+
310
+ chui_playlist_open_folder:hover {
311
+ background: var(--blue_prime_background);
312
+ }
313
+
314
+ chui_playlist_open_folder:hover chui_icon {
315
+ color: var(--text_color_hover);
316
+ }
317
+
318
+ chui_ap_equalizer_main {
319
+ display: flex;
320
+ flex-direction: column;
321
+ width: max-content;
322
+ height: max-content;
323
+ }
324
+
325
+ chui_eq_slider_main {
326
+ display: flex;
327
+ flex-direction: column;
328
+ align-items: center;
329
+ justify-content: center;
330
+ height: 200px;
331
+ width: 40px;
332
+ }
333
+
334
+ chui_ap_equalizer_controls {
335
+ display: flex;
336
+ flex-direction: row;
337
+ align-items: center;
338
+ justify-content: space-between;
339
+ }
340
+
341
+ chui_ap_equalizer_block {
342
+ display: flex;
343
+ flex-direction: row;
344
+ align-items: center;
345
+ justify-content: center;
346
+ }
347
+
348
+ chui_ap_equalizer_preamp_block {
349
+ display: flex;
350
+ align-items: center;
351
+ justify-content: center;
352
+ background: var(--element_background);
353
+ border: none;
354
+ border-radius: var(--border_radius);
355
+ padding: 0 8px;
356
+ margin: var(--margin);
357
+ }
358
+
359
+ chui_ap_equalizer_band_block {
360
+ display: flex;
361
+ flex-direction: row;
362
+ align-items: center;
363
+ justify-content: center;
364
+ background: var(--element_background);
365
+ border: none;
366
+ border-radius: var(--border_radius);
367
+ padding: 0 8px;
368
+ margin: var(--margin);
369
+ }
370
+
371
+ slider_label {
372
+ color: var(--text_color);
373
+ font-size: var(--font_labels_size);
374
+ font-weight: 500;
375
+ }
376
+
377
+ /* DISABLED STYLES */
378
+ .chui_ap_equalizer_disabled {
379
+ cursor: not-allowed;
380
+ background: var(--element_background_disabled);
381
+ border: none;
382
+ box-shadow: 0 0 1px 0 var(--border_color);
383
+ }
384
+
385
+ /* УПРАВЛЕНИЕ ГРОМКОСТЬЮ */
386
+ chui_ap_volume_block {
387
+ display: flex;
388
+ margin-left: auto
389
+ }
390
+
391
+ .eq_slider_test {
392
+ position: relative;
393
+ border-radius: 8px;
394
+ cursor: pointer;
395
+ outline: none;
396
+ background: var(--ap_slider_background);
397
+ margin: 70px 8px;
398
+ -webkit-appearance: none;
399
+ width: auto;
400
+ transform: rotate(-90deg);
401
+ }
402
+
403
+ .eq_slider_test::before {
404
+ transition: all 0s;
405
+ position: absolute;
406
+ content: '';
407
+ height: 100%;
408
+ border-radius: 8px;
409
+ background: var(--blue_prime_background);
410
+ cursor: pointer;
411
+ width: var(--fx-before-width);
412
+ left: 0;
413
+ }
414
+
415
+ .eq_slider_test:disabled:before {
416
+ background: var(--ap_slider_buf_background)
417
+ }
418
+
419
+ .eq_slider_test::-webkit-slider-runnable-track {
420
+ width: 100%;
421
+ height: 8px;
422
+ border-radius: 8px
423
+ }
424
+
425
+
426
+
427
+ .eq_slider_test::-webkit-slider-thumb {
428
+ border: none;
429
+ -webkit-appearance: none;
430
+ height: 0px;
431
+ width: 0px;
432
+ border-radius: 50%;
433
+ background-color: var(--blue_prime_background);
434
+ cursor: pointer;
435
+ margin: -4px 0 0 0
436
+ }
437
+
438
+ .eq_slider_test:focus {
439
+ outline: none;
440
+ border: none;
441
+ }
442
+
443
+ .eq_slider_test:focus::-webkit-slider-runnable-track {
444
+ outline: none;
445
+ border: none;
446
+ }
447
+
448
+ chui_ap_fx_icon, chui_ap_volume_icon, chui_ap_next, chui_ap_play_pause, chui_ap_prev {
449
+ border-radius: var(--border_radius);
450
+ padding: 2px;
451
+ }
452
+
453
+ chui_ap_fx_icon:hover, chui_ap_volume_icon:hover, chui_ap_next:hover, chui_ap_play_pause:hover, chui_ap_prev:hover {
454
+ background: var(--blue_prime_background);
455
+ }
456
+
457
+ chui_ap_fx_icon:hover chui_icon, chui_ap_volume_icon:hover chui_icon, chui_ap_next:hover chui_icon, chui_ap_play_pause:hover chui_icon, chui_ap_prev:hover chui_icon {
458
+ color: var(--text_color_hover);
459
459
  }