@uploadcare/file-uploader 1.24.4 → 1.25.0-alpha.0

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 (69) hide show
  1. package/dist/abstract/loadFileUploaderFrom.js +4 -0
  2. package/dist/env.js +1 -1
  3. package/dist/index.css +480 -530
  4. package/dist/index.d.ts +868 -539
  5. package/dist/index.js +7615 -6044
  6. package/dist/index.layered.css +2723 -0
  7. package/dist/index.ssr.js +533 -762
  8. package/dist/lit.d.ts +1 -0
  9. package/dist/lit.js +28 -0
  10. package/dist/locales/file-uploader/ar.js +1 -1
  11. package/dist/locales/file-uploader/az.js +1 -1
  12. package/dist/locales/file-uploader/ca.js +1 -1
  13. package/dist/locales/file-uploader/cs.js +1 -1
  14. package/dist/locales/file-uploader/da.js +1 -1
  15. package/dist/locales/file-uploader/de.js +1 -1
  16. package/dist/locales/file-uploader/el.js +1 -1
  17. package/dist/locales/file-uploader/en.js +1 -1
  18. package/dist/locales/file-uploader/es.js +1 -1
  19. package/dist/locales/file-uploader/et.js +1 -1
  20. package/dist/locales/file-uploader/fi.js +1 -1
  21. package/dist/locales/file-uploader/fr.js +1 -1
  22. package/dist/locales/file-uploader/he.js +1 -1
  23. package/dist/locales/file-uploader/hy.js +1 -1
  24. package/dist/locales/file-uploader/is.js +1 -1
  25. package/dist/locales/file-uploader/it.js +1 -1
  26. package/dist/locales/file-uploader/ja.js +1 -1
  27. package/dist/locales/file-uploader/ka.js +1 -1
  28. package/dist/locales/file-uploader/kk.js +1 -1
  29. package/dist/locales/file-uploader/ko.js +1 -1
  30. package/dist/locales/file-uploader/lv.js +1 -1
  31. package/dist/locales/file-uploader/nb.js +1 -1
  32. package/dist/locales/file-uploader/nl.js +2 -2
  33. package/dist/locales/file-uploader/pl.js +1 -1
  34. package/dist/locales/file-uploader/pt.js +1 -1
  35. package/dist/locales/file-uploader/ro.js +1 -1
  36. package/dist/locales/file-uploader/ru.js +1 -1
  37. package/dist/locales/file-uploader/sk.js +1 -1
  38. package/dist/locales/file-uploader/sr.js +1 -1
  39. package/dist/locales/file-uploader/sv.js +1 -1
  40. package/dist/locales/file-uploader/tr.js +1 -1
  41. package/dist/locales/file-uploader/uk.js +1 -1
  42. package/dist/locales/file-uploader/vi.js +1 -1
  43. package/dist/locales/file-uploader/zh-TW.js +1 -1
  44. package/dist/locales/file-uploader/zh.js +1 -1
  45. package/package.json +35 -25
  46. package/web/file-uploader.iife.min.d.ts +872 -543
  47. package/web/file-uploader.iife.min.js +8 -4
  48. package/web/file-uploader.min.d.ts +872 -543
  49. package/web/file-uploader.min.js +7 -4
  50. package/web/uc-basic.layered.min.css +26 -0
  51. package/web/uc-basic.min.css +2 -3
  52. package/web/uc-cloud-image-editor.layered.min.css +26 -0
  53. package/web/uc-cloud-image-editor.min.css +1 -2
  54. package/web/uc-cloud-image-editor.min.d.ts +440 -235
  55. package/web/uc-cloud-image-editor.min.js +7 -4
  56. package/web/uc-file-uploader-inline.layered.min.css +26 -0
  57. package/web/uc-file-uploader-inline.min.css +2 -3
  58. package/web/uc-file-uploader-inline.min.d.ts +872 -543
  59. package/web/uc-file-uploader-inline.min.js +7 -4
  60. package/web/uc-file-uploader-minimal.layered.min.css +26 -0
  61. package/web/uc-file-uploader-minimal.min.css +2 -3
  62. package/web/uc-file-uploader-minimal.min.d.ts +872 -543
  63. package/web/uc-file-uploader-minimal.min.js +7 -4
  64. package/web/uc-file-uploader-regular.layered.min.css +26 -0
  65. package/web/uc-file-uploader-regular.min.css +2 -3
  66. package/web/uc-file-uploader-regular.min.d.ts +872 -543
  67. package/web/uc-file-uploader-regular.min.js +7 -4
  68. package/web/uc-img.min.d.ts +56 -91
  69. package/web/uc-img.min.js +3 -3
package/dist/index.css CHANGED
@@ -1,4 +1,20 @@
1
- /**
1
+
2
+ @keyframes fake-progress-animation {
3
+ from {
4
+ transform: translateX(-100%);
5
+ }
6
+ to {
7
+ transform: translateX(calc(100 / var(--l-fake-progress-width) * 100 * 1%));
8
+ }
9
+ }
10
+ @keyframes uc-spinner-keyframes {
11
+ from {
12
+ transform: rotate(0deg);
13
+ }
14
+ to {
15
+ transform: rotate(360deg);
16
+ }
17
+ }/**
2
18
  * @license
3
19
  * MIT License
4
20
  *
@@ -23,11 +39,9 @@
23
39
  * SOFTWARE.
24
40
  *
25
41
  */
26
- @layer uc, uc.base, uc.components, uc.rules, uc.solutions, uc.post-reset, uc.base, uc.rules, uc.post-reset;
27
42
 
28
43
  /* src/blocks/ActivityHeader/activity-header.css */
29
- @layer uc.components {
30
- uc-activity-header {
44
+ uc-activity-header:not(#\#) {
31
45
  display: flex;
32
46
  justify-content: space-between;
33
47
  gap: var(--uc-padding);
@@ -36,15 +50,13 @@
36
50
  font-weight: 500;
37
51
  font-size: 1em;
38
52
  }
39
- uc-activity-header > * {
53
+ uc-activity-header:not(#\#) > * {
40
54
  display: flex;
41
55
  align-items: center;
42
56
  }
43
- }
44
57
 
45
58
  /* src/blocks/CameraSource/camera-source.css */
46
- @layer uc.components {
47
- uc-camera-source {
59
+ uc-camera-source:not(#\#) {
48
60
  position: relative;
49
61
  display: flex;
50
62
  flex-direction: column;
@@ -55,14 +67,14 @@
55
67
  background-color: var(--uc-background);
56
68
  border-radius: var(--uc-radius);
57
69
  }
58
- [uc-modal] > dialog:has(uc-camera-source[active]) {
70
+ [uc-modal]:not(#\#) > dialog:has(uc-camera-source[active]) {
59
71
  width: 100%;
60
72
  height: 100%;
61
73
  }
62
- uc-camera-source:not(.uc-initialized) .uc-controls {
74
+ uc-camera-source:not(.uc-initialized):not(#\#) .uc-controls {
63
75
  display: none;
64
76
  }
65
- uc-camera-source video {
77
+ uc-camera-source:not(#\#) video {
66
78
  display: block;
67
79
  width: 100%;
68
80
  max-height: 100%;
@@ -71,7 +83,7 @@
71
83
  background-color: var(--uc-muted);
72
84
  border-radius: var(--uc-radius);
73
85
  }
74
- uc-camera-source .uc-toolbar {
86
+ uc-camera-source:not(#\#) .uc-toolbar {
75
87
  position: absolute;
76
88
  bottom: 0;
77
89
  display: flex;
@@ -80,7 +92,7 @@
80
92
  padding: var(--uc-padding);
81
93
  background-color: var(--uc-background);
82
94
  }
83
- uc-camera-source .uc-content {
95
+ uc-camera-source:not(#\#) .uc-content {
84
96
  display: flex;
85
97
  flex: 1;
86
98
  justify-content: center;
@@ -90,7 +102,7 @@
90
102
  padding-top: 0;
91
103
  overflow: hidden;
92
104
  }
93
- uc-camera-source .uc-message-box {
105
+ uc-camera-source:not(#\#) .uc-message-box {
94
106
  display: flex;
95
107
  flex-direction: column;
96
108
  grid-gap: 40px;
@@ -99,11 +111,11 @@
99
111
  padding: 40px 40px 0;
100
112
  color: var(--uc-foreground);
101
113
  }
102
- uc-camera-source .uc-message-box button {
114
+ uc-camera-source:not(#\#) .uc-message-box button {
103
115
  color: var(--uc-primary-foreground);
104
116
  background-color: var(--uc-primary);
105
117
  }
106
- uc-camera-source .uc-shot-btn {
118
+ uc-camera-source:not(#\#) .uc-shot-btn {
107
119
  width: 58px;
108
120
  height: 58px;
109
121
  color: var(--uc-background);
@@ -115,22 +127,22 @@
115
127
  opacity var(--uc-transition),
116
128
  transform var(--uc-transition);
117
129
  }
118
- uc-camera-source .uc-shot-btn:hover {
130
+ uc-camera-source:not(#\#) .uc-shot-btn:hover {
119
131
  transform: scale(1.05);
120
132
  opacity: 1;
121
133
  }
122
- uc-camera-source .uc-shot-btn:active {
134
+ uc-camera-source:not(#\#) .uc-shot-btn:active {
123
135
  transform: scale(1);
124
136
  opacity: 1;
125
137
  }
126
- uc-camera-source .uc-shot-btn[disabled] {
138
+ uc-camera-source:not(#\#) .uc-shot-btn[disabled] {
127
139
  bottom: -80px;
128
140
  }
129
- uc-camera-source .uc-shot-btn uc-icon svg {
141
+ uc-camera-source:not(#\#) .uc-shot-btn uc-icon svg {
130
142
  width: 20px;
131
143
  height: 20px;
132
144
  }
133
- uc-camera-source .uc-controls {
145
+ uc-camera-source:not(#\#) .uc-controls {
134
146
  position: relative;
135
147
  display: flex;
136
148
  align-items: center;
@@ -139,40 +151,40 @@
139
151
  padding: 0 var(--uc-padding) var(--uc-padding);
140
152
  min-height: 74px;
141
153
  }
142
- uc-camera-source .uc-switcher {
154
+ uc-camera-source:not(#\#) .uc-switcher {
143
155
  display: flex;
144
156
  gap: calc(var(--uc-padding) / 2);
145
157
  }
146
- uc-camera-source .uc-switch.uc-active {
158
+ uc-camera-source:not(#\#) .uc-switch.uc-active {
147
159
  background-color: var(--uc-secondary);
148
160
  }
149
- uc-camera-source .uc-camera-actions {
161
+ uc-camera-source:not(#\#) .uc-camera-actions {
150
162
  display: flex;
151
163
  justify-content: center;
152
164
  align-items: center;
153
165
  gap: 5px;
154
166
  }
155
- uc-camera-source .uc-stop-record {
167
+ uc-camera-source:not(#\#) .uc-stop-record {
156
168
  background-color: var(--uc-destructive-foreground-light);
157
169
  opacity: 1;
158
170
  }
159
- :where(uc-camera-source:is(.uc-recording)) .uc-recording-timer uc-icon {
171
+ :where(uc-camera-source:is(.uc-recording)):not(#\#) .uc-recording-timer uc-icon {
160
172
  display: none;
161
173
  }
162
- :where(uc-camera-source:is(.uc-recording)) .uc-recording-timer {
174
+ :where(uc-camera-source:is(.uc-recording)):not(#\#) .uc-recording-timer {
163
175
  pointer-events: none;
164
176
  }
165
- uc-camera-source .uc-recording-timer {
177
+ uc-camera-source:not(#\#) .uc-recording-timer {
166
178
  z-index: 1;
167
179
  position: relative;
168
180
  overflow: hidden;
169
181
  }
170
- :where(uc-camera-source) .uc-recording-timer uc-icon {
182
+ :where(uc-camera-source):not(#\#) .uc-recording-timer uc-icon {
171
183
  width: 10px;
172
184
  height: 10px;
173
185
  margin-right: 10px;
174
186
  }
175
- uc-camera-source .uc-recording-timer .uc-line {
187
+ uc-camera-source:not(#\#) .uc-recording-timer .uc-line {
176
188
  position: absolute;
177
189
  content: "";
178
190
  bottom: 0;
@@ -184,33 +196,31 @@
184
196
  transform-origin: left;
185
197
  transition: transform var(--uc-transition);
186
198
  }
187
- uc-camera-source .uc-btn-microphone {
199
+ uc-camera-source:not(#\#) .uc-btn-microphone {
188
200
  z-index: 1;
189
201
  }
190
- uc-camera-source .uc-select {
202
+ uc-camera-source:not(#\#) .uc-select {
191
203
  display: flex;
192
204
  }
193
- uc-camera-source .uc-audio-select {
205
+ uc-camera-source:not(#\#) .uc-audio-select {
194
206
  width: 98px;
195
207
  }
196
- uc-camera-source .uc-audio-select select {
208
+ uc-camera-source:not(#\#) .uc-audio-select select {
197
209
  width: 100%;
198
210
  }
199
- uc-camera-source .uc-camera-action {
211
+ uc-camera-source:not(#\#) .uc-camera-action {
200
212
  position: absolute;
201
213
  inset: 0 var(--uc-padding) var(--uc-padding);
202
214
  margin: 0 auto;
203
215
  }
204
- }
205
216
 
206
217
  /* src/blocks/CloudImageEditor/src/css/common.css */
207
- @layer uc.solutions {
208
- [uc-cloud-image-editor] {
218
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) {
209
219
  --color-primary-accent: var(--uc-primary);
210
220
  --color-text-base: var(--uc-foreground);
211
221
  --color-text-accent-contrast: var(--uc-background);
212
222
  --color-fill-contrast: var(--uc-background);
213
- --color-modal-backdrop: oklch(0 0 0 / 0.1);
223
+ --color-modal-backdrop: oklch(0% 0 0 / 0.1);
214
224
  --color-image-background: var(--uc-muted);
215
225
  --color-focus-ring: var(--color-primary-accent);
216
226
  --color-crop-guides: var(--uc-foreground);
@@ -242,45 +252,45 @@
242
252
  height: 100%;
243
253
  max-height: 100%;
244
254
  }
245
- [uc-cloud-image-editor] :is([can-handle-paste]:hover, [can-handle-paste]:focus) {
255
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) :is([can-handle-paste]:hover, [can-handle-paste]:focus) {
246
256
  --can-handle-paste: "true";
247
257
  }
248
- [uc-cloud-image-editor] :is([tabindex][focus-visible], [tabindex]:hover, [with-effects][focus-visible], [with-effects]:hover) {
258
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) :is([tabindex][focus-visible], [tabindex]:hover, [with-effects][focus-visible], [with-effects]:hover) {
249
259
  --filter-effect: var(--hover-filter) !important;
250
260
  --opacity-effect: var(--hover-opacity) !important;
251
261
  --color-effect: var(--hover-color-rgb) !important;
252
262
  --background-effect: var(--hover-background) !important;
253
263
  }
254
- [uc-cloud-image-editor] :is([tabindex]:active, [with-effects]:active) {
264
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) :is([tabindex]:active, [with-effects]:active) {
255
265
  --filter-effect: var(--down-filter) !important;
256
266
  --opacity-effect: var(--down-opacity) !important;
257
267
  --color-effect: var(--down-color-rgb) !important;
258
268
  --background-effect: var(--down-background) !important;
259
269
  }
260
- [uc-cloud-image-editor] :is([tabindex][active], [with-effects][active]) {
270
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) :is([tabindex][active], [with-effects][active]) {
261
271
  --filter-effect: var(--active-filter) !important;
262
272
  --opacity-effect: var(--active-opacity) !important;
263
273
  --color-effect: var(--active-color-rgb) !important;
264
274
  --background-effect: var(--active-background) !important;
265
275
  }
266
- [uc-cloud-image-editor] [hidden-scrollbar]::-webkit-scrollbar {
276
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) [hidden-scrollbar]::-webkit-scrollbar {
267
277
  display: none;
268
278
  }
269
- [uc-cloud-image-editor] [hidden-scrollbar] {
279
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) [hidden-scrollbar] {
270
280
  -ms-overflow-style: none;
271
281
  scrollbar-width: none;
272
282
  }
273
- [uc-cloud-image-editor].uc-editor_ON {
283
+ [uc-cloud-image-editor].uc-editor_ON:not(#\#):not(#\#):not(#\#) {
274
284
  --modal-header-opacity: 0;
275
285
  --modal-header-height: 0px;
276
286
  --modal-toolbar-height: calc(var(--size-panel-heading) * 2);
277
287
  }
278
- [uc-cloud-image-editor].uc-editor_OFF {
288
+ [uc-cloud-image-editor].uc-editor_OFF:not(#\#):not(#\#):not(#\#) {
279
289
  --modal-header-opacity: 1;
280
290
  --modal-header-height: var(--size-panel-heading);
281
291
  --modal-toolbar-height: var(--size-panel-heading);
282
292
  }
283
- [uc-cloud-image-editor] > .uc-wrapper {
293
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper {
284
294
  --l-min-img-height: var(--modal-toolbar-height);
285
295
  --l-max-img-height: 100%;
286
296
  --l-edit-button-width: 120px;
@@ -292,19 +302,19 @@
292
302
  overflow: hidden;
293
303
  overflow-y: auto;
294
304
  }
295
- @media only screen and (max-width: 800px) {
296
- [uc-cloud-image-editor] > .uc-wrapper {
305
+ @media only screen and (max-width: 800px) {
306
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper {
297
307
  --l-edit-button-width: 70px;
298
308
  --l-toolbar-horizontal-padding: var(--cldtr-gap-min);
299
309
  }
300
310
  }
301
- [uc-cloud-image-editor] > .uc-wrapper > .uc-viewport {
311
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-viewport {
302
312
  display: flex;
303
313
  align-items: center;
304
314
  justify-content: center;
305
315
  overflow: hidden;
306
316
  }
307
- [uc-cloud-image-editor] > .uc-wrapper > .uc-viewport > .uc-image_container > .uc-image {
317
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-viewport > .uc-image_container > .uc-image {
308
318
  --viewer-image-opacity: 1;
309
319
  position: absolute;
310
320
  top: 0px;
@@ -321,23 +331,23 @@
321
331
  user-select: none;
322
332
  pointer-events: auto;
323
333
  }
324
- [uc-cloud-image-editor] > .uc-wrapper > .uc-viewport > .uc-image_container > .uc-image.uc-image_visible_viewer {
334
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-viewport > .uc-image_container > .uc-image.uc-image_visible_viewer {
325
335
  transition: opacity var(--transition-duration-3) ease-in-out, transform var(--transition-duration-4);
326
336
  }
327
- [uc-cloud-image-editor] > .uc-wrapper > .uc-viewport > .uc-image_container > .uc-image.uc-image_hidden_to_cropper {
337
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-viewport > .uc-image_container > .uc-image.uc-image_hidden_to_cropper {
328
338
  --viewer-image-opacity: 0;
329
339
  background-image: var(--transparent-pixel);
330
340
  transform: scale(1);
331
341
  transition: transform var(--transition-duration-4), opacity var(--transition-duration-3) steps(1, jump-end);
332
342
  pointer-events: none;
333
343
  }
334
- [uc-cloud-image-editor] > .uc-wrapper > .uc-viewport > .uc-image_container > .uc-image.uc-image_hidden_effects {
344
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-viewport > .uc-image_container > .uc-image.uc-image_hidden_effects {
335
345
  --viewer-image-opacity: 0;
336
346
  transform: scale(1);
337
347
  transition: opacity var(--transition-duration-3) cubic-bezier(0.5, 0, 1, 1), transform var(--transition-duration-4);
338
348
  pointer-events: none;
339
349
  }
340
- [uc-cloud-image-editor] > .uc-wrapper > .uc-viewport > .uc-image_container {
350
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-viewport > .uc-image_container {
341
351
  position: relative;
342
352
  display: block;
343
353
  width: 100%;
@@ -345,11 +355,11 @@
345
355
  background-color: var(--color-image-background);
346
356
  transition: var(--transition-duration-3);
347
357
  }
348
- [uc-cloud-image-editor] > .uc-wrapper > .uc-toolbar {
358
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-toolbar {
349
359
  position: relative;
350
360
  transition: 0.3s;
351
361
  }
352
- [uc-cloud-image-editor] > .uc-wrapper > .uc-toolbar > .uc-toolbar_content {
362
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-toolbar > .uc-toolbar_content {
353
363
  position: absolute;
354
364
  bottom: 0px;
355
365
  left: 0px;
@@ -359,7 +369,7 @@
359
369
  min-height: var(--size-panel-heading);
360
370
  background-color: var(--color-fill-contrast);
361
371
  }
362
- [uc-cloud-image-editor] > .uc-wrapper > .uc-toolbar > .uc-toolbar_content.uc-toolbar_content__viewer {
372
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-toolbar > .uc-toolbar_content.uc-toolbar_content__viewer {
363
373
  display: flex;
364
374
  align-items: center;
365
375
  justify-content: space-between;
@@ -367,14 +377,14 @@
367
377
  padding-right: var(--l-toolbar-horizontal-padding);
368
378
  padding-left: var(--l-toolbar-horizontal-padding);
369
379
  }
370
- [uc-cloud-image-editor] > .uc-wrapper > .uc-toolbar > .uc-toolbar_content.uc-toolbar_content__editor {
380
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-toolbar > .uc-toolbar_content.uc-toolbar_content__editor {
371
381
  display: flex;
372
382
  }
373
- [uc-cloud-image-editor] > .uc-wrapper > .uc-viewport > .uc-info_pan {
383
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-viewport > .uc-info_pan {
374
384
  position: absolute;
375
385
  user-select: none;
376
386
  }
377
- [uc-cloud-image-editor] > .uc-wrapper > .uc-viewport > .uc-file_type_outer {
387
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-viewport > .uc-file_type_outer {
378
388
  position: absolute;
379
389
  z-index: 2;
380
390
  display: flex;
@@ -382,10 +392,10 @@
382
392
  transform: translateX(-40px);
383
393
  user-select: none;
384
394
  }
385
- [uc-cloud-image-editor] > .uc-wrapper > .uc-viewport > .uc-file_type_outer > .uc-file_type {
395
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-viewport > .uc-file_type_outer > .uc-file_type {
386
396
  padding: 4px 0.8em;
387
397
  }
388
- [uc-cloud-image-editor] > .uc-wrapper > .uc-network_problems_splash {
398
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-network_problems_splash {
389
399
  position: absolute;
390
400
  z-index: 4;
391
401
  display: flex;
@@ -394,14 +404,14 @@
394
404
  height: 100%;
395
405
  background-color: var(--color-fill-contrast);
396
406
  }
397
- [uc-cloud-image-editor] > .uc-wrapper > .uc-network_problems_splash > .uc-network_problems_content {
407
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-network_problems_splash > .uc-network_problems_content {
398
408
  display: flex;
399
409
  flex: 1;
400
410
  flex-direction: column;
401
411
  align-items: center;
402
412
  justify-content: center;
403
413
  }
404
- [uc-cloud-image-editor] > .uc-wrapper > .uc-network_problems_splash > .uc-network_problems_content > .uc-network_problems_icon {
414
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-network_problems_splash > .uc-network_problems_content > .uc-network_problems_icon {
405
415
  display: flex;
406
416
  align-items: center;
407
417
  justify-content: center;
@@ -411,18 +421,18 @@
411
421
  background-color: var(--uc-muted);
412
422
  border-radius: 50%;
413
423
  }
414
- [uc-cloud-image-editor] > .uc-wrapper > .uc-network_problems_splash > .uc-network_problems_content > .uc-network_problems_text {
424
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-network_problems_splash > .uc-network_problems_content > .uc-network_problems_text {
415
425
  margin-top: var(--cldtr-gap-max);
416
426
  font-size: var(--font-size-ui);
417
427
  color: var(--uc-foreground);
418
428
  }
419
- [uc-cloud-image-editor] > .uc-wrapper > .uc-network_problems_splash > .uc-network_problems_footer {
429
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) > .uc-wrapper > .uc-network_problems_splash > .uc-network_problems_footer {
420
430
  display: flex;
421
431
  align-items: center;
422
432
  justify-content: center;
423
433
  height: var(--size-panel-heading);
424
434
  }
425
- uc-crop-frame > .uc-svg {
435
+ uc-crop-frame:not(#\#):not(#\#):not(#\#) > .uc-svg {
426
436
  position: absolute;
427
437
  top: 0px;
428
438
  left: 0px;
@@ -434,7 +444,7 @@
434
444
  opacity: inherit;
435
445
  transition: var(--transition-duration-3);
436
446
  }
437
- uc-crop-frame > .uc-thumb {
447
+ uc-crop-frame:not(#\#):not(#\#):not(#\#) > .uc-thumb {
438
448
  --idle-color-rgb: var(--color-text-base);
439
449
  --hover-color-rgb: var(--color-primary-accent);
440
450
  --focus-color-rgb: var(--color-primary-accent);
@@ -443,32 +453,32 @@
443
453
  color: var(--color-effect);
444
454
  transition: color var(--transition-duration-3), opacity var(--transition-duration-3);
445
455
  }
446
- uc-crop-frame .uc-thumb--visible {
456
+ uc-crop-frame:not(#\#):not(#\#):not(#\#) .uc-thumb--visible {
447
457
  opacity: 1;
448
458
  pointer-events: auto;
449
459
  }
450
- uc-crop-frame .uc-thumb--hidden {
460
+ uc-crop-frame:not(#\#):not(#\#):not(#\#) .uc-thumb--hidden {
451
461
  opacity: 0;
452
462
  pointer-events: none;
453
463
  }
454
- uc-crop-frame .uc-guides {
464
+ uc-crop-frame:not(#\#):not(#\#):not(#\#) .uc-guides {
455
465
  transition: var(--transition-duration-3);
456
466
  }
457
- uc-crop-frame .uc-guides--hidden {
467
+ uc-crop-frame:not(#\#):not(#\#):not(#\#) .uc-guides--hidden {
458
468
  opacity: 0;
459
469
  }
460
- uc-crop-frame .uc-guides--semi-hidden {
470
+ uc-crop-frame:not(#\#):not(#\#):not(#\#) .uc-guides--semi-hidden {
461
471
  opacity: 0.2;
462
472
  }
463
- uc-crop-frame .uc-guides--visible {
473
+ uc-crop-frame:not(#\#):not(#\#):not(#\#) .uc-guides--visible {
464
474
  opacity: 1;
465
475
  }
466
- uc-editor-button-control,
467
- uc-editor-crop-button-control,
468
- uc-editor-aspect-ratio-button-control,
469
- uc-editor-freeform-button-control,
470
- uc-editor-filter-control,
471
- uc-editor-operation-control {
476
+ uc-editor-button-control:not(#\#):not(#\#):not(#\#),
477
+ uc-editor-crop-button-control:not(#\#):not(#\#):not(#\#),
478
+ uc-editor-aspect-ratio-button-control:not(#\#):not(#\#):not(#\#),
479
+ uc-editor-freeform-button-control:not(#\#):not(#\#):not(#\#),
480
+ uc-editor-filter-control:not(#\#):not(#\#):not(#\#),
481
+ uc-editor-operation-control:not(#\#):not(#\#):not(#\#) {
472
482
  --l-base-min-width: var(--uc-button-size);
473
483
  --l-base-height: var(--uc-button-size);
474
484
  --opacity-effect: var(--idle-opacity);
@@ -489,12 +499,12 @@
489
499
  --down-background: var(--uc-secondary);
490
500
  border-radius: var(--uc-radius);
491
501
  }
492
- uc-editor-button-control > button,
493
- uc-editor-crop-button-control > button,
494
- uc-editor-aspect-ratio-button-control > button,
495
- uc-editor-freeform-button-control > button,
496
- uc-editor-filter-control > button,
497
- uc-editor-operation-control > button {
502
+ uc-editor-button-control:not(#\#):not(#\#):not(#\#) > button,
503
+ uc-editor-crop-button-control:not(#\#):not(#\#):not(#\#) > button,
504
+ uc-editor-aspect-ratio-button-control:not(#\#):not(#\#):not(#\#) > button,
505
+ uc-editor-freeform-button-control:not(#\#):not(#\#):not(#\#) > button,
506
+ uc-editor-filter-control:not(#\#):not(#\#):not(#\#) > button,
507
+ uc-editor-operation-control:not(#\#):not(#\#):not(#\#) > button {
498
508
  all: unset;
499
509
  position: relative;
500
510
  display: grid;
@@ -507,27 +517,27 @@
507
517
  cursor: pointer;
508
518
  transition: var(--l-width-transition);
509
519
  }
510
- uc-editor-freeform-button-control > button {
520
+ uc-editor-freeform-button-control:not(#\#):not(#\#):not(#\#) > button {
511
521
  grid-template-columns: auto var(--l-base-min-width);
512
522
  }
513
- uc-editor-freeform-button-control > button > uc-icon {
523
+ uc-editor-freeform-button-control:not(#\#):not(#\#):not(#\#) > button > uc-icon {
514
524
  margin-left: var(--cldtr-gap-mid-1);
515
525
  width: 10px;
516
526
  }
517
- :where(uc-editor-button-control, uc-editor-crop-button-control, uc-editor-aspect-ratio-button-control, uc-editor-freeform-button-control, uc-editor-filter-control, uc-editor-operation-control) > uc-icon > svg {
527
+ :where(uc-editor-button-control, uc-editor-crop-button-control, uc-editor-aspect-ratio-button-control, uc-editor-freeform-button-control, uc-editor-filter-control, uc-editor-operation-control):not(#\#):not(#\#):not(#\#) > uc-icon > svg {
518
528
  width: var(--size-icon);
519
529
  height: var(--size-icon);
520
530
  }
521
- uc-editor-filter-control > uc-icon.uc-original-icon > svg {
531
+ uc-editor-filter-control:not(#\#):not(#\#):not(#\#) > uc-icon.uc-original-icon > svg {
522
532
  width: 100%;
523
533
  height: 100%;
524
534
  }
525
- uc-editor-button-control.uc-active,
526
- uc-editor-operation-control.uc-active,
527
- uc-editor-crop-button-control.uc-active,
528
- uc-editor-aspect-ratio-button-control.uc-active,
529
- uc-editor-freeform-button-control.uc-active,
530
- uc-editor-filter-control.uc-active {
535
+ uc-editor-button-control.uc-active:not(#\#):not(#\#):not(#\#),
536
+ uc-editor-operation-control.uc-active:not(#\#):not(#\#):not(#\#),
537
+ uc-editor-crop-button-control.uc-active:not(#\#):not(#\#):not(#\#),
538
+ uc-editor-aspect-ratio-button-control.uc-active:not(#\#):not(#\#):not(#\#),
539
+ uc-editor-freeform-button-control.uc-active:not(#\#):not(#\#):not(#\#),
540
+ uc-editor-filter-control.uc-active:not(#\#):not(#\#):not(#\#) {
531
541
  --idle-color-rgb: var(--uc-primary-foreground);
532
542
  --idle-background: var(--uc-primary);
533
543
  --idle-opacity: 1;
@@ -535,37 +545,37 @@
535
545
  --hover-background: var(--uc-primary);
536
546
  --hover-opacity: 1;
537
547
  }
538
- uc-editor-filter-control.uc-not_active .uc-preview[loaded] {
548
+ uc-editor-filter-control.uc-not_active:not(#\#):not(#\#):not(#\#) .uc-preview[loaded] {
539
549
  opacity: 1;
540
550
  }
541
- uc-editor-filter-control.uc-active .uc-preview {
551
+ uc-editor-filter-control.uc-active:not(#\#):not(#\#):not(#\#) .uc-preview {
542
552
  opacity: 0;
543
553
  }
544
- uc-editor-button-control.uc-not_active,
545
- uc-editor-operation-control.uc-not_active,
546
- uc-editor-crop-button-control.uc-not_active,
547
- uc-editor-aspect-ratio-button-control.uc-not_active,
548
- uc-editor-freeform-button-control.uc-not_active,
549
- uc-editor-filter-control.uc-not_active {
554
+ uc-editor-button-control.uc-not_active:not(#\#):not(#\#):not(#\#),
555
+ uc-editor-operation-control.uc-not_active:not(#\#):not(#\#):not(#\#),
556
+ uc-editor-crop-button-control.uc-not_active:not(#\#):not(#\#):not(#\#),
557
+ uc-editor-aspect-ratio-button-control.uc-not_active:not(#\#):not(#\#):not(#\#),
558
+ uc-editor-freeform-button-control.uc-not_active:not(#\#):not(#\#):not(#\#),
559
+ uc-editor-filter-control.uc-not_active:not(#\#):not(#\#):not(#\#) {
550
560
  --idle-color-rgb: var(--uc-secondary-foreground);
551
561
  }
552
- :where(.uc-contrast) uc-editor-button-control.uc-not_active,
553
- :where(.uc-contrast) uc-editor-operation-control.uc-not_active,
554
- :where(.uc-contrast) uc-editor-crop-button-control.uc-not_active,
555
- :where(.uc-contrast) uc-editor-freeform-button-control.uc-not_active,
556
- :where(.uc-contrast) uc-editor-aspect-ratio-button-control.uc-not_active,
557
- :where(.uc-contrast) uc-editor-filter-control.uc-not_active {
562
+ :where(.uc-contrast):not(#\#):not(#\#):not(#\#) uc-editor-button-control.uc-not_active,
563
+ :where(.uc-contrast):not(#\#):not(#\#):not(#\#) uc-editor-operation-control.uc-not_active,
564
+ :where(.uc-contrast):not(#\#):not(#\#):not(#\#) uc-editor-crop-button-control.uc-not_active,
565
+ :where(.uc-contrast):not(#\#):not(#\#):not(#\#) uc-editor-freeform-button-control.uc-not_active,
566
+ :where(.uc-contrast):not(#\#):not(#\#):not(#\#) uc-editor-aspect-ratio-button-control.uc-not_active,
567
+ :where(.uc-contrast):not(#\#):not(#\#):not(#\#) uc-editor-filter-control.uc-not_active {
558
568
  --idle-background: transparent;
559
569
  --hover-background: var(--uc-secondary);
560
570
  outline: 1px solid var(--uc-border);
561
571
  outline-offset: -1px;
562
572
  }
563
- uc-editor-button-control > button::before,
564
- uc-editor-operation-control > button::before,
565
- uc-editor-crop-button-control > button::before,
566
- uc-editor-freeform-button-control > button::before,
567
- uc-editor-aspect-ratio-button-control > button::before,
568
- uc-editor-filter-control > button::before {
573
+ uc-editor-button-control:not(#\#):not(#\#):not(#\#) > button::before,
574
+ uc-editor-operation-control:not(#\#):not(#\#):not(#\#) > button::before,
575
+ uc-editor-crop-button-control:not(#\#):not(#\#):not(#\#) > button::before,
576
+ uc-editor-freeform-button-control:not(#\#):not(#\#):not(#\#) > button::before,
577
+ uc-editor-aspect-ratio-button-control:not(#\#):not(#\#):not(#\#) > button::before,
578
+ uc-editor-filter-control:not(#\#):not(#\#):not(#\#) > button::before {
569
579
  position: absolute;
570
580
  content: "";
571
581
  right: 0;
@@ -577,30 +587,30 @@
577
587
  border-radius: var(--border-radius-editor);
578
588
  transition: var(--transition-duration-3);
579
589
  }
580
- uc-editor-button-control > button .uc-title,
581
- uc-editor-operation-control > button .uc-title,
582
- uc-editor-crop-button-control > button .uc-title,
583
- uc-editor-aspect-ratio-button-control > button .uc-title,
584
- uc-editor-freeform-button-control > button .uc-title,
585
- uc-editor-filter-control > button .uc-title {
590
+ uc-editor-button-control:not(#\#):not(#\#):not(#\#) > button .uc-title,
591
+ uc-editor-operation-control:not(#\#):not(#\#):not(#\#) > button .uc-title,
592
+ uc-editor-crop-button-control:not(#\#):not(#\#):not(#\#) > button .uc-title,
593
+ uc-editor-aspect-ratio-button-control:not(#\#):not(#\#):not(#\#) > button .uc-title,
594
+ uc-editor-freeform-button-control:not(#\#):not(#\#):not(#\#) > button .uc-title,
595
+ uc-editor-filter-control:not(#\#):not(#\#):not(#\#) > button .uc-title {
586
596
  padding-right: var(--cldtr-gap-mid-1);
587
597
  font-size: 0.7em;
588
598
  letter-spacing: 1.004px;
589
599
  text-transform: uppercase;
590
600
  }
591
- uc-editor-freeform-button-control > button .uc-title {
601
+ uc-editor-freeform-button-control:not(#\#):not(#\#):not(#\#) > button .uc-title {
592
602
  padding-left: var(--cldtr-gap-mid-1);
593
603
  padding-right: 0;
594
604
  }
595
- uc-editor-button-control > button uc-icon,
596
- uc-editor-operation-control > button uc-icon,
597
- uc-editor-crop-button-control > button uc-icon,
598
- uc-editor-aspect-ratio-button-control > button uc-icon,
599
- uc-editor-freeform-button-control > button uc-icon,
600
- uc-editor-filter-control > button uc-icon {
605
+ uc-editor-button-control:not(#\#):not(#\#):not(#\#) > button uc-icon,
606
+ uc-editor-operation-control:not(#\#):not(#\#):not(#\#) > button uc-icon,
607
+ uc-editor-crop-button-control:not(#\#):not(#\#):not(#\#) > button uc-icon,
608
+ uc-editor-aspect-ratio-button-control:not(#\#):not(#\#):not(#\#) > button uc-icon,
609
+ uc-editor-freeform-button-control:not(#\#):not(#\#):not(#\#) > button uc-icon,
610
+ uc-editor-filter-control:not(#\#):not(#\#):not(#\#) > button uc-icon {
601
611
  pointer-events: none;
602
612
  }
603
- uc-editor-filter-control > button .uc-preview {
613
+ uc-editor-filter-control:not(#\#):not(#\#):not(#\#) > button .uc-preview {
604
614
  position: absolute;
605
615
  right: 0;
606
616
  left: 0;
@@ -614,11 +624,11 @@
614
624
  filter: brightness(var(--filter-effect));
615
625
  transition: var(--transition-duration-3);
616
626
  }
617
- uc-editor-filter-control > .uc-original-icon {
627
+ uc-editor-filter-control:not(#\#):not(#\#):not(#\#) > .uc-original-icon {
618
628
  color: var(--color-effect);
619
629
  opacity: 0.3;
620
630
  }
621
- uc-editor-image-cropper {
631
+ uc-editor-image-cropper:not(#\#):not(#\#):not(#\#) {
622
632
  position: absolute;
623
633
  top: 0px;
624
634
  left: 0px;
@@ -631,24 +641,24 @@
631
641
  touch-action: none;
632
642
  color: var(--color-crop-guides);
633
643
  }
634
- uc-editor-image-cropper.uc-active_from_editor {
644
+ uc-editor-image-cropper.uc-active_from_editor:not(#\#):not(#\#):not(#\#) {
635
645
  transform: scale(1) translate(0px, 0px);
636
646
  opacity: 1;
637
647
  transition: transform var(--transition-duration-4) cubic-bezier(0.37, 0, 0.63, 1) 0.4s, opacity var(--transition-duration-3);
638
648
  pointer-events: auto;
639
649
  }
640
- uc-editor-image-cropper.uc-active_from_viewer {
650
+ uc-editor-image-cropper.uc-active_from_viewer:not(#\#):not(#\#):not(#\#) {
641
651
  transform: scale(1) translate(0px, 0px);
642
652
  opacity: 1;
643
653
  transition: transform var(--transition-duration-4) cubic-bezier(0.37, 0, 0.63, 1) 0.4s, opacity var(--transition-duration-3);
644
654
  pointer-events: auto;
645
655
  }
646
- uc-editor-image-cropper.uc-inactive_to_editor {
656
+ uc-editor-image-cropper.uc-inactive_to_editor:not(#\#):not(#\#):not(#\#) {
647
657
  opacity: 0;
648
658
  transition: transform var(--transition-duration-4) cubic-bezier(0.37, 0, 0.63, 1), opacity var(--transition-duration-3) calc(var(--transition-duration-3) + 0.05s);
649
659
  pointer-events: none;
650
660
  }
651
- uc-editor-image-cropper > .uc-canvas {
661
+ uc-editor-image-cropper:not(#\#):not(#\#):not(#\#) > .uc-canvas {
652
662
  position: absolute;
653
663
  top: 0px;
654
664
  left: 0px;
@@ -657,7 +667,7 @@
657
667
  width: 100%;
658
668
  height: 100%;
659
669
  }
660
- uc-editor-image-fader {
670
+ uc-editor-image-fader:not(#\#):not(#\#):not(#\#) {
661
671
  position: absolute;
662
672
  top: 0px;
663
673
  left: 0px;
@@ -665,28 +675,28 @@
665
675
  width: 100%;
666
676
  height: 100%;
667
677
  }
668
- uc-editor-image-fader.uc-active_from_viewer {
678
+ uc-editor-image-fader.uc-active_from_viewer:not(#\#):not(#\#):not(#\#) {
669
679
  z-index: 3;
670
680
  transform: scale(1);
671
681
  opacity: 1;
672
682
  transition: transform var(--transition-duration-4), opacity var(--transition-duration-3) steps(1, jump-start);
673
683
  pointer-events: auto;
674
684
  }
675
- uc-editor-image-fader.uc-active_from_cropper {
685
+ uc-editor-image-fader.uc-active_from_cropper:not(#\#):not(#\#):not(#\#) {
676
686
  z-index: 3;
677
687
  transform: scale(1);
678
688
  opacity: 1;
679
689
  transition: transform var(--transition-duration-4), opacity var(--transition-duration-3) steps(1, jump-end);
680
690
  pointer-events: auto;
681
691
  }
682
- uc-editor-image-fader.uc-inactive_to_cropper {
692
+ uc-editor-image-fader.uc-inactive_to_cropper:not(#\#):not(#\#):not(#\#) {
683
693
  z-index: 3;
684
694
  transform: scale(1);
685
695
  opacity: 0;
686
696
  transition: transform var(--transition-duration-4), opacity var(--transition-duration-3) steps(1, jump-end);
687
697
  pointer-events: none;
688
698
  }
689
- uc-editor-image-fader .uc-fader-image {
699
+ uc-editor-image-fader:not(#\#):not(#\#):not(#\#) .uc-fader-image {
690
700
  position: absolute;
691
701
  top: 0px;
692
702
  left: 0px;
@@ -698,7 +708,7 @@
698
708
  user-select: none;
699
709
  content-visibility: auto;
700
710
  }
701
- uc-editor-image-fader .uc-fader-image--preview {
711
+ uc-editor-image-fader:not(#\#):not(#\#):not(#\#) .uc-fader-image--preview {
702
712
  background-color: var(--color-image-background);
703
713
  border-top-left-radius: var(--border-radius-base);
704
714
  border-top-right-radius: var(--border-radius-base);
@@ -706,46 +716,46 @@
706
716
  opacity: 0;
707
717
  transition: var(--transition-duration-3);
708
718
  }
709
- uc-editor-scroller {
719
+ uc-editor-scroller:not(#\#):not(#\#):not(#\#) {
710
720
  display: flex;
711
721
  align-items: center;
712
722
  width: 100%;
713
723
  height: 100%;
714
724
  overflow-x: scroll;
715
725
  }
716
- uc-editor-slider {
726
+ uc-editor-slider:not(#\#):not(#\#):not(#\#) {
717
727
  display: flex;
718
728
  align-items: center;
719
729
  justify-content: center;
720
730
  width: 100%;
721
731
  height: var(--size-panel-heading);
722
732
  }
723
- uc-editor-toolbar {
733
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) {
724
734
  position: relative;
725
735
  width: 100%;
726
736
  height: 100%;
727
737
  }
728
- @media only screen and (max-width: 600px) {
729
- uc-editor-toolbar {
738
+ @media only screen and (max-width: 600px) {
739
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) {
730
740
  --l-tab-gap: var(--cldtr-gap-mid-1);
731
741
  --l-slider-padding: var(--uc-padding);
732
742
  --l-controls-padding: var(--uc-padding);
733
743
  }
734
744
  }
735
- @media only screen and (min-width: 601px) {
736
- uc-editor-toolbar {
745
+ @media only screen and (min-width: 601px) {
746
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) {
737
747
  --l-tab-gap: var(--cldtr-gap-max);
738
748
  --l-slider-padding: var(--uc-padding);
739
749
  --l-controls-padding: var(--uc-padding);
740
750
  }
741
751
  }
742
- uc-editor-toolbar > .uc-toolbar-container {
752
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container {
743
753
  position: relative;
744
754
  width: 100%;
745
755
  height: 100%;
746
756
  overflow: hidden;
747
757
  }
748
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar {
758
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar {
749
759
  position: absolute;
750
760
  display: grid;
751
761
  grid-template-rows: 1fr 1fr;
@@ -757,7 +767,7 @@
757
767
  transform var(--transition-duration-3) ease-in-out,
758
768
  visibility var(--transition-duration-3) ease-in-out;
759
769
  }
760
- .uc-sub-toolbar > .uc-list-aspect-ratio-container > .uc-list-aspect-ratio {
770
+ .uc-sub-toolbar:not(#\#):not(#\#):not(#\#) > .uc-list-aspect-ratio-container > .uc-list-aspect-ratio {
761
771
  display: grid;
762
772
  grid-auto-flow: column;
763
773
  justify-content: center;
@@ -765,37 +775,37 @@
765
775
  gap: 6px;
766
776
  height: var(--size-panel-heading);
767
777
  }
768
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar.uc-sub-toolbar--visible {
778
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar.uc-sub-toolbar--visible {
769
779
  transform: translateY(0px);
770
780
  opacity: 1;
771
781
  pointer-events: auto;
772
782
  }
773
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar.uc-sub-toolbar--top-hidden {
783
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar.uc-sub-toolbar--top-hidden {
774
784
  transform: translateY(100%);
775
785
  opacity: 0;
776
786
  pointer-events: none;
777
787
  }
778
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar.uc-sub-toolbar--bottom-hidden {
788
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar.uc-sub-toolbar--bottom-hidden {
779
789
  transform: translateY(-100%);
780
790
  opacity: 0;
781
791
  pointer-events: none;
782
792
  }
783
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row {
793
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row {
784
794
  display: flex;
785
795
  align-items: center;
786
796
  justify-content: space-between;
787
797
  padding-right: var(--l-controls-padding);
788
798
  padding-left: var(--l-controls-padding);
789
799
  }
790
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row > .uc-tab-toggles {
800
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row > .uc-tab-toggles {
791
801
  position: relative;
792
802
  display: grid;
793
803
  grid-auto-flow: column;
794
- grid-gap: 0px var(--l-tab-gap);
804
+ gap: 0px var(--l-tab-gap);
795
805
  align-items: center;
796
806
  height: 100%;
797
807
  }
798
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row > .uc-tab-toggles > .uc-tab-toggles_indicator {
808
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row > .uc-tab-toggles > .uc-tab-toggles_indicator {
799
809
  position: absolute;
800
810
  bottom: 0px;
801
811
  left: 0px;
@@ -805,10 +815,10 @@
805
815
  transform: translateX(0px);
806
816
  transition: transform var(--transition-duration-3);
807
817
  }
808
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar > .uc-tab-content-row {
818
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar > .uc-tab-content-row {
809
819
  position: relative;
810
820
  }
811
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar > .uc-tab-content-row > .uc-tab-content {
821
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar > .uc-tab-content-row > .uc-tab-content {
812
822
  position: absolute;
813
823
  top: 0px;
814
824
  left: 0px;
@@ -819,31 +829,31 @@
819
829
  opacity: 0;
820
830
  content-visibility: auto;
821
831
  }
822
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar > .uc-tab-content-row > .uc-tab-content.uc-tab-content--visible {
832
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar > .uc-tab-content-row > .uc-tab-content.uc-tab-content--visible {
823
833
  opacity: 1;
824
834
  pointer-events: auto;
825
835
  }
826
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar > .uc-tab-content-row > .uc-tab-content.uc-tab-content--hidden {
836
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar > .uc-tab-content-row > .uc-tab-content.uc-tab-content--hidden {
827
837
  opacity: 0;
828
838
  pointer-events: none;
829
839
  }
830
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row > .uc-tab-toggles > .uc-tab-toggle.uc-tab-toggle--visible {
840
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row > .uc-tab-toggles > .uc-tab-toggle.uc-tab-toggle--visible {
831
841
  display: contents;
832
842
  }
833
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row > .uc-tab-toggles > .uc-tab-toggle.uc-tab-toggle--hidden {
843
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row > .uc-tab-toggles > .uc-tab-toggle.uc-tab-toggle--hidden {
834
844
  display: none;
835
845
  }
836
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row > .uc-tab-toggles.uc-tab-toggles--hidden {
846
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row > .uc-tab-toggles.uc-tab-toggles--hidden {
837
847
  display: none;
838
848
  }
839
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row > .uc-tab-toggles > .uc-tab-toggle > uc-btn-ui {
849
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row > .uc-tab-toggles > .uc-tab-toggle > uc-btn-ui {
840
850
  width: var(--uc-button-size);
841
851
  }
842
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row > .uc-tab-toggles > .uc-tab-toggle > uc-btn-ui > uc-icon > svg {
852
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar > .uc-controls-row > .uc-tab-toggles > .uc-tab-toggle > uc-btn-ui > uc-icon > svg {
843
853
  width: var(--size-icon);
844
854
  height: var(--size-icon);
845
855
  }
846
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar > .uc-tab-content-row > .uc-tab-content .uc-controls-list_align {
856
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar > .uc-tab-content-row > .uc-tab-content .uc-controls-list_align {
847
857
  display: grid;
848
858
  grid-template-areas: ". inner .";
849
859
  grid-template-columns: 1fr auto 1fr;
@@ -851,19 +861,16 @@
851
861
  min-width: 100%;
852
862
  padding-left: var(--uc-padding);
853
863
  }
854
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar > .uc-tab-content-row > .uc-tab-content .uc-controls-list_inner {
864
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar > .uc-tab-content-row > .uc-tab-content .uc-controls-list_inner {
855
865
  display: grid;
856
866
  grid-area: inner;
857
867
  grid-auto-flow: column;
858
868
  gap: 6px;
859
869
  }
860
- uc-editor-toolbar > .uc-toolbar-container > .uc-sub-toolbar > .uc-tab-content-row > .uc-tab-content .uc-controls-list_inner:last-child {
870
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) > .uc-toolbar-container > .uc-sub-toolbar > .uc-tab-content-row > .uc-tab-content .uc-controls-list_inner:last-child {
861
871
  padding-right: var(--uc-padding);
862
872
  }
863
- uc-editor-toolbar .uc-controls-list_last-item {
864
- margin-right: var(--cldtr-gap-max);
865
- }
866
- uc-editor-toolbar .uc-info-tooltip_container {
873
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) .uc-info-tooltip_container {
867
874
  position: absolute;
868
875
  display: flex;
869
876
  align-items: flex-start;
@@ -871,7 +878,7 @@
871
878
  width: 100%;
872
879
  height: 100%;
873
880
  }
874
- uc-editor-toolbar .uc-info-tooltip_wrapper {
881
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) .uc-info-tooltip_wrapper {
875
882
  position: absolute;
876
883
  top: calc(-100% - var(--cldtr-gap-mid-2));
877
884
  display: flex;
@@ -880,8 +887,8 @@
880
887
  height: 100%;
881
888
  pointer-events: none;
882
889
  }
883
- uc-editor-toolbar .uc-info-tooltip {
884
- z-index: 3;
890
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) .uc-info-tooltip {
891
+ z-index: 10;
885
892
  padding: 3px 6px;
886
893
  color: var(--color-text-base);
887
894
  font-size: 0.7em;
@@ -893,15 +900,15 @@
893
900
  opacity: 0;
894
901
  transition: var(--transition-duration-3);
895
902
  }
896
- uc-editor-toolbar .uc-info-tooltip_visible {
903
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) .uc-info-tooltip_visible {
897
904
  transform: translateY(0px);
898
905
  opacity: 1;
899
906
  }
900
- uc-editor-toolbar .uc-slider {
907
+ uc-editor-toolbar:not(#\#):not(#\#):not(#\#) .uc-slider {
901
908
  padding-right: var(--l-slider-padding);
902
909
  padding-left: var(--l-slider-padding);
903
910
  }
904
- uc-btn-ui > button {
911
+ uc-btn-ui:not(#\#):not(#\#):not(#\#) > button {
905
912
  --filter-effect: var(--idle-brightness);
906
913
  --opacity-effect: var(--idle-opacity);
907
914
  --color-effect: var(--idle-color-rgb);
@@ -924,13 +931,13 @@
924
931
  transition: var(--l-transition-effect);
925
932
  user-select: none;
926
933
  }
927
- uc-btn-ui > button > uc-icon {
934
+ uc-btn-ui:not(#\#):not(#\#):not(#\#) > button > uc-icon {
928
935
  pointer-events: none;
929
936
  }
930
- uc-btn-ui .uc-text {
937
+ uc-btn-ui:not(#\#):not(#\#):not(#\#) .uc-text {
931
938
  white-space: nowrap;
932
939
  }
933
- uc-btn-ui .uc-icon {
940
+ uc-btn-ui:not(#\#):not(#\#):not(#\#) .uc-icon {
934
941
  display: flex;
935
942
  align-items: center;
936
943
  justify-content: center;
@@ -938,23 +945,23 @@
938
945
  filter: brightness(var(--filter-effect));
939
946
  transition: var(--l-transition-effect);
940
947
  }
941
- uc-btn-ui .uc-icon_left {
948
+ uc-btn-ui:not(#\#):not(#\#):not(#\#) .uc-icon_left {
942
949
  margin-right: var(--cldtr-gap-mid-1);
943
950
  margin-left: 0px;
944
951
  }
945
- uc-btn-ui .uc-icon_right {
952
+ uc-btn-ui:not(#\#):not(#\#):not(#\#) .uc-icon_right {
946
953
  margin-right: 0px;
947
954
  margin-left: var(--cldtr-gap-mid-1);
948
955
  }
949
- uc-btn-ui .uc-icon_single {
956
+ uc-btn-ui:not(#\#):not(#\#):not(#\#) .uc-icon_single {
950
957
  margin-right: 0px;
951
958
  margin-left: 0px;
952
959
  }
953
- uc-btn-ui .uc-icon_hidden {
960
+ uc-btn-ui:not(#\#):not(#\#):not(#\#) .uc-icon_hidden {
954
961
  display: none;
955
962
  margin: 0;
956
963
  }
957
- uc-btn-ui.uc-primary > button {
964
+ uc-btn-ui.uc-primary:not(#\#):not(#\#):not(#\#) > button {
958
965
  --idle-color-rgb: var(--uc-primary-foreground);
959
966
  --idle-brightness: 1;
960
967
  --idle-opacity: 1;
@@ -972,7 +979,7 @@
972
979
  --active-opacity: 1;
973
980
  --active-background: var(--uc-primary);
974
981
  }
975
- uc-btn-ui.uc-primary-icon > button {
982
+ uc-btn-ui.uc-primary-icon:not(#\#):not(#\#):not(#\#) > button {
976
983
  --idle-color-rgb: var(--uc-primary);
977
984
  --idle-brightness: 1;
978
985
  --idle-opacity: 1;
@@ -992,7 +999,7 @@
992
999
  padding: 0;
993
1000
  width: var(--uc-button-size);
994
1001
  }
995
- uc-btn-ui.uc-secondary > button {
1002
+ uc-btn-ui.uc-secondary:not(#\#):not(#\#):not(#\#) > button {
996
1003
  --idle-color-rgb: var(--uc-secondary-foreground);
997
1004
  --idle-brightness: 1;
998
1005
  --idle-opacity: 1;
@@ -1010,10 +1017,10 @@
1010
1017
  --active-opacity: 1;
1011
1018
  --active-background: transparent;
1012
1019
  }
1013
- :where(.uc-contrast) uc-btn-ui.uc-secondary > button {
1020
+ :where(.uc-contrast):not(#\#):not(#\#):not(#\#) uc-btn-ui.uc-secondary > button {
1014
1021
  border: 1px solid var(--uc-border);
1015
1022
  }
1016
- uc-btn-ui.uc-secondary-icon > button {
1023
+ uc-btn-ui.uc-secondary-icon:not(#\#):not(#\#):not(#\#) > button {
1017
1024
  --idle-color-rgb: var(--uc-secondary-foreground);
1018
1025
  --idle-brightness: 1;
1019
1026
  --idle-opacity: 1;
@@ -1033,7 +1040,7 @@
1033
1040
  padding: 0;
1034
1041
  width: var(--uc-button-size);
1035
1042
  }
1036
- uc-btn-ui.uc-tab > button {
1043
+ uc-btn-ui.uc-tab:not(#\#):not(#\#):not(#\#) > button {
1037
1044
  --idle-color-rgb: var(--uc-secondary-foreground);
1038
1045
  --idle-brightness: 1;
1039
1046
  --idle-opacity: 1;
@@ -1053,7 +1060,7 @@
1053
1060
  padding: 0;
1054
1061
  width: var(--uc-button-size);
1055
1062
  }
1056
- uc-btn-ui.uc-default > button {
1063
+ uc-btn-ui.uc-default:not(#\#):not(#\#):not(#\#) > button {
1057
1064
  --idle-color-rgb: var(--uc-secondary-foreground);
1058
1065
  --idle-brightness: 1;
1059
1066
  --idle-opacity: 1;
@@ -1071,13 +1078,13 @@
1071
1078
  --active-opacity: 1;
1072
1079
  --active-background: var(--uc-primary-transparent);
1073
1080
  }
1074
- :where(.uc-contrast) uc-btn-ui.uc-default > button {
1081
+ :where(.uc-contrast):not(#\#):not(#\#):not(#\#) uc-btn-ui.uc-default > button {
1075
1082
  --idle-background: transparent;
1076
1083
  --hover-background: var(--uc-secondary);
1077
1084
  --active-background: var(--uc-foreground);
1078
1085
  --active-color-rgb: var(--uc-background);
1079
1086
  }
1080
- uc-line-loader-ui {
1087
+ uc-line-loader-ui:not(#\#):not(#\#):not(#\#) {
1081
1088
  position: absolute;
1082
1089
  top: 0px;
1083
1090
  left: 0px;
@@ -1086,19 +1093,19 @@
1086
1093
  height: 2px;
1087
1094
  opacity: 0.5;
1088
1095
  }
1089
- uc-line-loader-ui .uc-inner {
1096
+ uc-line-loader-ui:not(#\#):not(#\#):not(#\#) .uc-inner {
1090
1097
  width: 25%;
1091
1098
  max-width: 200px;
1092
1099
  height: 100%;
1093
1100
  }
1094
- uc-line-loader-ui .uc-line {
1101
+ uc-line-loader-ui:not(#\#):not(#\#):not(#\#) .uc-line {
1095
1102
  width: 100%;
1096
1103
  height: 100%;
1097
1104
  background-color: var(--uc-primary);
1098
1105
  transform: translateX(-101%);
1099
1106
  transition: transform 1s;
1100
1107
  }
1101
- uc-slider-ui {
1108
+ uc-slider-ui:not(#\#):not(#\#):not(#\#) {
1102
1109
  --l-thumb-size: 24px;
1103
1110
  --l-zero-dot-size: 5px;
1104
1111
  --l-zero-dot-offset: 2px;
@@ -1114,7 +1121,7 @@
1114
1121
  width: 100%;
1115
1122
  height: calc(var(--l-thumb-size) + (var(--l-zero-dot-size) + var(--l-zero-dot-offset)) * 2);
1116
1123
  }
1117
- uc-slider-ui .uc-thumb {
1124
+ uc-slider-ui:not(#\#):not(#\#):not(#\#) .uc-thumb {
1118
1125
  position: absolute;
1119
1126
  left: 0px;
1120
1127
  width: var(--l-thumb-size);
@@ -1125,7 +1132,7 @@
1125
1132
  opacity: 1;
1126
1133
  transition: opacity var(--transition-duration-2), background-color var(--transition-duration-2);
1127
1134
  }
1128
- uc-slider-ui .uc-steps {
1135
+ uc-slider-ui:not(#\#):not(#\#):not(#\#) .uc-steps {
1129
1136
  position: absolute;
1130
1137
  display: flex;
1131
1138
  align-items: center;
@@ -1136,21 +1143,21 @@
1136
1143
  padding-right: calc(var(--l-thumb-size) / 2);
1137
1144
  padding-left: calc(var(--l-thumb-size) / 2);
1138
1145
  }
1139
- uc-slider-ui .uc-border-step {
1146
+ uc-slider-ui:not(#\#):not(#\#):not(#\#) .uc-border-step {
1140
1147
  width: 0px;
1141
1148
  height: 10px;
1142
1149
  border-right: 1px solid var(--uc-foreground);
1143
1150
  opacity: 1;
1144
1151
  transition: border-color var(--transition-duration-2);
1145
1152
  }
1146
- uc-slider-ui .uc-minor-step {
1153
+ uc-slider-ui:not(#\#):not(#\#):not(#\#) .uc-minor-step {
1147
1154
  width: 0px;
1148
1155
  height: 4px;
1149
1156
  border-right: 1px solid var(--uc-foreground);
1150
1157
  opacity: 0.6;
1151
1158
  transition: border-color var(--transition-duration-2);
1152
1159
  }
1153
- uc-slider-ui .uc-zero-dot {
1160
+ uc-slider-ui:not(#\#):not(#\#):not(#\#) .uc-zero-dot {
1154
1161
  position: absolute;
1155
1162
  top: calc(100% - var(--l-zero-dot-offset) * 2);
1156
1163
  left: calc(var(--l-thumb-size) / 2 - var(--l-zero-dot-size) / 2);
@@ -1161,7 +1168,7 @@
1161
1168
  opacity: 0;
1162
1169
  transition: var(--transition-duration-3);
1163
1170
  }
1164
- uc-slider-ui .uc-input {
1171
+ uc-slider-ui:not(#\#):not(#\#):not(#\#) .uc-input {
1165
1172
  position: absolute;
1166
1173
  width: calc(100% - 10px);
1167
1174
  height: 100%;
@@ -1169,64 +1176,60 @@
1169
1176
  cursor: pointer;
1170
1177
  opacity: 0;
1171
1178
  }
1172
- uc-presence-toggle.uc-transition {
1179
+ uc-presence-toggle.uc-transition:not(#\#):not(#\#):not(#\#) {
1173
1180
  transition: opacity var(--transition-duration-3), visibility var(--transition-duration-3);
1174
1181
  }
1175
- uc-presence-toggle.uc-visible {
1182
+ uc-presence-toggle.uc-visible:not(#\#):not(#\#):not(#\#) {
1176
1183
  opacity: 1;
1177
1184
  pointer-events: inherit;
1178
1185
  }
1179
- uc-presence-toggle.uc-hidden {
1186
+ uc-presence-toggle.uc-hidden:not(#\#):not(#\#):not(#\#) {
1180
1187
  opacity: 0;
1181
1188
  pointer-events: none;
1182
1189
  }
1183
- uc-presence-toggle.uc-initial {
1190
+ uc-presence-toggle.uc-initial:not(#\#):not(#\#):not(#\#) {
1184
1191
  display: none !important;
1185
1192
  transition: none !important;
1186
1193
  }
1187
- [uc-cloud-image-editor] [role=button]:focus-visible,
1188
- [uc-cloud-image-editor] button:focus-visible {
1194
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) [role=button]:focus-visible,
1195
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) button:focus-visible {
1189
1196
  outline: 1px auto Highlight;
1190
1197
  outline: 1px auto -webkit-focus-ring-color;
1191
1198
  }
1192
- [uc-cloud-image-editor] .uc-cloud-mask {
1199
+ [uc-cloud-image-editor]:not(#\#):not(#\#):not(#\#) .uc-cloud-mask {
1193
1200
  pointer-events: none;
1194
1201
  }
1195
- [uc-aspect-ratio-freeform] button {
1202
+ [uc-aspect-ratio-freeform]:not(#\#):not(#\#):not(#\#) button {
1196
1203
  display: flex;
1197
1204
  }
1198
- [uc-aspect-ratio-freeform] uc-icon {
1205
+ [uc-aspect-ratio-freeform]:not(#\#):not(#\#):not(#\#) uc-icon {
1199
1206
  display: none;
1200
1207
  }
1201
- [uc-aspect-ratio-freeform] .uc-title {
1208
+ [uc-aspect-ratio-freeform]:not(#\#):not(#\#):not(#\#) .uc-title {
1202
1209
  padding-left: var(--cldtr-gap-mid-1);
1203
1210
  }
1204
- :where(uc-editor-freeform-button-control, uc-editor-aspect-ratio-button-control:last-of-type) {
1211
+ :where(uc-editor-freeform-button-control, uc-editor-aspect-ratio-button-control:last-of-type):not(#\#):not(#\#):not(#\#) {
1205
1212
  margin-right: calc(3 * var(--cldtr-gap-mid-1));
1206
1213
  }
1207
- }
1208
1214
 
1209
1215
  /* src/blocks/CloudImageEditor/src/css/icons.css */
1210
- @layer uc.solutions {
1211
- :where([uc-cloud-image-editor]) uc-icon {
1216
+ :where([uc-cloud-image-editor]):not(#\#):not(#\#):not(#\#) uc-icon {
1212
1217
  display: flex;
1213
1218
  justify-content: center;
1214
1219
  width: 100%;
1215
1220
  height: 100%;
1216
1221
  }
1217
- :where([uc-cloud-image-editor]) uc-icon svg {
1222
+ :where([uc-cloud-image-editor]):not(#\#):not(#\#):not(#\#) uc-icon svg {
1218
1223
  width: calc(var(--uc-button-size) / 2);
1219
1224
  height: calc(var(--uc-button-size) / 2);
1220
1225
  }
1221
- }
1222
1226
 
1223
1227
  /* src/blocks/CloudImageEditor/src/css/index.css */
1224
1228
 
1225
1229
  /* src/blocks/CloudImageEditor/index.css */
1226
1230
 
1227
1231
  /* src/blocks/CloudImageEditorActivity/cloud-image-editor-activity.css */
1228
- @layer uc.components {
1229
- uc-cloud-image-editor-activity {
1232
+ uc-cloud-image-editor-activity:not(#\#) {
1230
1233
  position: relative;
1231
1234
  display: flex;
1232
1235
  width: 100%;
@@ -1234,27 +1237,23 @@
1234
1237
  overflow: hidden;
1235
1238
  background-color: var(--uc-background);
1236
1239
  }
1237
- [uc-modal] > dialog:has(uc-cloud-image-editor-activity[active]) {
1240
+ [uc-modal]:not(#\#) > dialog:has(uc-cloud-image-editor-activity[active]) {
1238
1241
  width: 100%;
1239
1242
  height: 100%;
1240
1243
  }
1241
- }
1242
1244
 
1243
1245
  /* src/blocks/Config/config.css */
1244
- @layer uc.components {
1245
- uc-config {
1246
+ uc-config:not(#\#) {
1246
1247
  display: none;
1247
1248
  }
1248
- }
1249
1249
 
1250
1250
  /* src/blocks/Copyright/copyright.css */
1251
- @layer uc.components {
1252
- uc-copyright {
1251
+ uc-copyright:not(#\#) {
1253
1252
  display: flex;
1254
1253
  width: 100%;
1255
1254
  justify-content: center;
1256
1255
  }
1257
- uc-copyright .uc-credits {
1256
+ uc-copyright:not(#\#) .uc-credits {
1258
1257
  all: unset;
1259
1258
  position: absolute;
1260
1259
  bottom: 12px;
@@ -1268,76 +1267,74 @@
1268
1267
  cursor: pointer;
1269
1268
  transition: opacity var(--uc-transition), background-color var(--uc-transition);
1270
1269
  }
1271
- uc-copyright .uc-credits:focus-visible {
1270
+ uc-copyright:not(#\#) .uc-credits:focus-visible {
1272
1271
  outline: 1px auto Highlight;
1273
1272
  outline: 1px auto -webkit-focus-ring-color;
1274
1273
  }
1275
- uc-copyright .uc-credits:hover {
1274
+ uc-copyright:not(#\#) .uc-credits:hover {
1276
1275
  opacity: 1;
1277
1276
  background-color: var(--uc-muted);
1278
1277
  }
1279
- }
1280
1278
 
1281
1279
  /* src/blocks/DropArea/drop-area.css */
1282
- @layer uc.components {
1283
- :where([uc-drop-area]) {
1280
+ :where([uc-drop-area]):not(#\#) {
1284
1281
  padding: 2px;
1285
1282
  overflow: hidden;
1286
1283
  border: 1px dashed var(--uc-border);
1287
1284
  border-radius: calc(var(--uc-radius) * 1.75);
1288
1285
  transition: border var(--uc-transition), border-radius var(--uc-transition);
1289
1286
  }
1290
- :where([uc-drop-area]),
1291
- :where([uc-drop-area]) .uc-content-wrapper {
1287
+ :where([uc-drop-area]):not(#\#),
1288
+ :where([uc-drop-area]):not(#\#) .uc-content-wrapper {
1292
1289
  display: flex;
1293
1290
  align-items: center;
1294
1291
  justify-content: center;
1295
1292
  width: 100%;
1296
1293
  height: 100%;
1297
1294
  }
1298
- :where([uc-drop-area]) .uc-text {
1295
+ :where([uc-drop-area]):not(#\#) .uc-text {
1299
1296
  position: relative;
1300
1297
  margin: var(--uc-padding);
1301
1298
  color: var(--uc-muted-foreground);
1302
1299
  transition: color var(--uc-transition);
1303
1300
  }
1304
- :where([uc-drop-area])[ghost][drag-state=inactive] {
1301
+ :where([uc-drop-area])[ghost][drag-state=inactive]:not(#\#) {
1305
1302
  display: none;
1306
1303
  }
1307
- :where([uc-drop-area])[ghost]:not([fullscreen]):is([drag-state=active], [drag-state=near], [drag-state=over]) {
1304
+ :where([uc-drop-area])[ghost]:not([fullscreen]):is([drag-state=active], [drag-state=near], [drag-state=over]):not(#\#) {
1308
1305
  background: var(--uc-background);
1309
1306
  }
1310
- :where([uc-drop-area]):is([drag-state=active], [drag-state=near], [drag-state=over], :hover) {
1307
+ :where([uc-drop-area]):is([drag-state=active], [drag-state=near], [drag-state=over], :hover):not(#\#) {
1311
1308
  background: var(--uc-primary-transparent);
1312
1309
  border-color: var(--uc-primary-transparent);
1313
1310
  }
1314
- :where(.uc-contrast) :where([uc-drop-area]):is([drag-state=active], [drag-state=near], [drag-state=over], :hover) {
1311
+ :where(.uc-contrast):not(#\#) :where([uc-drop-area]):is([drag-state=active], [drag-state=near], [drag-state=over], :hover) {
1315
1312
  color: var(--uc-foreground);
1316
1313
  background: transparent;
1317
1314
  border-color: var(--uc-foreground);
1318
1315
  border-width: 2px;
1319
1316
  border-style: solid;
1320
1317
  }
1321
- :where([uc-drop-area]):is([drag-state=active], [drag-state=near]) {
1318
+ :where([uc-drop-area]):is([drag-state=active], [drag-state=near]):not(#\#) {
1322
1319
  opacity: 1;
1323
1320
  }
1324
- :where([uc-drop-area])[drag-state=over] {
1321
+ :where([uc-drop-area])[drag-state=over]:not(#\#) {
1325
1322
  border-color: var(--uc-primary);
1326
1323
  opacity: 1;
1327
1324
  }
1328
- :where([uc-drop-area])[with-icon] {
1325
+ :where([uc-drop-area])[with-icon]:not(#\#) {
1329
1326
  min-height: 180px;
1330
1327
  }
1331
- :where([uc-drop-area])[with-icon] .uc-content-wrapper {
1328
+ :where([uc-drop-area])[with-icon]:not(#\#) .uc-content-wrapper {
1332
1329
  display: flex;
1333
1330
  flex-direction: column;
1334
1331
  }
1335
- :where([uc-drop-area])[with-icon] .uc-text {
1332
+ :where([uc-drop-area])[with-icon]:not(#\#) .uc-text {
1336
1333
  color: var(--uc-foreground);
1337
1334
  font-weight: 500;
1338
1335
  font-size: 1.1em;
1339
1336
  }
1340
- :where([uc-drop-area])[with-icon] .uc-icon-container {
1337
+ :where([uc-drop-area])[with-icon]:not(#\#) .uc-icon-container {
1341
1338
  position: relative;
1342
1339
  width: 64px;
1343
1340
  height: 64px;
@@ -1348,7 +1345,7 @@
1348
1345
  border-radius: 50%;
1349
1346
  transition: color var(--uc-transition), background-color var(--uc-transition);
1350
1347
  }
1351
- :where([uc-drop-area])[with-icon] uc-icon {
1348
+ :where([uc-drop-area])[with-icon]:not(#\#) uc-icon {
1352
1349
  position: absolute;
1353
1350
  width: 32px;
1354
1351
  height: 32px;
@@ -1356,42 +1353,42 @@
1356
1353
  left: calc(50% - 16px);
1357
1354
  transition: transform var(--uc-transition);
1358
1355
  }
1359
- :where([uc-drop-area])[with-icon] uc-icon:last-child {
1356
+ :where([uc-drop-area])[with-icon]:not(#\#) uc-icon:last-child {
1360
1357
  transform: translateY(48px);
1361
1358
  }
1362
- :where(.uc-contrast) :where([uc-drop-area])[with-icon]:hover .uc-icon-container,
1363
- :where(.uc-contrast) :where([uc-drop-area])[with-icon]:hover .uc-text {
1359
+ :where(.uc-contrast):not(#\#) :where([uc-drop-area])[with-icon]:hover .uc-icon-container,
1360
+ :where(.uc-contrast):not(#\#) :where([uc-drop-area])[with-icon]:hover .uc-text {
1364
1361
  color: var(--uc-foreground);
1365
1362
  }
1366
- :where([uc-drop-area])[with-icon]:hover .uc-icon-container {
1363
+ :where([uc-drop-area])[with-icon]:hover:not(#\#) .uc-icon-container {
1367
1364
  background-color: var(--uc-primary-transparent);
1368
1365
  }
1369
- :where(.uc-contrast) :where([uc-drop-area])[with-icon]:hover .uc-icon-container {
1366
+ :where(.uc-contrast):not(#\#) :where([uc-drop-area])[with-icon]:hover .uc-icon-container {
1370
1367
  background-color: var(--uc-muted);
1371
1368
  }
1372
- :where([uc-drop-area])[with-icon] > .uc-content-wrapper:is([drag-state=active], [drag-state=near], [drag-state=over]) .uc-icon-container {
1369
+ :where([uc-drop-area])[with-icon]:not(#\#) > .uc-content-wrapper:is([drag-state=active], [drag-state=near], [drag-state=over]) .uc-icon-container {
1373
1370
  color: var(--uc-primary-foreground);
1374
1371
  background-color: var(--uc-primary);
1375
1372
  }
1376
- :where([uc-drop-area])[with-icon] > .uc-content-wrapper:is([drag-state=active], [drag-state=near], [drag-state=over]) .uc-text {
1373
+ :where([uc-drop-area])[with-icon]:not(#\#) > .uc-content-wrapper:is([drag-state=active], [drag-state=near], [drag-state=over]) .uc-text {
1377
1374
  color: var(--uc-foreground);
1378
1375
  }
1379
- :where(.uc-contrast) :where([uc-drop-area])[with-icon] > .uc-content-wrapper:is([drag-state=active], [drag-state=near], [drag-state=over]) .uc-text {
1376
+ :where(.uc-contrast):not(#\#) :where([uc-drop-area])[with-icon] > .uc-content-wrapper:is([drag-state=active], [drag-state=near], [drag-state=over]) .uc-text {
1380
1377
  color: var(--uc-foreground);
1381
1378
  }
1382
- :where([uc-drop-area])[with-icon] > .uc-content-wrapper:is([drag-state=active], [drag-state=near], [drag-state=over]) uc-icon:first-child {
1379
+ :where([uc-drop-area])[with-icon]:not(#\#) > .uc-content-wrapper:is([drag-state=active], [drag-state=near], [drag-state=over]) uc-icon:first-child {
1383
1380
  transform: translateY(-48px);
1384
1381
  }
1385
- :where([uc-drop-area])[with-icon] > .uc-content-wrapper:is([drag-state=active], [drag-state=near], [drag-state=over]) uc-icon:last-child {
1382
+ :where([uc-drop-area])[with-icon]:not(#\#) > .uc-content-wrapper:is([drag-state=active], [drag-state=near], [drag-state=over]) uc-icon:last-child {
1386
1383
  transform: translateY(0);
1387
1384
  }
1388
- :where([uc-drop-area])[with-icon] > .uc-content-wrapper[drag-state=near] uc-icon:last-child {
1385
+ :where([uc-drop-area])[with-icon]:not(#\#) > .uc-content-wrapper[drag-state=near] uc-icon:last-child {
1389
1386
  transform: scale(1.3);
1390
1387
  }
1391
- :where([uc-drop-area])[with-icon] > .uc-content-wrapper[drag-state=over] uc-icon:last-child {
1388
+ :where([uc-drop-area])[with-icon]:not(#\#) > .uc-content-wrapper[drag-state=over] uc-icon:last-child {
1392
1389
  transform: scale(1.5);
1393
1390
  }
1394
- :where([uc-drop-area])[fullscreen] {
1391
+ :where([uc-drop-area])[fullscreen]:not(#\#) {
1395
1392
  position: fixed;
1396
1393
  top: 0;
1397
1394
  right: 0;
@@ -1405,7 +1402,7 @@
1405
1402
  height: calc(100vh - var(--uc-padding) * 2);
1406
1403
  margin: var(--uc-padding);
1407
1404
  }
1408
- :where([uc-drop-area])[fullscreen] .uc-content-wrapper {
1405
+ :where([uc-drop-area])[fullscreen]:not(#\#) .uc-content-wrapper {
1409
1406
  width: 100%;
1410
1407
  max-width: calc(var(--uc-dialog-width) * 0.8);
1411
1408
  height: 180px;
@@ -1420,26 +1417,24 @@
1420
1417
  border-radius var(--uc-transition),
1421
1418
  transform var(--uc-transition);
1422
1419
  }
1423
- :where([uc-drop-area])[with-icon][fullscreen][drag-state=active] > .uc-content-wrapper,
1424
- :where([uc-drop-area])[with-icon][fullscreen][drag-state=near] > .uc-content-wrapper {
1420
+ :where([uc-drop-area])[with-icon][fullscreen][drag-state=active]:not(#\#) > .uc-content-wrapper,
1421
+ :where([uc-drop-area])[with-icon][fullscreen][drag-state=near]:not(#\#) > .uc-content-wrapper {
1425
1422
  transform: translateY(10px);
1426
1423
  opacity: 0;
1427
1424
  }
1428
- :where([uc-drop-area])[with-icon][fullscreen][drag-state=over] > .uc-content-wrapper {
1425
+ :where([uc-drop-area])[with-icon][fullscreen][drag-state=over]:not(#\#) > .uc-content-wrapper {
1429
1426
  transform: translateY(0px);
1430
1427
  opacity: 1;
1431
1428
  }
1432
- :is(:where([uc-drop-area])[with-icon][fullscreen]) > .uc-content-wrapper uc-icon:first-child {
1429
+ :is(:where([uc-drop-area])[with-icon][fullscreen]):not(#\#) > .uc-content-wrapper uc-icon:first-child {
1433
1430
  transform: translateY(-48px);
1434
1431
  }
1435
- :where([uc-drop-area])[clickable] {
1432
+ :where([uc-drop-area])[clickable]:not(#\#) {
1436
1433
  cursor: pointer;
1437
1434
  }
1438
- }
1439
1435
 
1440
1436
  /* src/blocks/ExternalSource/external-source.css */
1441
- @layer uc.components {
1442
- uc-external-source {
1437
+ uc-external-source:not(#\#) {
1443
1438
  display: flex;
1444
1439
  flex-direction: column;
1445
1440
  width: 100%;
@@ -1448,26 +1443,26 @@
1448
1443
  overflow: hidden;
1449
1444
  position: relative;
1450
1445
  }
1451
- [uc-modal] > dialog:has(uc-external-source[active]) {
1446
+ [uc-modal]:not(#\#) > dialog:has(uc-external-source[active]) {
1452
1447
  width: 100%;
1453
1448
  height: 100%;
1454
1449
  }
1455
- uc-external-source > .uc-content {
1450
+ uc-external-source:not(#\#) > .uc-content {
1456
1451
  position: relative;
1457
1452
  display: grid;
1458
1453
  flex: 1;
1459
1454
  grid-template-rows: 1fr min-content;
1460
1455
  }
1461
- uc-external-source iframe {
1456
+ uc-external-source:not(#\#) iframe {
1462
1457
  display: block;
1463
1458
  width: 100%;
1464
1459
  height: 100%;
1465
1460
  border: none;
1466
1461
  }
1467
- uc-external-source .uc-iframe-wrapper {
1462
+ uc-external-source:not(#\#) .uc-iframe-wrapper {
1468
1463
  overflow: hidden;
1469
1464
  }
1470
- uc-external-source .uc-toolbar {
1465
+ uc-external-source:not(#\#) .uc-toolbar {
1471
1466
  display: flex;
1472
1467
  width: 100%;
1473
1468
  grid-gap: var(--uc-padding);
@@ -1476,26 +1471,26 @@
1476
1471
  padding: var(--uc-padding);
1477
1472
  border-top: 1px solid var(--uc-border);
1478
1473
  }
1479
- uc-external-source .uc-back-btn {
1474
+ uc-external-source:not(#\#) .uc-back-btn {
1480
1475
  padding-left: 0;
1481
1476
  }
1482
- uc-external-source .uc-selection-status-box {
1477
+ uc-external-source:not(#\#) .uc-selection-status-box {
1483
1478
  color: var(--uc-foreground);
1484
1479
  display: flex;
1485
1480
  flex-direction: column;
1486
1481
  align-items: center;
1487
1482
  justify-content: center;
1488
1483
  }
1489
- uc-external-source .uc-selection-status-box button {
1484
+ uc-external-source:not(#\#) .uc-selection-status-box button {
1490
1485
  color: var(--uc-primary);
1491
1486
  height: auto;
1492
1487
  padding: 0;
1493
1488
  background: none;
1494
1489
  }
1495
- uc-external-source .uc-selection-status-box button:hover {
1490
+ uc-external-source:not(#\#) .uc-selection-status-box button:hover {
1496
1491
  text-decoration: underline;
1497
1492
  }
1498
- uc-external-source uc-activity-header {
1493
+ uc-external-source:not(#\#) uc-activity-header {
1499
1494
  position: absolute;
1500
1495
  width: 100%;
1501
1496
  justify-content: flex-end;
@@ -1505,14 +1500,14 @@
1505
1500
  right: 0;
1506
1501
  pointer-events: none;
1507
1502
  }
1508
- uc-external-source uc-activity-header .uc-close-btn {
1503
+ uc-external-source:not(#\#) uc-activity-header .uc-close-btn {
1509
1504
  pointer-events: auto;
1510
1505
  }
1511
- uc-external-source .uc-done-btn > span.uc-hidden {
1506
+ uc-external-source:not(#\#) .uc-done-btn > span.uc-hidden {
1512
1507
  visibility: hidden;
1513
1508
  pointer-events: none;
1514
1509
  }
1515
- uc-external-source .uc-done-btn > uc-spinner {
1510
+ uc-external-source:not(#\#) .uc-done-btn > uc-spinner {
1516
1511
  position: absolute;
1517
1512
  width: 100%;
1518
1513
  height: 100%;
@@ -1520,21 +1515,19 @@
1520
1515
  align-items: center;
1521
1516
  justify-content: center;
1522
1517
  }
1523
- }
1524
1518
 
1525
1519
  /* src/blocks/FileItem/file-item.css */
1526
- @layer uc.components {
1527
- uc-file-item {
1520
+ uc-file-item:not(#\#) {
1528
1521
  --uc-file-item-gap: 4px;
1529
1522
  --uc-file-item-height: calc(var(--uc-preview-size) + var(--uc-padding) * 2 + var(--uc-file-item-gap));
1530
1523
  display: block;
1531
1524
  overflow: hidden;
1532
1525
  min-height: var(--uc-file-item-height);
1533
1526
  }
1534
- uc-file-item:last-of-type {
1527
+ uc-file-item:last-of-type:not(#\#) {
1535
1528
  --uc-file-item-gap: 0;
1536
1529
  }
1537
- uc-file-item > .uc-inner {
1530
+ uc-file-item:not(#\#) > .uc-inner {
1538
1531
  position: relative;
1539
1532
  display: grid;
1540
1533
  grid-template-columns: var(--uc-preview-size) 1fr max-content;
@@ -1548,16 +1541,16 @@
1548
1541
  border-radius: var(--uc-radius);
1549
1542
  transition: background-color var(--uc-transition);
1550
1543
  }
1551
- uc-file-item > .uc-inner[focused] {
1544
+ uc-file-item:not(#\#) > .uc-inner[focused] {
1552
1545
  background-color: transparent;
1553
1546
  }
1554
- uc-file-item > .uc-inner[uploading] .uc-edit-btn {
1547
+ uc-file-item:not(#\#) > .uc-inner[uploading] .uc-edit-btn {
1555
1548
  display: none;
1556
1549
  }
1557
- uc-file-item > :where(.uc-inner[failed], .uc-inner[limit-overflow]) {
1550
+ uc-file-item:not(#\#) > :where(.uc-inner[failed], .uc-inner[limit-overflow]) {
1558
1551
  background-color: var(--uc-destructive);
1559
1552
  }
1560
- uc-file-item .uc-thumb {
1553
+ uc-file-item:not(#\#) .uc-thumb {
1561
1554
  position: relative;
1562
1555
  display: inline-flex;
1563
1556
  width: var(--uc-preview-size);
@@ -1568,7 +1561,7 @@
1568
1561
  background-size: cover;
1569
1562
  border-radius: var(--uc-radius);
1570
1563
  }
1571
- uc-file-item .uc-file-name-wrapper {
1564
+ uc-file-item:not(#\#) .uc-file-name-wrapper {
1572
1565
  text-align: left;
1573
1566
  display: flex;
1574
1567
  flex-direction: column;
@@ -1580,29 +1573,29 @@
1580
1573
  overflow: hidden;
1581
1574
  color: var(--uc-muted-foreground);
1582
1575
  }
1583
- uc-file-item .uc-file-name {
1576
+ uc-file-item:not(#\#) .uc-file-name {
1584
1577
  max-width: 100%;
1585
1578
  overflow: hidden;
1586
1579
  white-space: nowrap;
1587
1580
  text-overflow: ellipsis;
1588
1581
  }
1589
- uc-file-item .uc-file-error {
1582
+ uc-file-item:not(#\#) .uc-file-error {
1590
1583
  display: none;
1591
1584
  color: var(--uc-destructive-foreground);
1592
1585
  font-size: 0.85em;
1593
1586
  z-index: 2;
1594
1587
  }
1595
- uc-file-item button.uc-remove-btn,
1596
- uc-file-item button.uc-edit-btn {
1588
+ uc-file-item:not(#\#) button.uc-remove-btn,
1589
+ uc-file-item:not(#\#) button.uc-edit-btn {
1597
1590
  color: var(--uc-muted-foreground);
1598
1591
  }
1599
- uc-file-item button svg {
1592
+ uc-file-item:not(#\#) button svg {
1600
1593
  pointer-events: none;
1601
1594
  }
1602
- uc-file-item button.uc-upload-btn {
1595
+ uc-file-item:not(#\#) button.uc-upload-btn {
1603
1596
  display: none;
1604
1597
  }
1605
- uc-file-item .uc-badge {
1598
+ uc-file-item:not(#\#) .uc-badge {
1606
1599
  position: absolute;
1607
1600
  bottom: 2px;
1608
1601
  right: 2px;
@@ -1618,40 +1611,40 @@
1618
1611
  justify-content: center;
1619
1612
  align-items: center;
1620
1613
  }
1621
- uc-file-item > .uc-inner:where([failed], [limit-overflow], [finished]) .uc-badge {
1614
+ uc-file-item:not(#\#) > .uc-inner:where([failed], [limit-overflow], [finished]) .uc-badge {
1622
1615
  transform: scale(1);
1623
1616
  opacity: 1;
1624
1617
  }
1625
- uc-file-item > .uc-inner:where([failed], [limit-overflow]) .uc-badge {
1618
+ uc-file-item:not(#\#) > .uc-inner:where([failed], [limit-overflow]) .uc-badge {
1626
1619
  background-color: var(--uc-destructive-foreground);
1627
1620
  }
1628
- uc-file-item > .uc-inner:where([failed], [limit-overflow]) .uc-file-error {
1621
+ uc-file-item:not(#\#) > .uc-inner:where([failed], [limit-overflow]) .uc-file-error {
1629
1622
  display: block;
1630
1623
  }
1631
- uc-file-item .uc-badge uc-icon,
1632
- uc-file-item .uc-badge uc-icon svg {
1624
+ uc-file-item:not(#\#) .uc-badge uc-icon,
1625
+ uc-file-item:not(#\#) .uc-badge uc-icon svg {
1633
1626
  width: 100%;
1634
1627
  height: 100%;
1635
1628
  }
1636
- uc-file-item .uc-progress-bar {
1629
+ uc-file-item:not(#\#) .uc-progress-bar {
1637
1630
  opacity: 0.7;
1638
1631
  top: calc(100% - 2px);
1639
1632
  height: 2px;
1640
1633
  }
1641
- :where(.uc-contrast) uc-file-item .uc-progress-bar {
1634
+ :where(.uc-contrast):not(#\#) uc-file-item .uc-progress-bar {
1642
1635
  opacity: 1;
1643
1636
  }
1644
- uc-file-item .uc-file-actions {
1637
+ uc-file-item:not(#\#) .uc-file-actions {
1645
1638
  display: flex;
1646
1639
  gap: 2px;
1647
1640
  align-items: center;
1648
1641
  justify-content: center;
1649
1642
  }
1650
- uc-file-item[mode=grid] {
1643
+ uc-file-item[mode=grid]:not(#\#) {
1651
1644
  overflow: visible;
1652
1645
  min-height: initial;
1653
1646
  }
1654
- uc-file-item[mode=grid] .uc-inner {
1647
+ uc-file-item[mode=grid]:not(#\#) .uc-inner {
1655
1648
  height: 100%;
1656
1649
  grid-template-columns: 1fr;
1657
1650
  grid-template-rows: 1fr max-content;
@@ -1660,24 +1653,24 @@
1660
1653
  margin-bottom: 0;
1661
1654
  border-radius: 0;
1662
1655
  }
1663
- uc-file-item[mode=grid] .uc-inner[failed] .uc-badge {
1656
+ uc-file-item[mode=grid]:not(#\#) .uc-inner[failed] .uc-badge {
1664
1657
  display: none;
1665
1658
  }
1666
- uc-file-item[mode=grid] .uc-thumb {
1659
+ uc-file-item[mode=grid]:not(#\#) .uc-thumb {
1667
1660
  width: 100%;
1668
1661
  height: 100%;
1669
1662
  }
1670
- uc-file-item[mode=grid] .uc-badge {
1663
+ uc-file-item[mode=grid]:not(#\#) .uc-badge {
1671
1664
  right: var(--uc-padding);
1672
1665
  bottom: var(--uc-padding);
1673
1666
  }
1674
- uc-file-item[mode=grid] .uc-file-name-wrapper {
1667
+ uc-file-item[mode=grid]:not(#\#) .uc-file-name-wrapper {
1675
1668
  padding: 0;
1676
1669
  }
1677
- uc-file-item[mode=grid] .uc-file-name:not([hidden]) + .uc-file-error {
1670
+ uc-file-item[mode=grid]:not(#\#) .uc-file-name:not([hidden]) + .uc-file-error {
1678
1671
  bottom: calc(var(--uc-padding) + var(--uc-font-size));
1679
1672
  }
1680
- uc-file-item[mode=grid] .uc-file-error {
1673
+ uc-file-item[mode=grid]:not(#\#) .uc-file-error {
1681
1674
  position: absolute;
1682
1675
  background-color: var(--uc-destructive-foreground);
1683
1676
  border-radius: var(--uc-radius);
@@ -1687,7 +1680,7 @@
1687
1680
  right: var(--uc-padding);
1688
1681
  padding: calc(var(--uc-padding) / 2) var(--uc-padding);
1689
1682
  }
1690
- uc-file-item[mode=grid] .uc-file-hint {
1683
+ uc-file-item[mode=grid]:not(#\#) .uc-file-hint {
1691
1684
  position: absolute;
1692
1685
  background-color: var(--uc-background);
1693
1686
  border-radius: var(--uc-radius);
@@ -1697,21 +1690,23 @@
1697
1690
  right: var(--uc-padding);
1698
1691
  padding: calc(var(--uc-padding) / 2) var(--uc-padding);
1699
1692
  }
1700
- uc-file-item[mode=grid] .uc-file-actions {
1693
+ uc-file-item[mode=grid]:not(#\#) .uc-file-actions {
1701
1694
  position: absolute;
1702
1695
  top: var(--uc-padding);
1703
1696
  right: var(--uc-padding);
1704
1697
  }
1705
- uc-file-item[mode=grid] button {
1698
+ uc-file-item[mode=grid]:not(#\#) button {
1706
1699
  background-color: var(--uc-background);
1707
1700
  }
1708
- uc-file-item[mode=grid] button:hover {
1701
+ uc-file-item[mode=grid]:not(#\#) button:hover {
1709
1702
  background-color: var(--uc-muted);
1710
1703
  }
1711
- uc-file-item[mode=grid] .uc-progress-bar {
1712
- width: initial;
1704
+ uc-file-item[mode=grid]:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .uc-progress-bar {
1713
1705
  height: 4px !important;
1714
1706
  top: initial !important;
1707
+ }
1708
+ uc-file-item[mode=grid]:not(#\#) .uc-progress-bar {
1709
+ width: initial;
1715
1710
  bottom: var(--uc-padding);
1716
1711
  left: var(--uc-padding);
1717
1712
  right: var(--uc-padding);
@@ -1720,51 +1715,47 @@
1720
1715
  transition: background-color 0.3s, opacity 0.3s;
1721
1716
  background-color: var(--uc-background);
1722
1717
  }
1723
- uc-file-item[mode=grid] .uc-progress-bar :is(.uc-fake-progress, .uc-progress) {
1718
+ uc-file-item[mode=grid]:not(#\#) .uc-progress-bar :is(.uc-fake-progress, .uc-progress) {
1724
1719
  background-color: var(--uc-primary);
1725
1720
  }
1726
- uc-file-item[mode=grid] .uc-progress-bar[hasfilename] {
1721
+ uc-file-item[mode=grid]:not(#\#) .uc-progress-bar[hasfilename] {
1727
1722
  bottom: calc(var(--uc-padding) + var(--uc-font-size));
1728
1723
  }
1729
- }
1730
1724
 
1731
1725
  /* src/blocks/Icon/icon.css */
1732
- @layer uc.components {
1733
- uc-icon {
1726
+ uc-icon:not(#\#) {
1734
1727
  display: inline-flex;
1735
1728
  align-items: center;
1736
1729
  justify-content: center;
1737
1730
  width: var(--uc-button-size);
1738
1731
  height: var(--uc-button-size);
1739
1732
  }
1740
- uc-icon svg {
1733
+ uc-icon:not(#\#) svg {
1741
1734
  width: calc(var(--uc-button-size) / 2);
1742
1735
  height: calc(var(--uc-button-size) / 2);
1743
1736
  overflow: visible;
1744
1737
  }
1745
- }
1746
1738
 
1747
1739
  /* src/blocks/Modal/modal.css */
1748
- @layer uc.components {
1749
- @supports selector(dialog::backdrop) {
1750
- :where([uc-modal]) > dialog::backdrop {
1740
+ @supports selector(dialog::backdrop) {
1741
+ :where([uc-modal]):not(#\#) > dialog::backdrop {
1751
1742
  background-color: oklch(0 0 0 / 0.1);
1752
1743
  }
1753
- :where([uc-modal])[strokes] > dialog::backdrop {
1744
+ :where([uc-modal])[strokes]:not(#\#) > dialog::backdrop {
1754
1745
  background-image: var(--modal-backdrop-background-image);
1755
1746
  }
1756
1747
  }
1757
- :where([uc-modal]) > dialog[open] {
1748
+ :where([uc-modal]):not(#\#) > dialog[open] {
1758
1749
  transform: translateY(0px);
1759
1750
  visibility: visible;
1760
1751
  opacity: 1;
1761
1752
  }
1762
- :where([uc-modal]) > dialog:not([open]) {
1753
+ :where([uc-modal]):not(#\#) > dialog:not([open]) {
1763
1754
  transform: translateY(20px);
1764
1755
  visibility: hidden;
1765
1756
  opacity: 0;
1766
1757
  }
1767
- :where([uc-modal]) > dialog {
1758
+ :where([uc-modal]):not(#\#) > dialog {
1768
1759
  display: flex;
1769
1760
  flex-direction: column;
1770
1761
  width: min(var(--uc-dialog-width), 100%);
@@ -1780,14 +1771,12 @@
1780
1771
  box-shadow: var(--uc-dialog-shadow);
1781
1772
  transition: transform 0.4s ease, opacity 0.4s ease;
1782
1773
  }
1783
- :where(.uc-contrast) :where([uc-modal]) > dialog {
1774
+ :where(.uc-contrast):not(#\#) :where([uc-modal]) > dialog {
1784
1775
  outline: 1px solid var(--uc-border);
1785
1776
  }
1786
- }
1787
1777
 
1788
1778
  /* src/blocks/ProgressBar/progress-bar.css */
1789
- @layer uc.components {
1790
- uc-progress-bar {
1779
+ uc-progress-bar:not(#\#) {
1791
1780
  --l-progress-value: 0;
1792
1781
  position: absolute;
1793
1782
  top: 0;
@@ -1800,10 +1789,10 @@
1800
1789
  transition: opacity 0.3s;
1801
1790
  opacity: 1;
1802
1791
  }
1803
- uc-progress-bar.uc-progress-bar--hidden {
1792
+ uc-progress-bar.uc-progress-bar--hidden:not(#\#) {
1804
1793
  opacity: 0;
1805
1794
  }
1806
- uc-progress-bar .uc-progress {
1795
+ uc-progress-bar:not(#\#) .uc-progress {
1807
1796
  position: absolute;
1808
1797
  width: calc(var(--l-progress-value) * 1%);
1809
1798
  height: 100%;
@@ -1812,10 +1801,11 @@
1812
1801
  opacity: 1;
1813
1802
  transition: width 0.6s, opacity 0.3s;
1814
1803
  }
1815
- uc-progress-bar .uc-progress--hidden {
1804
+ uc-progress-bar:not(#\#) .uc-progress--hidden {
1816
1805
  opacity: 0;
1806
+ transition: opacity 0.3s;
1817
1807
  }
1818
- uc-progress-bar .uc-fake-progress {
1808
+ uc-progress-bar:not(#\#) .uc-fake-progress {
1819
1809
  --l-fake-progress-width: 30;
1820
1810
  position: absolute;
1821
1811
  width: calc(var(--l-fake-progress-width) * 1%);
@@ -1826,23 +1816,13 @@
1826
1816
  transition: opacity 0.3s;
1827
1817
  z-index: 1;
1828
1818
  }
1829
- uc-progress-bar .uc-fake-progress--hidden {
1819
+ uc-progress-bar:not(#\#) .uc-fake-progress--hidden {
1830
1820
  opacity: 0;
1831
1821
  animation: none;
1832
1822
  }
1833
- @keyframes fake-progress-animation {
1834
- from {
1835
- transform: translateX(-100%);
1836
- }
1837
- to {
1838
- transform: translateX(calc(100 / var(--l-fake-progress-width) * 100 * 1%));
1839
- }
1840
- }
1841
- }
1842
1823
 
1843
1824
  /* src/blocks/ProgressBarCommon/progress-bar-common.css */
1844
- @layer uc.components {
1845
- uc-progress-bar-common {
1825
+ uc-progress-bar-common:not(#\#) {
1846
1826
  position: fixed;
1847
1827
  right: 0;
1848
1828
  bottom: 0;
@@ -1853,18 +1833,16 @@
1853
1833
  background-color: var(--uc-background);
1854
1834
  transition: opacity 0.3s;
1855
1835
  }
1856
- uc-progress-bar-common:not([active]) {
1836
+ uc-progress-bar-common:not([active]):not(#\#) {
1857
1837
  opacity: 0;
1858
1838
  pointer-events: none;
1859
1839
  }
1860
- }
1861
1840
 
1862
1841
  /* src/blocks/Select/select.css */
1863
- @layer uc.components {
1864
- uc-select {
1842
+ uc-select:not(#\#) {
1865
1843
  display: inline-flex;
1866
1844
  }
1867
- uc-select select {
1845
+ uc-select:not(#\#) select {
1868
1846
  position: relative;
1869
1847
  display: inline-flex;
1870
1848
  align-items: center;
@@ -1882,15 +1860,13 @@
1882
1860
  color: var(--uc-secondary-foreground);
1883
1861
  background-color: var(--uc-secondary);
1884
1862
  }
1885
- }
1886
1863
 
1887
1864
  /* src/blocks/SimpleBtn/simple-btn.css */
1888
- @layer uc.components {
1889
- :where([uc-simple-btn]) {
1865
+ :where([uc-simple-btn]):not(#\#) {
1890
1866
  position: relative;
1891
1867
  display: inline-flex;
1892
1868
  }
1893
- :where([uc-simple-btn]) button {
1869
+ :where([uc-simple-btn]):not(#\#) button {
1894
1870
  height: auto;
1895
1871
  gap: 0.5em;
1896
1872
  padding: var(--uc-simple-btn-padding);
@@ -1899,21 +1875,21 @@
1899
1875
  font-size: var(--uc-simple-btn-font-size);
1900
1876
  font-family: var(--uc-simple-btn-font-family);
1901
1877
  }
1902
- :where([uc-simple-btn]) button uc-icon {
1878
+ :where([uc-simple-btn]):not(#\#) button uc-icon {
1903
1879
  width: auto;
1904
1880
  height: auto;
1905
1881
  }
1906
- :where([uc-simple-btn]) button uc-icon svg {
1882
+ :where([uc-simple-btn]):not(#\#) button uc-icon svg {
1907
1883
  width: 0.9em;
1908
1884
  height: 0.9em;
1909
1885
  }
1910
- :where([uc-simple-btn]) button:hover {
1886
+ :where([uc-simple-btn]):not(#\#) button:hover {
1911
1887
  background-color: var(--uc-simple-btn-hover);
1912
1888
  }
1913
- :where([uc-simple-btn]) > uc-drop-area {
1889
+ :where([uc-simple-btn]):not(#\#) > uc-drop-area {
1914
1890
  display: contents;
1915
1891
  }
1916
- :where([uc-simple-btn]) .uc-visual-drop-area {
1892
+ :where([uc-simple-btn]):not(#\#) .uc-visual-drop-area {
1917
1893
  position: absolute;
1918
1894
  top: 0px;
1919
1895
  left: 0px;
@@ -1931,23 +1907,21 @@
1931
1907
  opacity: 0;
1932
1908
  transition: opacity var(--uc-transition);
1933
1909
  }
1934
- :where([uc-simple-btn]) > uc-drop-area[drag-state=active] .uc-visual-drop-area {
1910
+ :where([uc-simple-btn]):not(#\#) > uc-drop-area[drag-state=active] .uc-visual-drop-area {
1935
1911
  opacity: 1;
1936
1912
  }
1937
- :where([uc-simple-btn]) > uc-drop-area[drag-state=inactive] .uc-visual-drop-area {
1913
+ :where([uc-simple-btn]):not(#\#) > uc-drop-area[drag-state=inactive] .uc-visual-drop-area {
1938
1914
  opacity: 0;
1939
1915
  }
1940
- :where([uc-simple-btn]) > uc-drop-area[drag-state=near] .uc-visual-drop-area {
1916
+ :where([uc-simple-btn]):not(#\#) > uc-drop-area[drag-state=near] .uc-visual-drop-area {
1941
1917
  opacity: 1;
1942
1918
  }
1943
- :where([uc-simple-btn]) > uc-drop-area[drag-state=over] .uc-visual-drop-area {
1919
+ :where([uc-simple-btn]):not(#\#) > uc-drop-area[drag-state=over] .uc-visual-drop-area {
1944
1920
  opacity: 1;
1945
1921
  }
1946
- }
1947
1922
 
1948
1923
  /* src/blocks/SourceBtn/source-btn.css */
1949
- @layer uc.components {
1950
- uc-source-btn > button {
1924
+ uc-source-btn:not(#\#) > button {
1951
1925
  display: flex;
1952
1926
  align-items: center;
1953
1927
  margin-bottom: 2px;
@@ -1961,17 +1935,17 @@
1961
1935
  background-color: unset;
1962
1936
  height: unset;
1963
1937
  }
1964
- uc-source-btn:last-child > button {
1938
+ uc-source-btn:last-child:not(#\#) > button {
1965
1939
  margin-bottom: 0;
1966
1940
  }
1967
- uc-source-btn > button:hover {
1941
+ uc-source-btn:not(#\#) > button:hover {
1968
1942
  background-color: var(--uc-primary-transparent);
1969
1943
  }
1970
- :where(.uc-contrast) uc-source-btn > button:hover {
1944
+ :where(.uc-contrast):not(#\#) uc-source-btn > button:hover {
1971
1945
  background-color: var(--uc-secondary);
1972
1946
  color: var(--uc-foreground);
1973
1947
  }
1974
- uc-source-btn uc-icon {
1948
+ uc-source-btn:not(#\#) uc-icon {
1975
1949
  display: inline-flex;
1976
1950
  flex-grow: 1;
1977
1951
  justify-content: center;
@@ -1979,10 +1953,10 @@
1979
1953
  margin-right: var(--uc-padding);
1980
1954
  opacity: 0.8;
1981
1955
  }
1982
- :where(.uc-contrast) uc-source-btn uc-icon {
1956
+ :where(.uc-contrast):not(#\#) uc-source-btn uc-icon {
1983
1957
  opacity: 1;
1984
1958
  }
1985
- uc-source-btn .uc-txt {
1959
+ uc-source-btn:not(#\#) .uc-txt {
1986
1960
  display: flex;
1987
1961
  align-items: center;
1988
1962
  box-sizing: border-box;
@@ -1992,19 +1966,9 @@
1992
1966
  white-space: nowrap;
1993
1967
  border: none;
1994
1968
  }
1995
- }
1996
1969
 
1997
1970
  /* src/blocks/Spinner/spinner.css */
1998
- @layer uc.components {
1999
- @keyframes uc-spinner-keyframes {
2000
- from {
2001
- transform: rotate(0deg);
2002
- }
2003
- to {
2004
- transform: rotate(360deg);
2005
- }
2006
- }
2007
- .uc-spinner {
1971
+ .uc-spinner:not(#\#) {
2008
1972
  width: 1em;
2009
1973
  height: 1em;
2010
1974
  border: solid 2px transparent;
@@ -2013,15 +1977,13 @@
2013
1977
  border-radius: 50%;
2014
1978
  animation: uc-spinner-keyframes 400ms linear infinite;
2015
1979
  }
2016
- }
2017
1980
 
2018
1981
  /* src/blocks/StartFrom/start-from.css */
2019
- @layer uc.components {
2020
- uc-start-from {
1982
+ uc-start-from:not(#\#) {
2021
1983
  display: block;
2022
1984
  overflow-y: auto;
2023
1985
  }
2024
- uc-start-from .uc-content {
1986
+ uc-start-from:not(#\#) .uc-content {
2025
1987
  display: grid;
2026
1988
  grid-auto-flow: row;
2027
1989
  gap: calc(var(--uc-padding) * 2);
@@ -2030,30 +1992,38 @@
2030
1992
  padding: calc(var(--uc-padding) * 2);
2031
1993
  background-color: var(--uc-background);
2032
1994
  }
2033
- [uc-modal] > dialog:has(uc-start-from[active]) {
1995
+ [uc-modal]:not(#\#) > dialog:has(uc-start-from[active]) {
2034
1996
  width: var(--uc-dialog-width);
2035
1997
  }
2036
- [uc-modal] uc-start-from uc-drop-area {
1998
+ [uc-modal]:not(#\#) uc-start-from uc-drop-area {
2037
1999
  border-radius: var(--uc-radius);
2038
2000
  }
2039
- @media only screen and (max-width: 430px) {
2040
- [uc-modal] uc-start-from uc-drop-area {
2001
+ @media only screen and (max-width: 430px) {
2002
+ [uc-modal]:not(#\#) uc-start-from uc-drop-area {
2041
2003
  display: none;
2042
2004
  }
2043
2005
  }
2044
- }
2045
2006
 
2046
2007
  /* src/blocks/Thumb/thumb.css */
2047
- @layer uc.components {
2048
- uc-thumb {
2008
+ uc-thumb:not(#\#) {
2049
2009
  width: 100%;
2050
2010
  height: 100%;
2051
2011
  }
2052
- }
2012
+ .uc-thumb:not(#\#) {
2013
+ position: relative;
2014
+ overflow: hidden;
2015
+ width: 100%;
2016
+ height: 100%;
2017
+ }
2018
+ .uc-thumb__img:not(#\#) {
2019
+ width: 100%;
2020
+ height: 100%;
2021
+ object-fit: cover;
2022
+ display: block;
2023
+ }
2053
2024
 
2054
2025
  /* src/blocks/UploadList/upload-list.css */
2055
- @layer uc.components {
2056
- uc-upload-list {
2026
+ uc-upload-list:not(#\#) {
2057
2027
  position: relative;
2058
2028
  display: flex;
2059
2029
  flex-direction: column;
@@ -2063,31 +2033,31 @@
2063
2033
  background-color: var(--uc-background);
2064
2034
  transition: opacity var(--uc-transition);
2065
2035
  }
2066
- uc-upload-list .uc-no-files {
2036
+ uc-upload-list:not(#\#) .uc-no-files {
2067
2037
  height: 32px;
2068
2038
  padding: 20px;
2069
2039
  }
2070
- uc-upload-list .uc-files {
2040
+ uc-upload-list:not(#\#) .uc-files {
2071
2041
  display: block;
2072
2042
  flex: 1;
2073
2043
  min-height: 32px;
2074
2044
  padding: 0 var(--uc-padding);
2075
2045
  overflow: auto;
2076
2046
  }
2077
- uc-upload-list .uc-files-wrapper {
2047
+ uc-upload-list:not(#\#) .uc-files-wrapper {
2078
2048
  display: contents;
2079
2049
  }
2080
- uc-upload-list .uc-toolbar {
2050
+ uc-upload-list:not(#\#) .uc-toolbar {
2081
2051
  display: flex;
2082
2052
  gap: 4px;
2083
2053
  justify-content: space-between;
2084
2054
  padding: var(--uc-padding);
2085
2055
  background-color: var(--uc-background);
2086
2056
  }
2087
- uc-upload-list .uc-toolbar-spacer {
2057
+ uc-upload-list:not(#\#) .uc-toolbar-spacer {
2088
2058
  flex: 1;
2089
2059
  }
2090
- uc-upload-list uc-drop-area {
2060
+ uc-upload-list:not(#\#) uc-drop-area {
2091
2061
  position: absolute;
2092
2062
  top: 0;
2093
2063
  left: 0;
@@ -2096,10 +2066,10 @@
2096
2066
  margin: var(--uc-padding);
2097
2067
  border-radius: var(--uc-radius);
2098
2068
  }
2099
- uc-upload-list uc-activity-header > .uc-header-text {
2069
+ uc-upload-list:not(#\#) uc-activity-header > .uc-header-text {
2100
2070
  padding: 0 var(--uc-padding);
2101
2071
  }
2102
- uc-upload-list .uc-common-error {
2072
+ uc-upload-list:not(#\#) .uc-common-error {
2103
2073
  border-radius: var(--uc-radius);
2104
2074
  color: var(--uc-destructive-foreground);
2105
2075
  background-color: var(--uc-destructive);
@@ -2110,98 +2080,92 @@
2110
2080
  margin: 4px var(--uc-padding) 0 var(--uc-padding);
2111
2081
  font-size: 0.925em;
2112
2082
  }
2113
- uc-upload-list .uc-add-more-btn uc-icon {
2083
+ uc-upload-list:not(#\#) .uc-add-more-btn uc-icon {
2114
2084
  display: none;
2115
2085
  }
2116
- uc-upload-list[mode=grid] .uc-files {
2086
+ uc-upload-list[mode=grid]:not(#\#) .uc-files {
2117
2087
  display: flex;
2118
2088
  flex-wrap: wrap;
2119
2089
  gap: var(--uc-grid-gap);
2120
2090
  }
2121
- uc-upload-list .uc-files .uc-add-more-btn,
2122
- uc-upload-list[mode=grid] uc-file-item {
2091
+ uc-upload-list:not(#\#) .uc-files .uc-add-more-btn,
2092
+ uc-upload-list[mode=grid]:not(#\#) uc-file-item {
2123
2093
  flex: 0 0 calc((100% - (var(--uc-grid-gap) * (var(--uc-grid-col) - 1))) / var(--uc-grid-col));
2124
2094
  max-width: calc((100% - (var(--uc-grid-gap) * (var(--uc-grid-col) - 1))) / var(--uc-grid-col));
2125
2095
  height: var(--uc-grid-preview-image-height);
2126
2096
  aspect-ratio: var(--uc-grid-aspect-ratio);
2127
2097
  }
2128
- uc-upload-list .uc-files .uc-add-more-btn {
2098
+ uc-upload-list:not(#\#) .uc-files .uc-add-more-btn {
2129
2099
  display: none;
2130
2100
  }
2131
- }
2132
2101
 
2133
2102
  /* src/blocks/UrlSource/url-source.css */
2134
- @layer uc.components {
2135
- uc-url-source {
2103
+ uc-url-source:not(#\#) {
2136
2104
  display: block;
2137
2105
  background-color: var(--uc-background);
2138
2106
  }
2139
- uc-url-source > .uc-content {
2107
+ uc-url-source:not(#\#) > .uc-content {
2140
2108
  display: grid;
2141
2109
  grid-gap: 4px;
2142
2110
  grid-template-columns: 1fr min-content;
2143
2111
  padding: var(--uc-padding);
2144
2112
  padding-top: 0;
2145
2113
  }
2146
- uc-url-source .uc-url-input {
2114
+ uc-url-source:not(#\#) .uc-url-input {
2147
2115
  display: flex;
2148
2116
  }
2149
- }
2150
2117
 
2151
2118
  /* src/solutions/file-uploader/inline/index.css */
2152
- @layer uc.solutions {
2153
- [uc-file-uploader-inline] uc-start-from {
2119
+ [uc-file-uploader-inline]:not(#\#):not(#\#):not(#\#) uc-start-from {
2154
2120
  height: 100%;
2155
2121
  container-type: inline-size;
2156
2122
  }
2157
- [uc-file-uploader-inline] {
2123
+ [uc-file-uploader-inline]:not(#\#):not(#\#):not(#\#) {
2158
2124
  --cfg-done-activity: "start-from";
2159
2125
  --cfg-init-activity: "start-from";
2160
2126
  flex: 1;
2161
2127
  }
2162
- [uc-file-uploader-inline] uc-activity-header::after {
2128
+ [uc-file-uploader-inline]:not(#\#):not(#\#):not(#\#) uc-activity-header::after {
2163
2129
  width: var(--uc-button-size);
2164
2130
  height: var(--uc-button-size);
2165
2131
  content: "";
2166
2132
  }
2167
- [uc-file-uploader-inline] uc-activity-header .uc-close-btn {
2133
+ [uc-file-uploader-inline]:not(#\#):not(#\#):not(#\#) uc-activity-header .uc-close-btn {
2168
2134
  display: none;
2169
2135
  }
2170
- [uc-file-uploader-inline] uc-copyright .uc-credits {
2136
+ [uc-file-uploader-inline]:not(#\#):not(#\#):not(#\#) uc-copyright .uc-credits {
2171
2137
  position: static;
2172
2138
  }
2173
- @container (min-width: 500px) {
2174
- [uc-file-uploader-inline] uc-start-from .uc-content {
2139
+ @container (min-width: 500px) {
2140
+ [uc-file-uploader-inline]:not(#\#):not(#\#):not(#\#) uc-start-from .uc-content {
2175
2141
  grid-template-columns: 1fr max-content;
2176
2142
  height: 100%;
2177
2143
  }
2178
- [uc-file-uploader-inline] uc-start-from uc-copyright {
2144
+ [uc-file-uploader-inline]:not(#\#):not(#\#):not(#\#) uc-start-from uc-copyright {
2179
2145
  grid-column: 2;
2180
2146
  }
2181
- [uc-file-uploader-inline] uc-start-from uc-drop-area {
2147
+ [uc-file-uploader-inline]:not(#\#):not(#\#):not(#\#) uc-start-from uc-drop-area {
2182
2148
  grid-row: span 3;
2183
2149
  }
2184
- [uc-file-uploader-inline] uc-start-from:has(uc-copyright[hidden]) uc-drop-area {
2150
+ [uc-file-uploader-inline]:not(#\#):not(#\#):not(#\#) uc-start-from:has(uc-copyright[hidden]) uc-drop-area {
2185
2151
  grid-row: span 2;
2186
2152
  }
2187
- [uc-file-uploader-inline] uc-start-from:has(.uc-cancel-btn[hidden]) uc-drop-area {
2153
+ [uc-file-uploader-inline]:not(#\#):not(#\#):not(#\#) uc-start-from:has(.uc-cancel-btn[hidden]) uc-drop-area {
2188
2154
  grid-row: span 2;
2189
2155
  }
2190
- [uc-file-uploader-inline] uc-start-from:has(uc-copyright[hidden]):has(.uc-cancel-btn[hidden]) uc-drop-area {
2156
+ [uc-file-uploader-inline]:not(#\#):not(#\#):not(#\#) uc-start-from:has(uc-copyright[hidden]):has(.uc-cancel-btn[hidden]) uc-drop-area {
2191
2157
  grid-row: span 1;
2192
2158
  }
2193
2159
  }
2194
- }
2195
2160
 
2196
2161
  /* src/solutions/file-uploader/minimal/index.css */
2197
- @layer uc.solutions {
2198
- :where([uc-file-uploader-minimal]) {
2162
+ :where([uc-file-uploader-minimal]):not(#\#):not(#\#):not(#\#) {
2199
2163
  --cfg-init-activity: "start-from";
2200
2164
  --cfg-done-activity: "upload-list";
2201
2165
  position: relative;
2202
2166
  display: block;
2203
2167
  }
2204
- [uc-file-uploader-minimal] > uc-start-from .uc-content {
2168
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) > uc-start-from .uc-content {
2205
2169
  display: flex;
2206
2170
  flex-direction: column;
2207
2171
  gap: 4px;
@@ -2210,7 +2174,7 @@
2210
2174
  align-items: center;
2211
2175
  background-color: transparent;
2212
2176
  }
2213
- :where([uc-file-uploader-minimal] > uc-start-from uc-drop-area) {
2177
+ :where([uc-file-uploader-minimal] > uc-start-from uc-drop-area):not(#\#):not(#\#):not(#\#) {
2214
2178
  display: flex;
2215
2179
  position: relative;
2216
2180
  align-items: center;
@@ -2222,10 +2186,10 @@
2222
2186
  background-color: var(--uc-muted);
2223
2187
  border-radius: calc(var(--uc-radius) * 1.75);
2224
2188
  }
2225
- :where(.uc-contrast) :where([uc-file-uploader-minimal] > uc-start-from uc-drop-area) {
2189
+ :where(.uc-contrast):not(#\#):not(#\#):not(#\#) :where([uc-file-uploader-minimal] > uc-start-from uc-drop-area) {
2226
2190
  background-color: transparent;
2227
2191
  }
2228
- :where([uc-file-uploader-minimal] > uc-start-from uc-drop-area)::before {
2192
+ :where([uc-file-uploader-minimal] > uc-start-from uc-drop-area):not(#\#):not(#\#):not(#\#)::before {
2229
2193
  content: "";
2230
2194
  z-index: -1;
2231
2195
  width: 100%;
@@ -2233,16 +2197,16 @@
2233
2197
  position: absolute;
2234
2198
  background-color: var(--uc-background);
2235
2199
  }
2236
- :where([uc-file-uploader-minimal]:has([single]) > uc-start-from uc-drop-area) {
2200
+ :where([uc-file-uploader-minimal]:has([single]) > uc-start-from uc-drop-area):not(#\#):not(#\#):not(#\#) {
2237
2201
  aspect-ratio: var(--uc-grid-aspect-ratio);
2238
2202
  }
2239
- [uc-file-uploader-minimal] uc-upload-list uc-activity-header {
2203
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-upload-list uc-activity-header {
2240
2204
  display: none;
2241
2205
  }
2242
- [uc-file-uploader-minimal] uc-upload-list > .uc-toolbar {
2206
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-upload-list > .uc-toolbar {
2243
2207
  background-color: transparent;
2244
2208
  }
2245
- [uc-file-uploader-minimal] uc-upload-list {
2209
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-upload-list {
2246
2210
  width: 100%;
2247
2211
  height: unset;
2248
2212
  padding: 4px;
@@ -2250,84 +2214,79 @@
2250
2214
  border: 1px dashed var(--uc-border);
2251
2215
  border-radius: calc(var(--uc-radius) * 1.75);
2252
2216
  }
2253
- [uc-file-uploader-minimal] uc-upload-list .uc-files {
2217
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-upload-list .uc-files {
2254
2218
  padding: 0;
2255
2219
  }
2256
- [uc-file-uploader-minimal] uc-upload-list .uc-toolbar {
2220
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-upload-list .uc-toolbar {
2257
2221
  display: block;
2258
2222
  padding: 0;
2259
2223
  }
2260
- [uc-file-uploader-minimal] uc-upload-list .uc-toolbar .uc-cancel-btn,
2261
- [uc-file-uploader-minimal] uc-upload-list .uc-toolbar .uc-upload-btn,
2262
- [uc-file-uploader-minimal] uc-upload-list .uc-toolbar .uc-done-btn {
2224
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-upload-list .uc-toolbar .uc-cancel-btn,
2225
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-upload-list .uc-toolbar .uc-upload-btn,
2226
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-upload-list .uc-toolbar .uc-done-btn {
2263
2227
  display: none;
2264
2228
  }
2265
- [uc-file-uploader-minimal] uc-upload-list .uc-toolbar .uc-add-more-btn {
2229
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-upload-list .uc-toolbar .uc-add-more-btn {
2266
2230
  width: 100%;
2267
2231
  height: calc(var(--uc-preview-size) + var(--uc-padding) * 2);
2268
2232
  margin-top: 4px;
2269
2233
  }
2270
- [uc-file-uploader-minimal] uc-upload-list .uc-toolbar .uc-add-more-btn[disabled] {
2234
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-upload-list .uc-toolbar .uc-add-more-btn[disabled] {
2271
2235
  display: none;
2272
2236
  }
2273
- [uc-file-uploader-minimal] uc-upload-list .uc-toolbar .uc-add-more-btn > span {
2237
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-upload-list .uc-toolbar .uc-add-more-btn > span {
2274
2238
  display: none;
2275
2239
  }
2276
- [uc-file-uploader-minimal] uc-upload-list .uc-toolbar .uc-add-more-btn > uc-icon {
2240
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-upload-list .uc-toolbar .uc-add-more-btn > uc-icon {
2277
2241
  display: flex;
2278
2242
  }
2279
- [uc-file-uploader-minimal] uc-file-item uc-progress-bar {
2243
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-file-item uc-progress-bar {
2280
2244
  top: 0 !important;
2281
2245
  height: 100% !important;
2282
2246
  }
2283
- [uc-file-uploader-minimal] uc-file-item uc-progress-bar .uc-progress {
2247
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-file-item uc-progress-bar .uc-progress {
2284
2248
  background-color: var(--uc-primary-transparent);
2285
2249
  border-radius: var(--uc-radius);
2286
2250
  }
2287
- [uc-file-uploader-minimal] uc-file-item uc-progress-bar .uc-fake-progress {
2251
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-file-item uc-progress-bar .uc-fake-progress {
2288
2252
  background-color: var(--uc-primary-transparent);
2289
2253
  border-radius: var(--uc-radius);
2290
2254
  }
2291
- [uc-file-uploader-minimal] uc-upload-list uc-drop-area {
2255
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-upload-list uc-drop-area {
2292
2256
  width: 100%;
2293
2257
  height: 100%;
2294
2258
  margin: 0;
2295
2259
  border-radius: calc(var(--uc-radius) * 1.75);
2296
2260
  }
2297
- [uc-file-uploader-minimal] uc-upload-list .uc-common-error {
2261
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-upload-list .uc-common-error {
2298
2262
  margin: 4px 0 0;
2299
2263
  }
2300
- [uc-file-uploader-minimal] uc-copyright .uc-credits {
2264
+ [uc-file-uploader-minimal]:not(#\#):not(#\#):not(#\#) uc-copyright .uc-credits {
2301
2265
  position: static;
2302
2266
  }
2303
- [uc-file-uploader-minimal][mode=grid] uc-upload-list .uc-toolbar .uc-add-more-btn {
2267
+ [uc-file-uploader-minimal][mode=grid]:not(#\#):not(#\#):not(#\#) uc-upload-list .uc-toolbar .uc-add-more-btn {
2304
2268
  display: none;
2305
2269
  }
2306
- [uc-file-uploader-minimal][mode=grid] uc-upload-list .uc-files .uc-add-more-btn {
2270
+ [uc-file-uploader-minimal][mode=grid]:not(#\#):not(#\#):not(#\#) uc-upload-list .uc-files .uc-add-more-btn {
2307
2271
  display: flex;
2308
2272
  }
2309
- [uc-file-uploader-minimal][mode=grid] uc-upload-list .uc-files .uc-add-more-btn > span {
2273
+ [uc-file-uploader-minimal][mode=grid]:not(#\#):not(#\#):not(#\#) uc-upload-list .uc-files .uc-add-more-btn > span {
2310
2274
  display: none;
2311
2275
  }
2312
- [uc-file-uploader-minimal][mode=grid] uc-upload-list .uc-files .uc-add-more-btn > uc-icon {
2276
+ [uc-file-uploader-minimal][mode=grid]:not(#\#):not(#\#):not(#\#) uc-upload-list .uc-files .uc-add-more-btn > uc-icon {
2313
2277
  display: flex;
2314
2278
  }
2315
- }
2316
2279
 
2317
2280
  /* src/blocks/themes/uc-basic/layers.css */
2318
- @layer uc, uc.base, uc.components, uc.rules, uc.solutions, uc.post-reset;
2319
2281
 
2320
2282
  /* src/blocks/themes/uc-basic/config.css */
2321
- @layer uc.base {
2322
- :where([uc-wgt-common]) {
2283
+ :where([uc-wgt-common]) {
2323
2284
  --cfg-init-activity: "start-from";
2324
2285
  --cfg-done-activity: "";
2325
2286
  }
2326
- }
2327
2287
 
2328
2288
  /* src/blocks/themes/uc-basic/theme.css */
2329
- @layer uc.base {
2330
- :where([uc-wgt-common]) {
2289
+ :where([uc-wgt-common]) {
2331
2290
  --uc-font-family: system-ui;
2332
2291
  --uc-font-size: 14px;
2333
2292
  --uc-line-height: normal;
@@ -2365,7 +2324,7 @@
2365
2324
  --uc-simple-btn-hover: var(--uc-simple-btn-hover-light);
2366
2325
  --uc-simple-btn-foreground: var(--uc-simple-btn-foreground-light);
2367
2326
  }
2368
- @supports not (color: oklch(0% 0 0)) {
2327
+ @supports not (color: oklch(0% 0 0)) {
2369
2328
  :where([uc-wgt-common]) {
2370
2329
  --uc-primary-rgb-light: 23 75 215;
2371
2330
  --uc-primary-light: rgb(var(--uc-primary-rgb-light));
@@ -2407,7 +2366,7 @@
2407
2366
  --uc-simple-btn-foreground-dark: rgb(255 255 255);
2408
2367
  }
2409
2368
  }
2410
- @supports (color: oklch(0% 0 0)) {
2369
+ @supports (color: oklch(0% 0 0)) {
2411
2370
  :where([uc-wgt-common]) {
2412
2371
  --uc-primary-oklch-light: 47% 0.22 264;
2413
2372
  --uc-primary-light: oklch(var(--uc-primary-oklch-light));
@@ -2449,24 +2408,24 @@
2449
2408
  --uc-simple-btn-foreground-dark: oklch(100% 0 0);
2450
2409
  }
2451
2410
  }
2452
- @media only screen and (max-height: 600px) {
2411
+ @media only screen and (max-height: 600px) {
2453
2412
  :where([uc-wgt-common]) {
2454
2413
  --uc-dialog-max-height: 100%;
2455
2414
  }
2456
2415
  }
2457
- @media only screen and (max-width: 680px) {
2416
+ @media only screen and (max-width: 680px) {
2458
2417
  :where([uc-wgt-common]) {
2459
2418
  --uc-grid-col: 2;
2460
2419
  }
2461
2420
  }
2462
- @media only screen and (max-width: 430px) {
2421
+ @media only screen and (max-width: 430px) {
2463
2422
  :where([uc-wgt-common]) {
2464
2423
  --uc-dialog-max-width: 100vw;
2465
2424
  --uc-dialog-max-height: var(--uploadcare-blocks-window-height);
2466
2425
  --uc-grid-col: 1;
2467
2426
  }
2468
2427
  }
2469
- @media (prefers-color-scheme: light) {
2428
+ @media (prefers-color-scheme: light) {
2470
2429
  :where([uc-wgt-common]) {
2471
2430
  --uc-background: var(--uc-background-light);
2472
2431
  --uc-foreground: var(--uc-foreground-light);
@@ -2488,7 +2447,7 @@
2488
2447
  --uc-simple-btn-foreground: var(--uc-simple-btn-foreground-light);
2489
2448
  }
2490
2449
  }
2491
- @media (prefers-color-scheme: dark) {
2450
+ @media (prefers-color-scheme: dark) {
2492
2451
  :where([uc-wgt-common]) {
2493
2452
  --uc-background: var(--uc-background-dark);
2494
2453
  --uc-foreground: var(--uc-foreground-dark);
@@ -2510,7 +2469,7 @@
2510
2469
  --uc-simple-btn-foreground: var(--uc-simple-btn-foreground-dark);
2511
2470
  }
2512
2471
  }
2513
- :where(.uc-light) {
2472
+ :where(.uc-light) {
2514
2473
  --uc-background: var(--uc-background-light);
2515
2474
  --uc-foreground: var(--uc-foreground-light);
2516
2475
  --uc-primary: var(--uc-primary-light);
@@ -2530,7 +2489,7 @@
2530
2489
  --uc-simple-btn-hover: var(--uc-simple-btn-hover-light);
2531
2490
  --uc-simple-btn-foreground: var(--uc-simple-btn-foreground-light);
2532
2491
  }
2533
- :where(.uc-dark) {
2492
+ :where(.uc-dark) {
2534
2493
  --uc-background: var(--uc-background-dark);
2535
2494
  --uc-foreground: var(--uc-foreground-dark);
2536
2495
  --uc-primary: var(--uc-primary-dark);
@@ -2550,31 +2509,31 @@
2550
2509
  --uc-simple-btn-hover: var(--uc-simple-btn-hover-dark);
2551
2510
  --uc-simple-btn-foreground: var(--uc-simple-btn-foreground-dark);
2552
2511
  }
2553
- :where(.uc-purple) {
2512
+ :where(.uc-purple) {
2554
2513
  --uc-primary-oklch-light: 47% 0.22 300;
2555
2514
  --uc-primary-oklch-dark: 69% 0.1768 300;
2556
2515
  }
2557
- :where(.uc-red) {
2516
+ :where(.uc-red) {
2558
2517
  --uc-primary-oklch-light: 47% 0.21 21;
2559
2518
  --uc-primary-oklch-dark: 71% 0.1768 21;
2560
2519
  }
2561
- :where(.uc-orange) {
2520
+ :where(.uc-orange) {
2562
2521
  --uc-primary-oklch-light: 47% 0.1376 51.88;
2563
2522
  --uc-primary-oklch-dark: 69% 0.1768 51.88;
2564
2523
  }
2565
- :where(.uc-green) {
2524
+ :where(.uc-green) {
2566
2525
  --uc-primary-oklch-light: 45% 0.14 130;
2567
2526
  --uc-primary-oklch-dark: 69% 0.1768 130;
2568
2527
  }
2569
- :where(.uc-turquoise) {
2528
+ :where(.uc-turquoise) {
2570
2529
  --uc-primary-oklch-light: 45% 0.0854 174;
2571
2530
  --uc-primary-oklch-dark: 69% 0.1768 174;
2572
2531
  }
2573
- :where(.uc-gray) {
2532
+ :where(.uc-gray) {
2574
2533
  --uc-primary-oklch-light: 10% 0 0;
2575
2534
  --uc-primary-oklch-dark: 97% 0 0;
2576
2535
  }
2577
- :where(.uc-contrast) {
2536
+ :where(.uc-contrast) {
2578
2537
  --uc-border-light: oklch(50% 0 0);
2579
2538
  --uc-border-dark: oklch(50% 0 0);
2580
2539
  --uc-muted-light: oklch(98% 0 0);
@@ -2586,20 +2545,18 @@
2586
2545
  --uc-background-dark: oklch(10% 0 0);
2587
2546
  --uc-foreground-dark: oklch(100% 0 0);
2588
2547
  }
2589
- }
2590
2548
 
2591
2549
  /* src/blocks/themes/uc-basic/common.css */
2592
- @layer uc.base {
2593
- :where([uc-wgt-common]) {
2550
+ :where([uc-wgt-common]) {
2594
2551
  color: var(--uc-foreground);
2595
2552
  font-size: var(--uc-font-size);
2596
2553
  line-height: var(--uc-line-height);
2597
2554
  font-family: var(--uc-font-family);
2598
2555
  }
2599
- :where([uc-wgt-common]) * {
2556
+ :where([uc-wgt-common]) * {
2600
2557
  box-sizing: border-box;
2601
2558
  }
2602
- :where([uc-wgt-common]) button {
2559
+ :where([uc-wgt-common]) button {
2603
2560
  display: flex;
2604
2561
  align-items: center;
2605
2562
  justify-content: center;
@@ -2615,47 +2572,47 @@
2615
2572
  user-select: none;
2616
2573
  transition: background-color var(--uc-transition);
2617
2574
  }
2618
- :where([uc-wgt-common]) button:focus-visible {
2575
+ :where([uc-wgt-common]) button:focus-visible {
2619
2576
  outline-offset: 2px;
2620
2577
  }
2621
- :where([uc-wgt-common]) button.uc-primary-btn {
2578
+ :where([uc-wgt-common]) button.uc-primary-btn {
2622
2579
  color: var(--uc-primary-foreground);
2623
2580
  background-color: var(--uc-primary);
2624
2581
  }
2625
- :where([uc-wgt-common]) button.uc-primary-btn:hover {
2582
+ :where([uc-wgt-common]) button.uc-primary-btn:hover {
2626
2583
  background-color: var(--uc-primary-hover);
2627
2584
  }
2628
- :where([uc-wgt-common]) button.uc-secondary-btn {
2585
+ :where([uc-wgt-common]) button.uc-secondary-btn {
2629
2586
  color: var(--uc-secondary-foreground);
2630
2587
  background-color: var(--uc-secondary);
2631
2588
  }
2632
- :where([uc-wgt-common]) button.uc-secondary-btn:hover {
2589
+ :where([uc-wgt-common]) button.uc-secondary-btn:hover {
2633
2590
  background-color: var(--uc-secondary-hover);
2634
2591
  }
2635
- :where([uc-wgt-common].uc-contrast) button.uc-secondary-btn {
2592
+ :where([uc-wgt-common].uc-contrast) button.uc-secondary-btn {
2636
2593
  border: 1px solid var(--uc-border);
2637
2594
  }
2638
- :where([uc-wgt-common]) button.uc-mini-btn {
2595
+ :where([uc-wgt-common]) button.uc-mini-btn {
2639
2596
  height: var(--uc-button-size);
2640
2597
  padding: 0;
2641
2598
  background-color: transparent;
2642
2599
  color: var(--uc-secondary-foreground);
2643
2600
  }
2644
- :where([uc-wgt-common]) button.uc-mini-btn:hover {
2601
+ :where([uc-wgt-common]) button.uc-mini-btn:hover {
2645
2602
  background-color: var(--uc-secondary);
2646
2603
  }
2647
- :where([uc-wgt-common]) :is(button[disabled], button.uc-primary-btn[disabled], button.uc-secondary-btn[disabled]) {
2604
+ :where([uc-wgt-common]) :is(button[disabled], button.uc-primary-btn[disabled], button.uc-secondary-btn[disabled]) {
2648
2605
  opacity: 0.5;
2649
2606
  pointer-events: none;
2650
2607
  }
2651
- :where([uc-wgt-common]) a {
2608
+ :where([uc-wgt-common]) a {
2652
2609
  color: var(--uc-primary);
2653
2610
  text-decoration: none;
2654
2611
  }
2655
- :where([uc-wgt-common]) a[disabled] {
2612
+ :where([uc-wgt-common]) a[disabled] {
2656
2613
  pointer-events: none;
2657
2614
  }
2658
- :where([uc-wgt-common]) input[type=text] {
2615
+ :where([uc-wgt-common]) input[type=text] {
2659
2616
  display: flex;
2660
2617
  width: 100%;
2661
2618
  height: var(--uc-button-size);
@@ -2670,46 +2627,39 @@
2670
2627
  border-radius: var(--uc-radius);
2671
2628
  transition: border-color var(--uc-transition), outline-color var(--uc-transition);
2672
2629
  }
2673
- :where([uc-wgt-common]) input[type=text]::placeholder {
2630
+ :where([uc-wgt-common]) input[type=text]::placeholder {
2674
2631
  color: var(--uc-muted-foreground);
2675
2632
  }
2676
- :where([uc-wgt-common]) input[type=text]:focus {
2633
+ :where([uc-wgt-common]) input[type=text]:focus {
2677
2634
  outline-color: var(--uc-primary-hover);
2678
2635
  border-color: var(--uc-primary-hover);
2679
2636
  }
2680
- :where([uc-wgt-common]) input[disabled] {
2637
+ :where([uc-wgt-common]) input[disabled] {
2681
2638
  opacity: 0.6;
2682
2639
  pointer-events: none;
2683
2640
  }
2684
- :where([uc-wgt-common]) uc-select[disabled],
2641
+ :where([uc-wgt-common]) uc-select[disabled],
2685
2642
  :where([uc-wgt-common]) select[disabled] {
2686
2643
  opacity: 0.6;
2687
2644
  pointer-events: none;
2688
2645
  }
2689
- }
2690
2646
 
2691
2647
  /* src/blocks/themes/uc-basic/rules.css */
2692
- @layer uc.rules {
2693
- :where([uc-wgt-common]) [hidden] {
2648
+ :where([uc-wgt-common]):not(#\#):not(#\#) [hidden] {
2694
2649
  display: none;
2695
2650
  }
2696
- :where([uc-wgt-common]) [activity]:not([active], .active) {
2651
+ :where([uc-wgt-common]):not(#\#):not(#\#) [activity]:not([active], .active) {
2697
2652
  display: none;
2698
2653
  }
2699
- :where([uc-wgt-common]) dialog:not([open]) [activity] {
2654
+ :where([uc-wgt-common]):not(#\#):not(#\#) dialog:not([open]) [activity] {
2700
2655
  display: none;
2701
2656
  }
2702
- }
2703
2657
 
2704
2658
  /* src/blocks/themes/uc-basic/post-reset.css */
2705
- @layer uc.post-reset {
2706
- :where([uc-wgt-common]) uc-source-btn[type] {
2659
+ :where([uc-wgt-common]):not(#\#):not(#\#):not(#\#):not(#\#) uc-source-btn[type] {
2707
2660
  all: unset;
2708
2661
  }
2709
- }
2710
2662
 
2711
2663
  /* src/blocks/themes/uc-basic/index.css */
2712
2664
 
2713
2665
  /* src/solutions/file-uploader/regular/index.css */
2714
- @layer uc.solutions {
2715
- }