@charcoal-ui/react 3.4.0 → 3.6.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 (77) hide show
  1. package/dist/components/Button/index.d.ts.map +1 -1
  2. package/dist/components/Checkbox/index.d.ts.map +1 -1
  3. package/dist/components/Checkbox/index.story.d.ts +1 -0
  4. package/dist/components/Checkbox/index.story.d.ts.map +1 -1
  5. package/dist/components/DropdownSelector/DropdownMenuItem.d.ts.map +1 -1
  6. package/dist/components/DropdownSelector/ListItem/index.d.ts.map +1 -1
  7. package/dist/components/DropdownSelector/Popover/index.d.ts.map +1 -1
  8. package/dist/components/DropdownSelector/index.d.ts.map +1 -1
  9. package/dist/components/FieldLabel/index.d.ts.map +1 -1
  10. package/dist/components/IconButton/index.d.ts.map +1 -1
  11. package/dist/components/LoadingSpinner/index.d.ts.map +1 -1
  12. package/dist/components/Modal/ModalPlumbing.d.ts.map +1 -1
  13. package/dist/components/Modal/index.d.ts.map +1 -1
  14. package/dist/components/Modal/index.story.d.ts +1 -0
  15. package/dist/components/Modal/index.story.d.ts.map +1 -1
  16. package/dist/components/MultiSelect/index.d.ts.map +1 -1
  17. package/dist/components/MultiSelect/index.story.d.ts +2 -0
  18. package/dist/components/MultiSelect/index.story.d.ts.map +1 -1
  19. package/dist/components/Radio/index.d.ts.map +1 -1
  20. package/dist/components/SegmentedControl/index.d.ts.map +1 -1
  21. package/dist/components/Switch/index.d.ts.map +1 -1
  22. package/dist/components/TagItem/index.d.ts.map +1 -1
  23. package/dist/components/TextArea/index.d.ts.map +1 -1
  24. package/dist/components/TextField/TextField.story.d.ts.map +1 -1
  25. package/dist/components/TextField/index.d.ts +4 -0
  26. package/dist/components/TextField/index.d.ts.map +1 -1
  27. package/dist/components/TextField/useFocusWithClick.d.ts +3 -0
  28. package/dist/components/TextField/useFocusWithClick.d.ts.map +1 -0
  29. package/dist/index.cjs.js +935 -494
  30. package/dist/index.cjs.js.map +1 -1
  31. package/dist/index.esm.js +863 -422
  32. package/dist/index.esm.js.map +1 -1
  33. package/dist/styled.d.ts +4 -4
  34. package/package.json +9 -9
  35. package/src/components/Button/__snapshots__/index.story.storyshot +312 -592
  36. package/src/components/Button/index.tsx +50 -14
  37. package/src/components/Checkbox/__snapshots__/index.story.storyshot +209 -40
  38. package/src/components/Checkbox/__snapshots__/snapshot.test.tsx.snap +410 -80
  39. package/src/components/Checkbox/index.story.tsx +24 -0
  40. package/src/components/Checkbox/index.tsx +47 -17
  41. package/src/components/Clickable/__snapshots__/index.story.storyshot +4 -0
  42. package/src/components/Clickable/index.tsx +1 -0
  43. package/src/components/DropdownSelector/DropdownMenuItem.tsx +19 -3
  44. package/src/components/DropdownSelector/ListItem/__snapshots__/index.story.storyshot +3 -10
  45. package/src/components/DropdownSelector/ListItem/index.tsx +6 -4
  46. package/src/components/DropdownSelector/MenuItemGroup/index.tsx +1 -1
  47. package/src/components/DropdownSelector/MenuList/__snapshots__/index.story.storyshot +4 -13
  48. package/src/components/DropdownSelector/Popover/__snapshots__/index.story.storyshot +20 -37
  49. package/src/components/DropdownSelector/Popover/index.tsx +5 -8
  50. package/src/components/DropdownSelector/__snapshots__/index.story.storyshot +60 -191
  51. package/src/components/DropdownSelector/index.tsx +70 -20
  52. package/src/components/FieldLabel/index.tsx +77 -12
  53. package/src/components/IconButton/__snapshots__/index.story.storyshot +30 -54
  54. package/src/components/IconButton/index.tsx +51 -26
  55. package/src/components/LoadingSpinner/index.tsx +3 -6
  56. package/src/components/Modal/Dialog/index.tsx +1 -1
  57. package/src/components/Modal/ModalPlumbing.tsx +26 -5
  58. package/src/components/Modal/__snapshots__/index.story.storyshot +2454 -108
  59. package/src/components/Modal/index.story.tsx +27 -0
  60. package/src/components/Modal/index.tsx +19 -4
  61. package/src/components/MultiSelect/__snapshots__/index.story.storyshot +528 -25
  62. package/src/components/MultiSelect/index.story.tsx +60 -0
  63. package/src/components/MultiSelect/index.tsx +82 -22
  64. package/src/components/Radio/__snapshots__/index.story.storyshot +32 -49
  65. package/src/components/Radio/index.tsx +71 -23
  66. package/src/components/SegmentedControl/__snapshots__/index.story.storyshot +18 -19
  67. package/src/components/SegmentedControl/index.tsx +35 -15
  68. package/src/components/Switch/__snapshots__/index.story.storyshot +6 -18
  69. package/src/components/Switch/index.tsx +10 -15
  70. package/src/components/TagItem/__snapshots__/index.story.storyshot +39 -158
  71. package/src/components/TagItem/index.tsx +84 -19
  72. package/src/components/TextArea/__snapshots__/TextArea.story.storyshot +126 -321
  73. package/src/components/TextArea/index.tsx +38 -43
  74. package/src/components/TextField/TextField.story.tsx +35 -19
  75. package/src/components/TextField/__snapshots__/TextField.story.storyshot +309 -563
  76. package/src/components/TextField/index.tsx +85 -84
  77. package/src/components/TextField/useFocusWithClick.tsx +22 -0
@@ -17,6 +17,8 @@ exports[`Storyshots Modal Bottom Sheet 1`] = `
17
17
  -ms-letter-spacing: inherit;
18
18
  letter-spacing: inherit;
19
19
  word-spacing: inherit;
20
+ -webkit-text-decoration: none;
21
+ text-decoration: none;
20
22
  font: inherit;
21
23
  margin: 0;
22
24
  overflow: visible;
@@ -56,63 +58,380 @@ exports[`Storyshots Modal Bottom Sheet 1`] = `
56
58
  -ms-user-select: none;
57
59
  user-select: none;
58
60
  white-space: nowrap;
59
- color: var(--charcoal-text2);
60
- background-color: var(--charcoal-surface3);
61
+ border-radius: 999999px;
61
62
  font-size: 14px;
62
63
  line-height: 22px;
63
64
  font-weight: bold;
64
65
  padding-right: 24px;
65
66
  padding-left: 24px;
66
- border-radius: 999999px;
67
+ color: var(--charcoal-text2);
68
+ background-color: var(--charcoal-surface3);
67
69
  -webkit-transition: 0.2s color,0.2s background-color,0.2s box-shadow;
68
70
  transition: 0.2s color,0.2s background-color,0.2s box-shadow;
69
71
  height: 40px;
70
72
  }
71
73
 
72
- .c1:hover:not(:disabled):not([aria-disabled]),
73
- .c1:hover[aria-disabled=false] {
74
+ .c1:not(:disabled):not([aria-disabled]):active,
75
+ .c1[aria-disabled='false']:active,
76
+ .c1:not(:disabled):not([aria-disabled]):focus,
77
+ .c1[aria-disabled='false']:focus,
78
+ .c1:not(:disabled):not([aria-disabled]):focus-visible,
79
+ .c1[aria-disabled='false']:focus-visible {
80
+ outline: none;
81
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
82
+ }
83
+
84
+ .c1:not(:disabled):not([aria-disabled]):hover,
85
+ .c1[aria-disabled='false']:hover {
74
86
  color: var(--charcoal-text2-hover);
87
+ background-color: var(--charcoal-surface3-hover);
75
88
  }
76
89
 
77
- .c1:active:not(:disabled):not([aria-disabled]),
78
- .c1:active[aria-disabled=false] {
90
+ .c1:not(:disabled):not([aria-disabled]):active,
91
+ .c1[aria-disabled='false']:active {
79
92
  color: var(--charcoal-text2-press);
93
+ background-color: var(--charcoal-surface3-press);
94
+ }
95
+
96
+ .c1:disabled,
97
+ .c1[aria-disabled]:not([aria-disabled='false']) {
98
+ opacity: 0.32;
99
+ }
100
+
101
+ .c12 {
102
+ width: -webkit-fill-available;
103
+ width: -moz-available;
104
+ width: stretch;
105
+ display: inline-grid;
106
+ -webkit-align-items: center;
107
+ -webkit-box-align: center;
108
+ -ms-flex-align: center;
109
+ align-items: center;
110
+ -webkit-box-pack: center;
111
+ -webkit-justify-content: center;
112
+ -ms-flex-pack: center;
113
+ justify-content: center;
114
+ cursor: pointer;
115
+ -webkit-user-select: none;
116
+ -moz-user-select: none;
117
+ -ms-user-select: none;
118
+ user-select: none;
119
+ white-space: nowrap;
120
+ border-radius: 999999px;
121
+ font-size: 14px;
122
+ line-height: 22px;
123
+ font-weight: bold;
124
+ padding-right: 24px;
125
+ padding-left: 24px;
126
+ color: var(--charcoal-text5);
127
+ background-color: var(--charcoal-assertive);
128
+ -webkit-transition: 0.2s color,0.2s background-color,0.2s box-shadow;
129
+ transition: 0.2s color,0.2s background-color,0.2s box-shadow;
130
+ height: 40px;
131
+ }
132
+
133
+ .c12:not(:disabled):not([aria-disabled]):active,
134
+ .c12[aria-disabled='false']:active,
135
+ .c12:not(:disabled):not([aria-disabled]):focus,
136
+ .c12[aria-disabled='false']:focus,
137
+ .c12:not(:disabled):not([aria-disabled]):focus-visible,
138
+ .c12[aria-disabled='false']:focus-visible {
139
+ outline: none;
140
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
141
+ }
142
+
143
+ .c12:not(:disabled):not([aria-disabled]):hover,
144
+ .c12[aria-disabled='false']:hover {
145
+ color: var(--charcoal-text5-hover);
146
+ background-color: var(--charcoal-assertive-hover);
147
+ }
148
+
149
+ .c12:not(:disabled):not([aria-disabled]):active,
150
+ .c12[aria-disabled='false']:active {
151
+ color: var(--charcoal-text5-press);
152
+ background-color: var(--charcoal-assertive-press);
153
+ }
154
+
155
+ .c12:disabled,
156
+ .c12[aria-disabled]:not([aria-disabled='false']) {
157
+ opacity: 0.32;
158
+ }
159
+
160
+ .c13 {
161
+ width: -webkit-fill-available;
162
+ width: -moz-available;
163
+ width: stretch;
164
+ display: inline-grid;
165
+ -webkit-align-items: center;
166
+ -webkit-box-align: center;
167
+ -ms-flex-align: center;
168
+ align-items: center;
169
+ -webkit-box-pack: center;
170
+ -webkit-justify-content: center;
171
+ -ms-flex-pack: center;
172
+ justify-content: center;
173
+ cursor: pointer;
174
+ -webkit-user-select: none;
175
+ -moz-user-select: none;
176
+ -ms-user-select: none;
177
+ user-select: none;
178
+ white-space: nowrap;
179
+ border-radius: 999999px;
180
+ font-size: 14px;
181
+ line-height: 22px;
182
+ font-weight: bold;
183
+ padding-right: 24px;
184
+ padding-left: 24px;
185
+ color: var(--charcoal-text2);
186
+ background-color: var(--charcoal-surface3);
187
+ -webkit-transition: 0.2s color,0.2s background-color,0.2s box-shadow;
188
+ transition: 0.2s color,0.2s background-color,0.2s box-shadow;
189
+ height: 40px;
190
+ }
191
+
192
+ .c13:not(:disabled):not([aria-disabled]):active,
193
+ .c13[aria-disabled='false']:active,
194
+ .c13:not(:disabled):not([aria-disabled]):focus,
195
+ .c13[aria-disabled='false']:focus,
196
+ .c13:not(:disabled):not([aria-disabled]):focus-visible,
197
+ .c13[aria-disabled='false']:focus-visible {
198
+ outline: none;
199
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
80
200
  }
81
201
 
82
- .c1:hover:not(:disabled):not([aria-disabled]),
83
- .c1:hover[aria-disabled=false] {
202
+ .c13:not(:disabled):not([aria-disabled]):hover,
203
+ .c13[aria-disabled='false']:hover {
204
+ color: var(--charcoal-text2-hover);
84
205
  background-color: var(--charcoal-surface3-hover);
85
206
  }
86
207
 
87
- .c1:active:not(:disabled):not([aria-disabled]),
88
- .c1:active[aria-disabled=false] {
208
+ .c13:not(:disabled):not([aria-disabled]):active,
209
+ .c13[aria-disabled='false']:active {
210
+ color: var(--charcoal-text2-press);
89
211
  background-color: var(--charcoal-surface3-press);
90
212
  }
91
213
 
92
- .c1:disabled,
93
- .c1[aria-disabled]:not([aria-disabled=false]) {
214
+ .c13:disabled,
215
+ .c13[aria-disabled]:not([aria-disabled='false']) {
94
216
  opacity: 0.32;
95
217
  }
96
218
 
97
- .c1:not(:disabled):not([aria-disabled]):focus,
98
- .c1[aria-disabled=false]:focus,
99
- .c1:not(:disabled):not([aria-disabled]):active,
100
- .c1[aria-disabled=false]:active {
219
+ .c14 {
220
+ -webkit-user-select: none;
221
+ -moz-user-select: none;
222
+ -ms-user-select: none;
223
+ user-select: none;
224
+ width: 32px;
225
+ height: 32px;
226
+ display: -webkit-box;
227
+ display: -webkit-flex;
228
+ display: -ms-flexbox;
229
+ display: flex;
230
+ -webkit-align-items: center;
231
+ -webkit-box-align: center;
232
+ -ms-flex-align: center;
233
+ align-items: center;
234
+ -webkit-box-pack: center;
235
+ -webkit-justify-content: center;
236
+ -ms-flex-pack: center;
237
+ justify-content: center;
238
+ color: var(--charcoal-text3);
239
+ background-color: var(--charcoal-transparent);
240
+ border-radius: 999999px;
241
+ -webkit-transition: 0.2s background-color,0.2s box-shadow;
242
+ transition: 0.2s background-color,0.2s box-shadow;
243
+ }
244
+
245
+ .c14:not(:disabled):not([aria-disabled]):hover,
246
+ .c14[aria-disabled='false']:hover {
247
+ background-color: var( --charcoal-transparent-hover );
248
+ }
249
+
250
+ .c14:not(:disabled):not([aria-disabled]):active,
251
+ .c14[aria-disabled='false']:active {
252
+ background-color: var( --charcoal-transparent-press );
253
+ }
254
+
255
+ .c14:not(:disabled):not([aria-disabled]):focus,
256
+ .c14[aria-disabled='false']:focus,
257
+ .c14:not(:disabled):not([aria-disabled]):active,
258
+ .c14[aria-disabled='false']:active,
259
+ .c14:not(:disabled):not([aria-disabled]):focus-visible,
260
+ .c14[aria-disabled='false']:focus-visible {
101
261
  outline: none;
102
262
  box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
103
263
  }
104
264
 
105
- .c1:not(:disabled):not([aria-disabled]):focus:not(:focus-visible),
106
- .c1[aria-disabled=false]:focus:not(:focus-visible),
107
- .c1:not(:disabled):not([aria-disabled]):active:not(:focus-visible),
108
- .c1[aria-disabled=false]:active:not(:focus-visible) {
109
- outline: none;
265
+ .c14:disabled,
266
+ .c14[aria-disabled]:not([aria-disabled='false']) {
267
+ opacity: 0.32;
110
268
  }
111
269
 
112
- .c1:not(:disabled):not([aria-disabled]):focus-visible,
113
- .c1[aria-disabled=false]:focus-visible {
270
+ .c3 {
271
+ margin: auto;
272
+ position: relative;
273
+ height: -webkit-fit-content;
274
+ height: -moz-fit-content;
275
+ height: fit-content;
276
+ width: 440px;
277
+ background-color: var(--charcoal-surface1);
278
+ border-radius: 24px;
279
+ }
280
+
281
+ .c3:focus {
114
282
  outline: none;
115
- box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
283
+ }
284
+
285
+ .c2 {
286
+ z-index: 10;
287
+ overflow: auto;
288
+ display: -webkit-box;
289
+ display: -webkit-flex;
290
+ display: -ms-flexbox;
291
+ display: flex;
292
+ position: fixed;
293
+ top: 0;
294
+ left: 0;
295
+ width: -webkit-fill-available;
296
+ width: -moz-available;
297
+ height: 100%;
298
+ -webkit-box-pack: center;
299
+ -webkit-justify-content: center;
300
+ -ms-flex-pack: center;
301
+ justify-content: center;
302
+ padding: 40px 0;
303
+ box-sizing: border-box;
304
+ background-color: var(--charcoal-surface4);
305
+ }
306
+
307
+ .c15 {
308
+ position: absolute;
309
+ top: 8px;
310
+ right: 8px;
311
+ color: var(--charcoal-text3);
312
+ -webkit-transition: 0.2s color;
313
+ transition: 0.2s color;
314
+ }
315
+
316
+ .c15:not(:disabled):not([aria-disabled]):hover,
317
+ .c15[aria-disabled='false']:hover {
318
+ color: var(--charcoal-text3-hover);
319
+ }
320
+
321
+ .c15:not(:disabled):not([aria-disabled]):active,
322
+ .c15[aria-disabled='false']:active {
323
+ color: var(--charcoal-text3-press);
324
+ }
325
+
326
+ .c5 {
327
+ margin: 0;
328
+ font-weight: inherit;
329
+ font-size: inherit;
330
+ }
331
+
332
+ .c4 {
333
+ height: 64px;
334
+ display: grid;
335
+ -webkit-align-content: center;
336
+ -ms-flex-line-pack: center;
337
+ align-content: center;
338
+ -webkit-box-pack: center;
339
+ -webkit-justify-content: center;
340
+ -ms-flex-pack: center;
341
+ justify-content: center;
342
+ }
343
+
344
+ .c6 {
345
+ color: var(--charcoal-text1);
346
+ font-size: 16px;
347
+ line-height: 24px;
348
+ font-weight: bold;
349
+ display: flow-root;
350
+ }
351
+
352
+ .c6::before {
353
+ display: block;
354
+ width: 0;
355
+ height: 0;
356
+ content: '';
357
+ margin-top: -4px;
358
+ }
359
+
360
+ .c6::after {
361
+ display: block;
362
+ width: 0;
363
+ height: 0;
364
+ content: '';
365
+ margin-bottom: -4px;
366
+ }
367
+
368
+ .c9 {
369
+ padding-left: 16px;
370
+ padding-right: 16px;
371
+ }
372
+
373
+ .c7 {
374
+ padding-bottom: 40px;
375
+ }
376
+
377
+ .c11 {
378
+ display: grid;
379
+ grid-auto-flow: row;
380
+ grid-row-gap: 8px;
381
+ padding-top: 16px;
382
+ padding-left: 16px;
383
+ padding-right: 16px;
384
+ }
385
+
386
+ .c8 {
387
+ display: grid;
388
+ gap: 24px;
389
+ }
390
+
391
+ .c10 {
392
+ color: var(--charcoal-text2);
393
+ font-size: 14px;
394
+ line-height: 22px;
395
+ display: flow-root;
396
+ }
397
+
398
+ .c10::before {
399
+ display: block;
400
+ width: 0;
401
+ height: 0;
402
+ content: '';
403
+ margin-top: -4px;
404
+ }
405
+
406
+ .c10::after {
407
+ display: block;
408
+ width: 0;
409
+ height: 0;
410
+ content: '';
411
+ margin-bottom: -4px;
412
+ }
413
+
414
+ @media (max-width:743px) {
415
+ .c3 {
416
+ max-width: 440px;
417
+ width: calc(100% - 48px);
418
+ max-width: unset;
419
+ width: 100%;
420
+ border-radius: 0;
421
+ margin: auto 0 0 0;
422
+ }
423
+ }
424
+
425
+ @media (max-width:743px) {
426
+ .c2 {
427
+ padding: 0;
428
+ }
429
+ }
430
+
431
+ @media (max-width:743px) {
432
+ .c4 {
433
+ height: 48px;
434
+ }
116
435
  }
117
436
 
118
437
  <div
@@ -129,6 +448,71 @@ exports[`Storyshots Modal Bottom Sheet 1`] = `
129
448
  >
130
449
  Open Modal
131
450
  </button>
451
+ <div
452
+ className="c2"
453
+ onPointerDown={[Function]}
454
+ style={Object {}}
455
+ >
456
+ <div
457
+ className="c3"
458
+ onBlur={[Function]}
459
+ onFocus={null}
460
+ onKeyDown={[Function]}
461
+ role="dialog"
462
+ size="M"
463
+ style={Object {}}
464
+ tabIndex={-1}
465
+ >
466
+ <div
467
+ className="c4"
468
+ >
469
+ <h3
470
+ className="c5 c6"
471
+ >
472
+ Title
473
+ </h3>
474
+ </div>
475
+ <div
476
+ className="c7"
477
+ >
478
+ <div
479
+ className="c8"
480
+ >
481
+ <div
482
+ className="c9 c10"
483
+ >
484
+ Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod placeat tenetur, necessitatibus laudantium cumque exercitationem provident. Quaerat iure enim, eveniet dolores earum odio quo possimus fugiat aspernatur, numquam, commodi repellat.
485
+ </div>
486
+ </div>
487
+ <div
488
+ className="c11"
489
+ >
490
+ <button
491
+ className="c0 c12"
492
+ disabled={false}
493
+ onClick={[Function]}
494
+ >
495
+ 削除する
496
+ </button>
497
+ <button
498
+ className="c0 c13"
499
+ disabled={false}
500
+ onClick={[Function]}
501
+ >
502
+ キャンセル
503
+ </button>
504
+ </div>
505
+ </div>
506
+ <button
507
+ className="c0 c14 c15"
508
+ onClick={[Function]}
509
+ >
510
+ <pixiv-icon
511
+ name="24/Close"
512
+ />
513
+ </button>
514
+ </div>
515
+ </div>
132
516
  </div>
133
517
  </div>
134
518
  `;
@@ -150,6 +534,8 @@ exports[`Storyshots Modal Default 1`] = `
150
534
  -ms-letter-spacing: inherit;
151
535
  letter-spacing: inherit;
152
536
  word-spacing: inherit;
537
+ -webkit-text-decoration: none;
538
+ text-decoration: none;
153
539
  font: inherit;
154
540
  margin: 0;
155
541
  overflow: visible;
@@ -189,63 +575,1428 @@ exports[`Storyshots Modal Default 1`] = `
189
575
  -ms-user-select: none;
190
576
  user-select: none;
191
577
  white-space: nowrap;
578
+ border-radius: 999999px;
579
+ font-size: 14px;
580
+ line-height: 22px;
581
+ font-weight: bold;
582
+ padding-right: 24px;
583
+ padding-left: 24px;
192
584
  color: var(--charcoal-text2);
193
585
  background-color: var(--charcoal-surface3);
586
+ -webkit-transition: 0.2s color,0.2s background-color,0.2s box-shadow;
587
+ transition: 0.2s color,0.2s background-color,0.2s box-shadow;
588
+ height: 40px;
589
+ }
590
+
591
+ .c1:not(:disabled):not([aria-disabled]):active,
592
+ .c1[aria-disabled='false']:active,
593
+ .c1:not(:disabled):not([aria-disabled]):focus,
594
+ .c1[aria-disabled='false']:focus,
595
+ .c1:not(:disabled):not([aria-disabled]):focus-visible,
596
+ .c1[aria-disabled='false']:focus-visible {
597
+ outline: none;
598
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
599
+ }
600
+
601
+ .c1:not(:disabled):not([aria-disabled]):hover,
602
+ .c1[aria-disabled='false']:hover {
603
+ color: var(--charcoal-text2-hover);
604
+ background-color: var(--charcoal-surface3-hover);
605
+ }
606
+
607
+ .c1:not(:disabled):not([aria-disabled]):active,
608
+ .c1[aria-disabled='false']:active {
609
+ color: var(--charcoal-text2-press);
610
+ background-color: var(--charcoal-surface3-press);
611
+ }
612
+
613
+ .c1:disabled,
614
+ .c1[aria-disabled]:not([aria-disabled='false']) {
615
+ opacity: 0.32;
616
+ }
617
+
618
+ .c25 {
619
+ width: -webkit-fill-available;
620
+ width: -moz-available;
621
+ width: stretch;
622
+ display: inline-grid;
623
+ -webkit-align-items: center;
624
+ -webkit-box-align: center;
625
+ -ms-flex-align: center;
626
+ align-items: center;
627
+ -webkit-box-pack: center;
628
+ -webkit-justify-content: center;
629
+ -ms-flex-pack: center;
630
+ justify-content: center;
631
+ cursor: pointer;
632
+ -webkit-user-select: none;
633
+ -moz-user-select: none;
634
+ -ms-user-select: none;
635
+ user-select: none;
636
+ white-space: nowrap;
637
+ border-radius: 999999px;
194
638
  font-size: 14px;
195
639
  line-height: 22px;
196
640
  font-weight: bold;
197
641
  padding-right: 24px;
198
642
  padding-left: 24px;
643
+ color: var(--charcoal-text5);
644
+ background-color: var(--charcoal-brand);
645
+ -webkit-transition: 0.2s color,0.2s background-color,0.2s box-shadow;
646
+ transition: 0.2s color,0.2s background-color,0.2s box-shadow;
647
+ height: 40px;
648
+ }
649
+
650
+ .c25:not(:disabled):not([aria-disabled]):active,
651
+ .c25[aria-disabled='false']:active,
652
+ .c25:not(:disabled):not([aria-disabled]):focus,
653
+ .c25[aria-disabled='false']:focus,
654
+ .c25:not(:disabled):not([aria-disabled]):focus-visible,
655
+ .c25[aria-disabled='false']:focus-visible {
656
+ outline: none;
657
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
658
+ }
659
+
660
+ .c25:not(:disabled):not([aria-disabled]):hover,
661
+ .c25[aria-disabled='false']:hover {
662
+ color: var(--charcoal-text5-hover);
663
+ background-color: var(--charcoal-brand-hover);
664
+ }
665
+
666
+ .c25:not(:disabled):not([aria-disabled]):active,
667
+ .c25[aria-disabled='false']:active {
668
+ color: var(--charcoal-text5-press);
669
+ background-color: var(--charcoal-brand-press);
670
+ }
671
+
672
+ .c25:disabled,
673
+ .c25[aria-disabled]:not([aria-disabled='false']) {
674
+ opacity: 0.32;
675
+ }
676
+
677
+ .c26 {
678
+ width: -webkit-fill-available;
679
+ width: -moz-available;
680
+ width: stretch;
681
+ display: inline-grid;
682
+ -webkit-align-items: center;
683
+ -webkit-box-align: center;
684
+ -ms-flex-align: center;
685
+ align-items: center;
686
+ -webkit-box-pack: center;
687
+ -webkit-justify-content: center;
688
+ -ms-flex-pack: center;
689
+ justify-content: center;
690
+ cursor: pointer;
691
+ -webkit-user-select: none;
692
+ -moz-user-select: none;
693
+ -ms-user-select: none;
694
+ user-select: none;
695
+ white-space: nowrap;
199
696
  border-radius: 999999px;
697
+ font-size: 14px;
698
+ line-height: 22px;
699
+ font-weight: bold;
700
+ padding-right: 24px;
701
+ padding-left: 24px;
702
+ color: var(--charcoal-text2);
703
+ background-color: var(--charcoal-surface3);
200
704
  -webkit-transition: 0.2s color,0.2s background-color,0.2s box-shadow;
201
705
  transition: 0.2s color,0.2s background-color,0.2s box-shadow;
202
706
  height: 40px;
203
707
  }
204
708
 
205
- .c1:hover:not(:disabled):not([aria-disabled]),
206
- .c1:hover[aria-disabled=false] {
207
- color: var(--charcoal-text2-hover);
709
+ .c26:not(:disabled):not([aria-disabled]):active,
710
+ .c26[aria-disabled='false']:active,
711
+ .c26:not(:disabled):not([aria-disabled]):focus,
712
+ .c26[aria-disabled='false']:focus,
713
+ .c26:not(:disabled):not([aria-disabled]):focus-visible,
714
+ .c26[aria-disabled='false']:focus-visible {
715
+ outline: none;
716
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
717
+ }
718
+
719
+ .c26:not(:disabled):not([aria-disabled]):hover,
720
+ .c26[aria-disabled='false']:hover {
721
+ color: var(--charcoal-text2-hover);
722
+ background-color: var(--charcoal-surface3-hover);
723
+ }
724
+
725
+ .c26:not(:disabled):not([aria-disabled]):active,
726
+ .c26[aria-disabled='false']:active {
727
+ color: var(--charcoal-text2-press);
728
+ background-color: var(--charcoal-surface3-press);
729
+ }
730
+
731
+ .c26:disabled,
732
+ .c26[aria-disabled]:not([aria-disabled='false']) {
733
+ opacity: 0.32;
734
+ }
735
+
736
+ .c14 {
737
+ font-size: 14px;
738
+ line-height: 22px;
739
+ font-weight: bold;
740
+ display: flow-root;
741
+ color: var(--charcoal-text1);
742
+ }
743
+
744
+ .c14::before {
745
+ display: block;
746
+ width: 0;
747
+ height: 0;
748
+ content: '';
749
+ margin-top: -4px;
750
+ }
751
+
752
+ .c14::after {
753
+ display: block;
754
+ width: 0;
755
+ height: 0;
756
+ content: '';
757
+ margin-bottom: -4px;
758
+ }
759
+
760
+ .c16 {
761
+ font-size: 14px;
762
+ line-height: 22px;
763
+ display: flow-root;
764
+ color: var(--charcoal-text3);
765
+ -webkit-transition: 0.2s color,0.2s box-shadow;
766
+ transition: 0.2s color,0.2s box-shadow;
767
+ }
768
+
769
+ .c16::before {
770
+ display: block;
771
+ width: 0;
772
+ height: 0;
773
+ content: '';
774
+ margin-top: -4px;
775
+ }
776
+
777
+ .c16::after {
778
+ display: block;
779
+ width: 0;
780
+ height: 0;
781
+ content: '';
782
+ margin-bottom: -4px;
783
+ }
784
+
785
+ .c16:not(:disabled):not([aria-disabled]):hover,
786
+ .c16[aria-disabled='false']:hover {
787
+ color: var(--charcoal-text3-hover);
788
+ }
789
+
790
+ .c16:not(:disabled):not([aria-disabled]):active,
791
+ .c16[aria-disabled='false']:active {
792
+ color: var(--charcoal-text3-press);
793
+ }
794
+
795
+ .c16:not(:disabled):not([aria-disabled]):active,
796
+ .c16[aria-disabled='false']:active,
797
+ .c16:not(:disabled):not([aria-disabled]):focus,
798
+ .c16[aria-disabled='false']:focus,
799
+ .c16:not(:disabled):not([aria-disabled]):focus-visible,
800
+ .c16[aria-disabled='false']:focus-visible {
801
+ outline: none;
802
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
803
+ }
804
+
805
+ .c12 {
806
+ display: -webkit-inline-box;
807
+ display: -webkit-inline-flex;
808
+ display: -ms-inline-flexbox;
809
+ display: inline-flex;
810
+ -webkit-align-items: center;
811
+ -webkit-box-align: center;
812
+ -ms-flex-align: center;
813
+ align-items: center;
814
+ }
815
+
816
+ .c12 > .c15 {
817
+ margin-left: auto;
818
+ }
819
+
820
+ .c19 {
821
+ display: inline-block;
822
+ width: 100%;
823
+ }
824
+
825
+ .c19:disabled,
826
+ .c19[aria-disabled]:not([aria-disabled=false]) {
827
+ cursor: default;
828
+ opacity: 0.32;
829
+ }
830
+
831
+ .c20 {
832
+ width: 100%;
833
+ margin-bottom: 8px;
834
+ }
835
+
836
+ .c21 {
837
+ display: -webkit-box;
838
+ display: -webkit-flex;
839
+ display: -ms-flexbox;
840
+ display: flex;
841
+ -webkit-box-pack: justify;
842
+ -webkit-justify-content: space-between;
843
+ -ms-flex-pack: justify;
844
+ justify-content: space-between;
845
+ -webkit-align-items: center;
846
+ -webkit-box-align: center;
847
+ -ms-flex-align: center;
848
+ align-items: center;
849
+ height: 40px;
850
+ width: 100%;
851
+ box-sizing: border-box;
852
+ border: none;
853
+ cursor: pointer;
854
+ padding-right: 8px;
855
+ padding-left: 8px;
856
+ background-color: var(--charcoal-surface3);
857
+ border-radius: 4px;
858
+ -webkit-transition: 0.2s box-shadow;
859
+ transition: 0.2s box-shadow;
860
+ }
861
+
862
+ .c21:disabled,
863
+ .c21[aria-disabled]:not([aria-disabled=false]) {
864
+ cursor: default;
865
+ }
866
+
867
+ .c21:not(:disabled):not([aria-disabled]):focus,
868
+ .c21[aria-disabled='false']:focus,
869
+ .c21:not(:disabled):not([aria-disabled]):active,
870
+ .c21[aria-disabled='false']:active,
871
+ .c21:not(:disabled):not([aria-disabled]):focus-visible,
872
+ .c21[aria-disabled='false']:focus-visible {
873
+ outline: none;
874
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
875
+ }
876
+
877
+ .c22 {
878
+ text-align: left;
879
+ font-size: 14px;
880
+ line-height: 22px;
881
+ display: flow-root;
882
+ color: var(--charcoal-text2);
883
+ }
884
+
885
+ .c22::before {
886
+ display: block;
887
+ width: 0;
888
+ height: 0;
889
+ content: '';
890
+ margin-top: -4px;
891
+ }
892
+
893
+ .c22::after {
894
+ display: block;
895
+ width: 0;
896
+ height: 0;
897
+ content: '';
898
+ margin-bottom: -4px;
899
+ }
900
+
901
+ .c23 {
902
+ color: var(--charcoal-text2);
903
+ }
904
+
905
+ .c27 {
906
+ -webkit-user-select: none;
907
+ -moz-user-select: none;
908
+ -ms-user-select: none;
909
+ user-select: none;
910
+ width: 32px;
911
+ height: 32px;
912
+ display: -webkit-box;
913
+ display: -webkit-flex;
914
+ display: -ms-flexbox;
915
+ display: flex;
916
+ -webkit-align-items: center;
917
+ -webkit-box-align: center;
918
+ -ms-flex-align: center;
919
+ align-items: center;
920
+ -webkit-box-pack: center;
921
+ -webkit-justify-content: center;
922
+ -ms-flex-pack: center;
923
+ justify-content: center;
924
+ color: var(--charcoal-text3);
925
+ background-color: var(--charcoal-transparent);
926
+ border-radius: 999999px;
927
+ -webkit-transition: 0.2s background-color,0.2s box-shadow;
928
+ transition: 0.2s background-color,0.2s box-shadow;
929
+ }
930
+
931
+ .c27:not(:disabled):not([aria-disabled]):hover,
932
+ .c27[aria-disabled='false']:hover {
933
+ background-color: var( --charcoal-transparent-hover );
934
+ }
935
+
936
+ .c27:not(:disabled):not([aria-disabled]):active,
937
+ .c27[aria-disabled='false']:active {
938
+ background-color: var( --charcoal-transparent-press );
939
+ }
940
+
941
+ .c27:not(:disabled):not([aria-disabled]):focus,
942
+ .c27[aria-disabled='false']:focus,
943
+ .c27:not(:disabled):not([aria-disabled]):active,
944
+ .c27[aria-disabled='false']:active,
945
+ .c27:not(:disabled):not([aria-disabled]):focus-visible,
946
+ .c27[aria-disabled='false']:focus-visible {
947
+ outline: none;
948
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
949
+ }
950
+
951
+ .c27:disabled,
952
+ .c27[aria-disabled]:not([aria-disabled='false']) {
953
+ opacity: 0.32;
954
+ }
955
+
956
+ .c3 {
957
+ margin: auto;
958
+ position: relative;
959
+ height: -webkit-fit-content;
960
+ height: -moz-fit-content;
961
+ height: fit-content;
962
+ width: 440px;
963
+ background-color: var(--charcoal-surface1);
964
+ border-radius: 24px;
965
+ }
966
+
967
+ .c3:focus {
968
+ outline: none;
969
+ }
970
+
971
+ .c2 {
972
+ z-index: 10;
973
+ overflow: auto;
974
+ display: -webkit-box;
975
+ display: -webkit-flex;
976
+ display: -ms-flexbox;
977
+ display: flex;
978
+ position: fixed;
979
+ top: 0;
980
+ left: 0;
981
+ width: -webkit-fill-available;
982
+ width: -moz-available;
983
+ height: 100%;
984
+ -webkit-box-pack: center;
985
+ -webkit-justify-content: center;
986
+ -ms-flex-pack: center;
987
+ justify-content: center;
988
+ padding: 40px 0;
989
+ box-sizing: border-box;
990
+ background-color: var(--charcoal-surface4);
991
+ }
992
+
993
+ .c28 {
994
+ position: absolute;
995
+ top: 8px;
996
+ right: 8px;
997
+ color: var(--charcoal-text3);
998
+ -webkit-transition: 0.2s color;
999
+ transition: 0.2s color;
1000
+ }
1001
+
1002
+ .c28:not(:disabled):not([aria-disabled]):hover,
1003
+ .c28[aria-disabled='false']:hover {
1004
+ color: var(--charcoal-text3-hover);
1005
+ }
1006
+
1007
+ .c28:not(:disabled):not([aria-disabled]):active,
1008
+ .c28[aria-disabled='false']:active {
1009
+ color: var(--charcoal-text3-press);
1010
+ }
1011
+
1012
+ .c5 {
1013
+ margin: 0;
1014
+ font-weight: inherit;
1015
+ font-size: inherit;
1016
+ }
1017
+
1018
+ .c4 {
1019
+ height: 64px;
1020
+ display: grid;
1021
+ -webkit-align-content: center;
1022
+ -ms-flex-line-pack: center;
1023
+ align-content: center;
1024
+ -webkit-box-pack: center;
1025
+ -webkit-justify-content: center;
1026
+ -ms-flex-pack: center;
1027
+ justify-content: center;
1028
+ }
1029
+
1030
+ .c6 {
1031
+ color: var(--charcoal-text1);
1032
+ font-size: 16px;
1033
+ line-height: 24px;
1034
+ font-weight: bold;
1035
+ display: flow-root;
1036
+ }
1037
+
1038
+ .c6::before {
1039
+ display: block;
1040
+ width: 0;
1041
+ height: 0;
1042
+ content: '';
1043
+ margin-top: -4px;
1044
+ }
1045
+
1046
+ .c6::after {
1047
+ display: block;
1048
+ width: 0;
1049
+ height: 0;
1050
+ content: '';
1051
+ margin-bottom: -4px;
1052
+ }
1053
+
1054
+ .c9 {
1055
+ padding-left: 16px;
1056
+ padding-right: 16px;
1057
+ }
1058
+
1059
+ .c7 {
1060
+ padding-bottom: 40px;
1061
+ }
1062
+
1063
+ .c24 {
1064
+ display: grid;
1065
+ grid-auto-flow: row;
1066
+ grid-row-gap: 8px;
1067
+ padding-top: 16px;
1068
+ padding-left: 16px;
1069
+ padding-right: 16px;
1070
+ }
1071
+
1072
+ .c11 {
1073
+ display: -webkit-box;
1074
+ display: -webkit-flex;
1075
+ display: -ms-flexbox;
1076
+ display: flex;
1077
+ -webkit-flex-direction: column;
1078
+ -ms-flex-direction: column;
1079
+ flex-direction: column;
1080
+ }
1081
+
1082
+ .c13 {
1083
+ margin-bottom: 8px;
1084
+ }
1085
+
1086
+ .c17 {
1087
+ display: grid;
1088
+ grid-template-columns: 1fr;
1089
+ height: 40px;
1090
+ -webkit-transition: 0.2s background-color,0.2s box-shadow;
1091
+ transition: 0.2s background-color,0.2s box-shadow;
1092
+ color: var(--charcoal-text2);
1093
+ background-color: var(--charcoal-surface3);
1094
+ border-radius: 4px;
1095
+ gap: 4px;
1096
+ padding: 0 8px;
1097
+ line-height: 22px;
1098
+ font-size: 14px;
1099
+ }
1100
+
1101
+ .c17:not(:disabled):not([aria-disabled]):hover,
1102
+ .c17 [aria-disabled='false']:hover {
1103
+ background-color: var(--charcoal-surface3-hover);
1104
+ }
1105
+
1106
+ .c17:not(:disabled):not([aria-disabled]):active,
1107
+ .c17 [aria-disabled='false']:active {
1108
+ outline: none;
1109
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
1110
+ }
1111
+
1112
+ .c17:focus-within {
1113
+ outline: none;
1114
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
1115
+ }
1116
+
1117
+ .c18 {
1118
+ border: none;
1119
+ box-sizing: border-box;
1120
+ outline: none;
1121
+ font-family: inherit;
1122
+ -webkit-transform-origin: top left;
1123
+ -ms-transform-origin: top left;
1124
+ transform-origin: top left;
1125
+ -webkit-transform: scale(0.875);
1126
+ -ms-transform: scale(0.875);
1127
+ transform: scale(0.875);
1128
+ width: calc(100% / 0.875);
1129
+ height: calc(100% / 0.875);
1130
+ font-size: calc(14px / 0.875);
1131
+ line-height: calc(22px / 0.875);
1132
+ padding-left: 0;
1133
+ padding-right: 0;
1134
+ border-radius: calc(4px / 0.875);
1135
+ -webkit-appearance: none;
1136
+ -moz-appearance: none;
1137
+ appearance: none;
1138
+ background: transparent;
1139
+ color: var(--charcoal-text2);
1140
+ }
1141
+
1142
+ .c18::-webkit-input-placeholder {
1143
+ color: var(--charcoal-text3);
1144
+ }
1145
+
1146
+ .c18::-moz-placeholder {
1147
+ color: var(--charcoal-text3);
1148
+ }
1149
+
1150
+ .c18:-ms-input-placeholder {
1151
+ color: var(--charcoal-text3);
1152
+ }
1153
+
1154
+ .c18::placeholder {
1155
+ color: var(--charcoal-text3);
1156
+ }
1157
+
1158
+ .c8 {
1159
+ display: grid;
1160
+ gap: 24px;
1161
+ }
1162
+
1163
+ .c10 {
1164
+ color: var(--charcoal-text2);
1165
+ font-size: 14px;
1166
+ line-height: 22px;
1167
+ display: flow-root;
1168
+ }
1169
+
1170
+ .c10::before {
1171
+ display: block;
1172
+ width: 0;
1173
+ height: 0;
1174
+ content: '';
1175
+ margin-top: -4px;
1176
+ }
1177
+
1178
+ .c10::after {
1179
+ display: block;
1180
+ width: 0;
1181
+ height: 0;
1182
+ content: '';
1183
+ margin-bottom: -4px;
1184
+ }
1185
+
1186
+ @media (max-width:743px) {
1187
+ .c3 {
1188
+ max-width: 440px;
1189
+ width: calc(100% - 48px);
1190
+ }
1191
+ }
1192
+
1193
+ @media (max-width:743px) {
1194
+
1195
+ }
1196
+
1197
+ @media (max-width:743px) {
1198
+
1199
+ }
1200
+
1201
+ <div
1202
+ data-dark={false}
1203
+ >
1204
+ <div
1205
+ aria-hidden={null}
1206
+ data-overlay-container={true}
1207
+ >
1208
+ <button
1209
+ className="c0 c1"
1210
+ disabled={false}
1211
+ onClick={[Function]}
1212
+ >
1213
+ Open Modal
1214
+ </button>
1215
+ <div
1216
+ className="c2"
1217
+ onPointerDown={[Function]}
1218
+ style={Object {}}
1219
+ >
1220
+ <div
1221
+ className="c3"
1222
+ onBlur={[Function]}
1223
+ onFocus={null}
1224
+ onKeyDown={[Function]}
1225
+ role="dialog"
1226
+ size="M"
1227
+ style={Object {}}
1228
+ tabIndex={-1}
1229
+ >
1230
+ <div
1231
+ className="c4"
1232
+ >
1233
+ <h3
1234
+ className="c5 c6"
1235
+ >
1236
+ Title
1237
+ </h3>
1238
+ </div>
1239
+ <div
1240
+ className="c7"
1241
+ >
1242
+ <div
1243
+ className="c8"
1244
+ >
1245
+ <div
1246
+ className="c9 c10"
1247
+ >
1248
+ Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod placeat tenetur, necessitatibus laudantium cumque exercitationem provident. Quaerat iure enim, eveniet dolores earum odio quo possimus fugiat aspernatur, numquam, commodi repellat.
1249
+ </div>
1250
+ <div
1251
+ className="c9"
1252
+ >
1253
+ <div
1254
+ className="c11"
1255
+ >
1256
+ <div
1257
+ className="c12 c13"
1258
+ >
1259
+ <label
1260
+ className="c14"
1261
+ htmlFor="test-id"
1262
+ id="test-id"
1263
+ >
1264
+ Name
1265
+ </label>
1266
+ <div
1267
+ className="c15 c16"
1268
+ >
1269
+ <span />
1270
+ </div>
1271
+ </div>
1272
+ <div
1273
+ className="c17"
1274
+ >
1275
+ <input
1276
+ aria-labelledby="test-id"
1277
+ className="c18"
1278
+ disabled={false}
1279
+ id="test-id"
1280
+ onChange={[Function]}
1281
+ placeholder="Nagisa"
1282
+ readOnly={false}
1283
+ type="text"
1284
+ />
1285
+ </div>
1286
+ </div>
1287
+ </div>
1288
+ <div
1289
+ className="c9"
1290
+ >
1291
+ <div
1292
+ className="c11"
1293
+ >
1294
+ <div
1295
+ className="c12 c13"
1296
+ >
1297
+ <label
1298
+ className="c14"
1299
+ htmlFor="test-id"
1300
+ id="test-id"
1301
+ >
1302
+ Country
1303
+ </label>
1304
+ <div
1305
+ className="c15 c16"
1306
+ >
1307
+ <span />
1308
+ </div>
1309
+ </div>
1310
+ <div
1311
+ className="c17"
1312
+ >
1313
+ <input
1314
+ aria-labelledby="test-id"
1315
+ className="c18"
1316
+ disabled={false}
1317
+ id="test-id"
1318
+ onChange={[Function]}
1319
+ placeholder="Tokyo"
1320
+ readOnly={false}
1321
+ type="text"
1322
+ />
1323
+ </div>
1324
+ </div>
1325
+ </div>
1326
+ <div
1327
+ className="c9"
1328
+ >
1329
+ <div
1330
+ className="c19"
1331
+ >
1332
+ <div
1333
+ className="c12 c20"
1334
+ >
1335
+ <label
1336
+ className="c14"
1337
+ >
1338
+ Fruits
1339
+ </label>
1340
+ <div
1341
+ className="c15 c16"
1342
+ >
1343
+ <span />
1344
+ </div>
1345
+ </div>
1346
+ <button
1347
+ className="c21"
1348
+ onClick={[Function]}
1349
+ type="button"
1350
+ >
1351
+ <span
1352
+ className="c22"
1353
+ >
1354
+ Apple
1355
+ </span>
1356
+ <pixiv-icon
1357
+ class="c23"
1358
+ name="16/Menu"
1359
+ />
1360
+ </button>
1361
+ </div>
1362
+ </div>
1363
+ </div>
1364
+ <div
1365
+ className="c24"
1366
+ >
1367
+ <button
1368
+ className="c0 c25"
1369
+ disabled={false}
1370
+ onClick={[Function]}
1371
+ >
1372
+ Apply
1373
+ </button>
1374
+ <button
1375
+ className="c0 c26"
1376
+ disabled={false}
1377
+ onClick={[Function]}
1378
+ >
1379
+ Cancel
1380
+ </button>
1381
+ </div>
1382
+ </div>
1383
+ <button
1384
+ className="c0 c27 c28"
1385
+ onClick={[Function]}
1386
+ >
1387
+ <pixiv-icon
1388
+ name="24/Close"
1389
+ />
1390
+ </button>
1391
+ </div>
1392
+ </div>
1393
+ </div>
1394
+ </div>
1395
+ `;
1396
+
1397
+ exports[`Storyshots Modal Full Bottom Sheet 1`] = `
1398
+ .c0 {
1399
+ cursor: pointer;
1400
+ -webkit-appearance: none;
1401
+ -moz-appearance: none;
1402
+ appearance: none;
1403
+ background: transparent;
1404
+ padding: 0;
1405
+ border-style: none;
1406
+ outline: none;
1407
+ color: inherit;
1408
+ text-rendering: inherit;
1409
+ -webkit-letter-spacing: inherit;
1410
+ -moz-letter-spacing: inherit;
1411
+ -ms-letter-spacing: inherit;
1412
+ letter-spacing: inherit;
1413
+ word-spacing: inherit;
1414
+ -webkit-text-decoration: none;
1415
+ text-decoration: none;
1416
+ font: inherit;
1417
+ margin: 0;
1418
+ overflow: visible;
1419
+ text-transform: none;
1420
+ }
1421
+
1422
+ .c0:disabled,
1423
+ .c0[aria-disabled]:not([aria-disabled=false]) {
1424
+ cursor: default;
1425
+ }
1426
+
1427
+ .c0:focus {
1428
+ outline: none;
1429
+ }
1430
+
1431
+ .c0::-moz-focus-inner {
1432
+ border-style: none;
1433
+ padding: 0;
1434
+ }
1435
+
1436
+ .c1 {
1437
+ width: -webkit-min-content;
1438
+ width: -moz-min-content;
1439
+ width: min-content;
1440
+ display: inline-grid;
1441
+ -webkit-align-items: center;
1442
+ -webkit-box-align: center;
1443
+ -ms-flex-align: center;
1444
+ align-items: center;
1445
+ -webkit-box-pack: center;
1446
+ -webkit-justify-content: center;
1447
+ -ms-flex-pack: center;
1448
+ justify-content: center;
1449
+ cursor: pointer;
1450
+ -webkit-user-select: none;
1451
+ -moz-user-select: none;
1452
+ -ms-user-select: none;
1453
+ user-select: none;
1454
+ white-space: nowrap;
1455
+ border-radius: 999999px;
1456
+ font-size: 14px;
1457
+ line-height: 22px;
1458
+ font-weight: bold;
1459
+ padding-right: 24px;
1460
+ padding-left: 24px;
1461
+ color: var(--charcoal-text2);
1462
+ background-color: var(--charcoal-surface3);
1463
+ -webkit-transition: 0.2s color,0.2s background-color,0.2s box-shadow;
1464
+ transition: 0.2s color,0.2s background-color,0.2s box-shadow;
1465
+ height: 40px;
1466
+ }
1467
+
1468
+ .c1:not(:disabled):not([aria-disabled]):active,
1469
+ .c1[aria-disabled='false']:active,
1470
+ .c1:not(:disabled):not([aria-disabled]):focus,
1471
+ .c1[aria-disabled='false']:focus,
1472
+ .c1:not(:disabled):not([aria-disabled]):focus-visible,
1473
+ .c1[aria-disabled='false']:focus-visible {
1474
+ outline: none;
1475
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
1476
+ }
1477
+
1478
+ .c1:not(:disabled):not([aria-disabled]):hover,
1479
+ .c1[aria-disabled='false']:hover {
1480
+ color: var(--charcoal-text2-hover);
1481
+ background-color: var(--charcoal-surface3-hover);
1482
+ }
1483
+
1484
+ .c1:not(:disabled):not([aria-disabled]):active,
1485
+ .c1[aria-disabled='false']:active {
1486
+ color: var(--charcoal-text2-press);
1487
+ background-color: var(--charcoal-surface3-press);
1488
+ }
1489
+
1490
+ .c1:disabled,
1491
+ .c1[aria-disabled]:not([aria-disabled='false']) {
1492
+ opacity: 0.32;
1493
+ }
1494
+
1495
+ .c20 {
1496
+ width: -webkit-fill-available;
1497
+ width: -moz-available;
1498
+ width: stretch;
1499
+ display: inline-grid;
1500
+ -webkit-align-items: center;
1501
+ -webkit-box-align: center;
1502
+ -ms-flex-align: center;
1503
+ align-items: center;
1504
+ -webkit-box-pack: center;
1505
+ -webkit-justify-content: center;
1506
+ -ms-flex-pack: center;
1507
+ justify-content: center;
1508
+ cursor: pointer;
1509
+ -webkit-user-select: none;
1510
+ -moz-user-select: none;
1511
+ -ms-user-select: none;
1512
+ user-select: none;
1513
+ white-space: nowrap;
1514
+ border-radius: 999999px;
1515
+ font-size: 14px;
1516
+ line-height: 22px;
1517
+ font-weight: bold;
1518
+ padding-right: 24px;
1519
+ padding-left: 24px;
1520
+ color: var(--charcoal-text5);
1521
+ background-color: var(--charcoal-brand);
1522
+ -webkit-transition: 0.2s color,0.2s background-color,0.2s box-shadow;
1523
+ transition: 0.2s color,0.2s background-color,0.2s box-shadow;
1524
+ height: 40px;
1525
+ }
1526
+
1527
+ .c20:not(:disabled):not([aria-disabled]):active,
1528
+ .c20[aria-disabled='false']:active,
1529
+ .c20:not(:disabled):not([aria-disabled]):focus,
1530
+ .c20[aria-disabled='false']:focus,
1531
+ .c20:not(:disabled):not([aria-disabled]):focus-visible,
1532
+ .c20[aria-disabled='false']:focus-visible {
1533
+ outline: none;
1534
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
1535
+ }
1536
+
1537
+ .c20:not(:disabled):not([aria-disabled]):hover,
1538
+ .c20[aria-disabled='false']:hover {
1539
+ color: var(--charcoal-text5-hover);
1540
+ background-color: var(--charcoal-brand-hover);
1541
+ }
1542
+
1543
+ .c20:not(:disabled):not([aria-disabled]):active,
1544
+ .c20[aria-disabled='false']:active {
1545
+ color: var(--charcoal-text5-press);
1546
+ background-color: var(--charcoal-brand-press);
1547
+ }
1548
+
1549
+ .c20:disabled,
1550
+ .c20[aria-disabled]:not([aria-disabled='false']) {
1551
+ opacity: 0.32;
1552
+ }
1553
+
1554
+ .c21 {
1555
+ width: -webkit-fill-available;
1556
+ width: -moz-available;
1557
+ width: stretch;
1558
+ display: inline-grid;
1559
+ -webkit-align-items: center;
1560
+ -webkit-box-align: center;
1561
+ -ms-flex-align: center;
1562
+ align-items: center;
1563
+ -webkit-box-pack: center;
1564
+ -webkit-justify-content: center;
1565
+ -ms-flex-pack: center;
1566
+ justify-content: center;
1567
+ cursor: pointer;
1568
+ -webkit-user-select: none;
1569
+ -moz-user-select: none;
1570
+ -ms-user-select: none;
1571
+ user-select: none;
1572
+ white-space: nowrap;
1573
+ border-radius: 999999px;
1574
+ font-size: 14px;
1575
+ line-height: 22px;
1576
+ font-weight: bold;
1577
+ padding-right: 24px;
1578
+ padding-left: 24px;
1579
+ color: var(--charcoal-text2);
1580
+ background-color: var(--charcoal-surface3);
1581
+ -webkit-transition: 0.2s color,0.2s background-color,0.2s box-shadow;
1582
+ transition: 0.2s color,0.2s background-color,0.2s box-shadow;
1583
+ height: 40px;
1584
+ }
1585
+
1586
+ .c21:not(:disabled):not([aria-disabled]):active,
1587
+ .c21[aria-disabled='false']:active,
1588
+ .c21:not(:disabled):not([aria-disabled]):focus,
1589
+ .c21[aria-disabled='false']:focus,
1590
+ .c21:not(:disabled):not([aria-disabled]):focus-visible,
1591
+ .c21[aria-disabled='false']:focus-visible {
1592
+ outline: none;
1593
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
1594
+ }
1595
+
1596
+ .c21:not(:disabled):not([aria-disabled]):hover,
1597
+ .c21[aria-disabled='false']:hover {
1598
+ color: var(--charcoal-text2-hover);
1599
+ background-color: var(--charcoal-surface3-hover);
1600
+ }
1601
+
1602
+ .c21:not(:disabled):not([aria-disabled]):active,
1603
+ .c21[aria-disabled='false']:active {
1604
+ color: var(--charcoal-text2-press);
1605
+ background-color: var(--charcoal-surface3-press);
1606
+ }
1607
+
1608
+ .c21:disabled,
1609
+ .c21[aria-disabled]:not([aria-disabled='false']) {
1610
+ opacity: 0.32;
1611
+ }
1612
+
1613
+ .c14 {
1614
+ font-size: 14px;
1615
+ line-height: 22px;
1616
+ font-weight: bold;
1617
+ display: flow-root;
1618
+ color: var(--charcoal-text1);
1619
+ }
1620
+
1621
+ .c14::before {
1622
+ display: block;
1623
+ width: 0;
1624
+ height: 0;
1625
+ content: '';
1626
+ margin-top: -4px;
1627
+ }
1628
+
1629
+ .c14::after {
1630
+ display: block;
1631
+ width: 0;
1632
+ height: 0;
1633
+ content: '';
1634
+ margin-bottom: -4px;
1635
+ }
1636
+
1637
+ .c16 {
1638
+ font-size: 14px;
1639
+ line-height: 22px;
1640
+ display: flow-root;
1641
+ color: var(--charcoal-text3);
1642
+ -webkit-transition: 0.2s color,0.2s box-shadow;
1643
+ transition: 0.2s color,0.2s box-shadow;
1644
+ }
1645
+
1646
+ .c16::before {
1647
+ display: block;
1648
+ width: 0;
1649
+ height: 0;
1650
+ content: '';
1651
+ margin-top: -4px;
1652
+ }
1653
+
1654
+ .c16::after {
1655
+ display: block;
1656
+ width: 0;
1657
+ height: 0;
1658
+ content: '';
1659
+ margin-bottom: -4px;
1660
+ }
1661
+
1662
+ .c16:not(:disabled):not([aria-disabled]):hover,
1663
+ .c16[aria-disabled='false']:hover {
1664
+ color: var(--charcoal-text3-hover);
1665
+ }
1666
+
1667
+ .c16:not(:disabled):not([aria-disabled]):active,
1668
+ .c16[aria-disabled='false']:active {
1669
+ color: var(--charcoal-text3-press);
1670
+ }
1671
+
1672
+ .c16:not(:disabled):not([aria-disabled]):active,
1673
+ .c16[aria-disabled='false']:active,
1674
+ .c16:not(:disabled):not([aria-disabled]):focus,
1675
+ .c16[aria-disabled='false']:focus,
1676
+ .c16:not(:disabled):not([aria-disabled]):focus-visible,
1677
+ .c16[aria-disabled='false']:focus-visible {
1678
+ outline: none;
1679
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
1680
+ }
1681
+
1682
+ .c12 {
1683
+ display: -webkit-inline-box;
1684
+ display: -webkit-inline-flex;
1685
+ display: -ms-inline-flexbox;
1686
+ display: inline-flex;
1687
+ -webkit-align-items: center;
1688
+ -webkit-box-align: center;
1689
+ -ms-flex-align: center;
1690
+ align-items: center;
1691
+ }
1692
+
1693
+ .c12 > .c15 {
1694
+ margin-left: auto;
1695
+ }
1696
+
1697
+ .c22 {
1698
+ -webkit-user-select: none;
1699
+ -moz-user-select: none;
1700
+ -ms-user-select: none;
1701
+ user-select: none;
1702
+ width: 32px;
1703
+ height: 32px;
1704
+ display: -webkit-box;
1705
+ display: -webkit-flex;
1706
+ display: -ms-flexbox;
1707
+ display: flex;
1708
+ -webkit-align-items: center;
1709
+ -webkit-box-align: center;
1710
+ -ms-flex-align: center;
1711
+ align-items: center;
1712
+ -webkit-box-pack: center;
1713
+ -webkit-justify-content: center;
1714
+ -ms-flex-pack: center;
1715
+ justify-content: center;
1716
+ color: var(--charcoal-text3);
1717
+ background-color: var(--charcoal-transparent);
1718
+ border-radius: 999999px;
1719
+ -webkit-transition: 0.2s background-color,0.2s box-shadow;
1720
+ transition: 0.2s background-color,0.2s box-shadow;
1721
+ }
1722
+
1723
+ .c22:not(:disabled):not([aria-disabled]):hover,
1724
+ .c22[aria-disabled='false']:hover {
1725
+ background-color: var( --charcoal-transparent-hover );
1726
+ }
1727
+
1728
+ .c22:not(:disabled):not([aria-disabled]):active,
1729
+ .c22[aria-disabled='false']:active {
1730
+ background-color: var( --charcoal-transparent-press );
1731
+ }
1732
+
1733
+ .c22:not(:disabled):not([aria-disabled]):focus,
1734
+ .c22[aria-disabled='false']:focus,
1735
+ .c22:not(:disabled):not([aria-disabled]):active,
1736
+ .c22[aria-disabled='false']:active,
1737
+ .c22:not(:disabled):not([aria-disabled]):focus-visible,
1738
+ .c22[aria-disabled='false']:focus-visible {
1739
+ outline: none;
1740
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
1741
+ }
1742
+
1743
+ .c22:disabled,
1744
+ .c22[aria-disabled]:not([aria-disabled='false']) {
1745
+ opacity: 0.32;
1746
+ }
1747
+
1748
+ .c3 {
1749
+ margin: auto;
1750
+ position: relative;
1751
+ height: -webkit-fit-content;
1752
+ height: -moz-fit-content;
1753
+ height: fit-content;
1754
+ width: 440px;
1755
+ background-color: var(--charcoal-surface1);
1756
+ border-radius: 24px;
1757
+ }
1758
+
1759
+ .c3:focus {
1760
+ outline: none;
1761
+ }
1762
+
1763
+ .c2 {
1764
+ z-index: 10;
1765
+ overflow: auto;
1766
+ display: -webkit-box;
1767
+ display: -webkit-flex;
1768
+ display: -ms-flexbox;
1769
+ display: flex;
1770
+ position: fixed;
1771
+ top: 0;
1772
+ left: 0;
1773
+ width: -webkit-fill-available;
1774
+ width: -moz-available;
1775
+ height: 100%;
1776
+ -webkit-box-pack: center;
1777
+ -webkit-justify-content: center;
1778
+ -ms-flex-pack: center;
1779
+ justify-content: center;
1780
+ padding: 40px 0;
1781
+ box-sizing: border-box;
1782
+ background-color: var(--charcoal-surface4);
1783
+ }
1784
+
1785
+ .c23 {
1786
+ position: absolute;
1787
+ top: 8px;
1788
+ right: 8px;
1789
+ color: var(--charcoal-text3);
1790
+ -webkit-transition: 0.2s color;
1791
+ transition: 0.2s color;
1792
+ }
1793
+
1794
+ .c23:not(:disabled):not([aria-disabled]):hover,
1795
+ .c23[aria-disabled='false']:hover {
1796
+ color: var(--charcoal-text3-hover);
1797
+ }
1798
+
1799
+ .c23:not(:disabled):not([aria-disabled]):active,
1800
+ .c23[aria-disabled='false']:active {
1801
+ color: var(--charcoal-text3-press);
1802
+ }
1803
+
1804
+ .c5 {
1805
+ margin: 0;
1806
+ font-weight: inherit;
1807
+ font-size: inherit;
1808
+ }
1809
+
1810
+ .c4 {
1811
+ height: 64px;
1812
+ display: grid;
1813
+ -webkit-align-content: center;
1814
+ -ms-flex-line-pack: center;
1815
+ align-content: center;
1816
+ -webkit-box-pack: center;
1817
+ -webkit-justify-content: center;
1818
+ -ms-flex-pack: center;
1819
+ justify-content: center;
1820
+ }
1821
+
1822
+ .c6 {
1823
+ color: var(--charcoal-text1);
1824
+ font-size: 16px;
1825
+ line-height: 24px;
1826
+ font-weight: bold;
1827
+ display: flow-root;
1828
+ }
1829
+
1830
+ .c6::before {
1831
+ display: block;
1832
+ width: 0;
1833
+ height: 0;
1834
+ content: '';
1835
+ margin-top: -4px;
1836
+ }
1837
+
1838
+ .c6::after {
1839
+ display: block;
1840
+ width: 0;
1841
+ height: 0;
1842
+ content: '';
1843
+ margin-bottom: -4px;
1844
+ }
1845
+
1846
+ .c9 {
1847
+ padding-left: 16px;
1848
+ padding-right: 16px;
1849
+ }
1850
+
1851
+ .c7 {
1852
+ padding-bottom: 40px;
1853
+ }
1854
+
1855
+ .c19 {
1856
+ display: grid;
1857
+ grid-auto-flow: row;
1858
+ grid-row-gap: 8px;
1859
+ padding-top: 16px;
1860
+ padding-left: 16px;
1861
+ padding-right: 16px;
208
1862
  }
209
1863
 
210
- .c1:active:not(:disabled):not([aria-disabled]),
211
- .c1:active[aria-disabled=false] {
212
- color: var(--charcoal-text2-press);
1864
+ .c11 {
1865
+ display: -webkit-box;
1866
+ display: -webkit-flex;
1867
+ display: -ms-flexbox;
1868
+ display: flex;
1869
+ -webkit-flex-direction: column;
1870
+ -ms-flex-direction: column;
1871
+ flex-direction: column;
213
1872
  }
214
1873
 
215
- .c1:hover:not(:disabled):not([aria-disabled]),
216
- .c1:hover[aria-disabled=false] {
217
- background-color: var(--charcoal-surface3-hover);
1874
+ .c13 {
1875
+ margin-bottom: 8px;
218
1876
  }
219
1877
 
220
- .c1:active:not(:disabled):not([aria-disabled]),
221
- .c1:active[aria-disabled=false] {
222
- background-color: var(--charcoal-surface3-press);
1878
+ .c17 {
1879
+ display: grid;
1880
+ grid-template-columns: 1fr;
1881
+ height: 40px;
1882
+ -webkit-transition: 0.2s background-color,0.2s box-shadow;
1883
+ transition: 0.2s background-color,0.2s box-shadow;
1884
+ color: var(--charcoal-text2);
1885
+ background-color: var(--charcoal-surface3);
1886
+ border-radius: 4px;
1887
+ gap: 4px;
1888
+ padding: 0 8px;
1889
+ line-height: 22px;
1890
+ font-size: 14px;
223
1891
  }
224
1892
 
225
- .c1:disabled,
226
- .c1[aria-disabled]:not([aria-disabled=false]) {
227
- opacity: 0.32;
1893
+ .c17:not(:disabled):not([aria-disabled]):hover,
1894
+ .c17 [aria-disabled='false']:hover {
1895
+ background-color: var(--charcoal-surface3-hover);
228
1896
  }
229
1897
 
230
- .c1:not(:disabled):not([aria-disabled]):focus,
231
- .c1[aria-disabled=false]:focus,
232
- .c1:not(:disabled):not([aria-disabled]):active,
233
- .c1[aria-disabled=false]:active {
1898
+ .c17:not(:disabled):not([aria-disabled]):active,
1899
+ .c17 [aria-disabled='false']:active {
234
1900
  outline: none;
235
1901
  box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
236
1902
  }
237
1903
 
238
- .c1:not(:disabled):not([aria-disabled]):focus:not(:focus-visible),
239
- .c1[aria-disabled=false]:focus:not(:focus-visible),
240
- .c1:not(:disabled):not([aria-disabled]):active:not(:focus-visible),
241
- .c1[aria-disabled=false]:active:not(:focus-visible) {
1904
+ .c17:focus-within {
242
1905
  outline: none;
1906
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
243
1907
  }
244
1908
 
245
- .c1:not(:disabled):not([aria-disabled]):focus-visible,
246
- .c1[aria-disabled=false]:focus-visible {
1909
+ .c18 {
1910
+ border: none;
1911
+ box-sizing: border-box;
247
1912
  outline: none;
248
- box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
1913
+ font-family: inherit;
1914
+ -webkit-transform-origin: top left;
1915
+ -ms-transform-origin: top left;
1916
+ transform-origin: top left;
1917
+ -webkit-transform: scale(0.875);
1918
+ -ms-transform: scale(0.875);
1919
+ transform: scale(0.875);
1920
+ width: calc(100% / 0.875);
1921
+ height: calc(100% / 0.875);
1922
+ font-size: calc(14px / 0.875);
1923
+ line-height: calc(22px / 0.875);
1924
+ padding-left: 0;
1925
+ padding-right: 0;
1926
+ border-radius: calc(4px / 0.875);
1927
+ -webkit-appearance: none;
1928
+ -moz-appearance: none;
1929
+ appearance: none;
1930
+ background: transparent;
1931
+ color: var(--charcoal-text2);
1932
+ }
1933
+
1934
+ .c18::-webkit-input-placeholder {
1935
+ color: var(--charcoal-text3);
1936
+ }
1937
+
1938
+ .c18::-moz-placeholder {
1939
+ color: var(--charcoal-text3);
1940
+ }
1941
+
1942
+ .c18:-ms-input-placeholder {
1943
+ color: var(--charcoal-text3);
1944
+ }
1945
+
1946
+ .c18::placeholder {
1947
+ color: var(--charcoal-text3);
1948
+ }
1949
+
1950
+ .c8 {
1951
+ display: grid;
1952
+ gap: 24px;
1953
+ }
1954
+
1955
+ .c10 {
1956
+ color: var(--charcoal-text2);
1957
+ font-size: 14px;
1958
+ line-height: 22px;
1959
+ display: flow-root;
1960
+ }
1961
+
1962
+ .c10::before {
1963
+ display: block;
1964
+ width: 0;
1965
+ height: 0;
1966
+ content: '';
1967
+ margin-top: -4px;
1968
+ }
1969
+
1970
+ .c10::after {
1971
+ display: block;
1972
+ width: 0;
1973
+ height: 0;
1974
+ content: '';
1975
+ margin-bottom: -4px;
1976
+ }
1977
+
1978
+ @media (max-width:743px) {
1979
+ .c3 {
1980
+ max-width: 440px;
1981
+ width: calc(100% - 48px);
1982
+ max-width: unset;
1983
+ width: 100%;
1984
+ border-radius: 0;
1985
+ margin: auto 0 0 0;
1986
+ min-height: 100%;
1987
+ }
1988
+ }
1989
+
1990
+ @media (max-width:743px) {
1991
+ .c2 {
1992
+ padding: 0;
1993
+ }
1994
+ }
1995
+
1996
+ @media (max-width:743px) {
1997
+ .c4 {
1998
+ height: 48px;
1999
+ }
249
2000
  }
250
2001
 
251
2002
  <div
@@ -262,11 +2013,152 @@ exports[`Storyshots Modal Default 1`] = `
262
2013
  >
263
2014
  Open Modal
264
2015
  </button>
2016
+ <div
2017
+ className="c2"
2018
+ onPointerDown={[Function]}
2019
+ style={Object {}}
2020
+ >
2021
+ <div
2022
+ className="c3"
2023
+ onBlur={[Function]}
2024
+ onFocus={null}
2025
+ onKeyDown={[Function]}
2026
+ role="dialog"
2027
+ size="M"
2028
+ style={Object {}}
2029
+ tabIndex={-1}
2030
+ >
2031
+ <div
2032
+ className="c4"
2033
+ >
2034
+ <h3
2035
+ className="c5 c6"
2036
+ >
2037
+ Title
2038
+ </h3>
2039
+ </div>
2040
+ <div
2041
+ className="c7"
2042
+ >
2043
+ <div
2044
+ className="c8"
2045
+ >
2046
+ <div
2047
+ className="c9 c10"
2048
+ >
2049
+ Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod placeat tenetur, necessitatibus laudantium cumque exercitationem provident. Quaerat iure enim, eveniet dolores earum odio quo possimus fugiat aspernatur, numquam, commodi repellat.
2050
+ </div>
2051
+ <div
2052
+ className="c9"
2053
+ >
2054
+ <div
2055
+ className="c11"
2056
+ >
2057
+ <div
2058
+ className="c12 c13"
2059
+ >
2060
+ <label
2061
+ className="c14"
2062
+ htmlFor="test-id"
2063
+ id="test-id"
2064
+ >
2065
+ Name
2066
+ </label>
2067
+ <div
2068
+ className="c15 c16"
2069
+ >
2070
+ <span />
2071
+ </div>
2072
+ </div>
2073
+ <div
2074
+ className="c17"
2075
+ >
2076
+ <input
2077
+ aria-labelledby="test-id"
2078
+ className="c18"
2079
+ disabled={false}
2080
+ id="test-id"
2081
+ onChange={[Function]}
2082
+ placeholder="Nagisa"
2083
+ readOnly={false}
2084
+ type="text"
2085
+ />
2086
+ </div>
2087
+ </div>
2088
+ </div>
2089
+ <div
2090
+ className="c9"
2091
+ >
2092
+ <div
2093
+ className="c11"
2094
+ >
2095
+ <div
2096
+ className="c12 c13"
2097
+ >
2098
+ <label
2099
+ className="c14"
2100
+ htmlFor="test-id"
2101
+ id="test-id"
2102
+ >
2103
+ Country
2104
+ </label>
2105
+ <div
2106
+ className="c15 c16"
2107
+ >
2108
+ <span />
2109
+ </div>
2110
+ </div>
2111
+ <div
2112
+ className="c17"
2113
+ >
2114
+ <input
2115
+ aria-labelledby="test-id"
2116
+ className="c18"
2117
+ disabled={false}
2118
+ id="test-id"
2119
+ onChange={[Function]}
2120
+ placeholder="Tokyo"
2121
+ readOnly={false}
2122
+ type="text"
2123
+ />
2124
+ </div>
2125
+ </div>
2126
+ </div>
2127
+ </div>
2128
+ <div
2129
+ className="c19"
2130
+ >
2131
+ <button
2132
+ className="c0 c20"
2133
+ disabled={false}
2134
+ onClick={[Function]}
2135
+ >
2136
+ Apply
2137
+ </button>
2138
+ <button
2139
+ className="c0 c21"
2140
+ disabled={false}
2141
+ onClick={[Function]}
2142
+ >
2143
+ Cancel
2144
+ </button>
2145
+ </div>
2146
+ </div>
2147
+ <button
2148
+ className="c0 c22 c23"
2149
+ onClick={[Function]}
2150
+ >
2151
+ <pixiv-icon
2152
+ name="24/Close"
2153
+ />
2154
+ </button>
2155
+ </div>
2156
+ </div>
265
2157
  </div>
266
2158
  </div>
267
2159
  `;
268
2160
 
269
- exports[`Storyshots Modal Full Bottom Sheet 1`] = `
2161
+ exports[`Storyshots Modal Internal Scroll 1`] = `
270
2162
  .c0 {
271
2163
  cursor: pointer;
272
2164
  -webkit-appearance: none;
@@ -283,6 +2175,8 @@ exports[`Storyshots Modal Full Bottom Sheet 1`] = `
283
2175
  -ms-letter-spacing: inherit;
284
2176
  letter-spacing: inherit;
285
2177
  word-spacing: inherit;
2178
+ -webkit-text-decoration: none;
2179
+ text-decoration: none;
286
2180
  font: inherit;
287
2181
  margin: 0;
288
2182
  overflow: visible;
@@ -322,63 +2216,230 @@ exports[`Storyshots Modal Full Bottom Sheet 1`] = `
322
2216
  -ms-user-select: none;
323
2217
  user-select: none;
324
2218
  white-space: nowrap;
325
- color: var(--charcoal-text2);
326
- background-color: var(--charcoal-surface3);
2219
+ border-radius: 999999px;
327
2220
  font-size: 14px;
328
2221
  line-height: 22px;
329
2222
  font-weight: bold;
330
2223
  padding-right: 24px;
331
2224
  padding-left: 24px;
332
- border-radius: 999999px;
2225
+ color: var(--charcoal-text2);
2226
+ background-color: var(--charcoal-surface3);
333
2227
  -webkit-transition: 0.2s color,0.2s background-color,0.2s box-shadow;
334
2228
  transition: 0.2s color,0.2s background-color,0.2s box-shadow;
335
2229
  height: 40px;
336
2230
  }
337
2231
 
338
- .c1:hover:not(:disabled):not([aria-disabled]),
339
- .c1:hover[aria-disabled=false] {
2232
+ .c1:not(:disabled):not([aria-disabled]):active,
2233
+ .c1[aria-disabled='false']:active,
2234
+ .c1:not(:disabled):not([aria-disabled]):focus,
2235
+ .c1[aria-disabled='false']:focus,
2236
+ .c1:not(:disabled):not([aria-disabled]):focus-visible,
2237
+ .c1[aria-disabled='false']:focus-visible {
2238
+ outline: none;
2239
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
2240
+ }
2241
+
2242
+ .c1:not(:disabled):not([aria-disabled]):hover,
2243
+ .c1[aria-disabled='false']:hover {
340
2244
  color: var(--charcoal-text2-hover);
2245
+ background-color: var(--charcoal-surface3-hover);
341
2246
  }
342
2247
 
343
- .c1:active:not(:disabled):not([aria-disabled]),
344
- .c1:active[aria-disabled=false] {
2248
+ .c1:not(:disabled):not([aria-disabled]):active,
2249
+ .c1[aria-disabled='false']:active {
345
2250
  color: var(--charcoal-text2-press);
2251
+ background-color: var(--charcoal-surface3-press);
2252
+ }
2253
+
2254
+ .c1:disabled,
2255
+ .c1[aria-disabled]:not([aria-disabled='false']) {
2256
+ opacity: 0.32;
2257
+ }
2258
+
2259
+ .c11 {
2260
+ width: -webkit-fill-available;
2261
+ width: -moz-available;
2262
+ width: stretch;
2263
+ display: inline-grid;
2264
+ -webkit-align-items: center;
2265
+ -webkit-box-align: center;
2266
+ -ms-flex-align: center;
2267
+ align-items: center;
2268
+ -webkit-box-pack: center;
2269
+ -webkit-justify-content: center;
2270
+ -ms-flex-pack: center;
2271
+ justify-content: center;
2272
+ cursor: pointer;
2273
+ -webkit-user-select: none;
2274
+ -moz-user-select: none;
2275
+ -ms-user-select: none;
2276
+ user-select: none;
2277
+ white-space: nowrap;
2278
+ border-radius: 999999px;
2279
+ font-size: 14px;
2280
+ line-height: 22px;
2281
+ font-weight: bold;
2282
+ padding-right: 24px;
2283
+ padding-left: 24px;
2284
+ color: var(--charcoal-text2);
2285
+ background-color: var(--charcoal-surface3);
2286
+ -webkit-transition: 0.2s color,0.2s background-color,0.2s box-shadow;
2287
+ transition: 0.2s color,0.2s background-color,0.2s box-shadow;
2288
+ height: 40px;
2289
+ }
2290
+
2291
+ .c11:not(:disabled):not([aria-disabled]):active,
2292
+ .c11[aria-disabled='false']:active,
2293
+ .c11:not(:disabled):not([aria-disabled]):focus,
2294
+ .c11[aria-disabled='false']:focus,
2295
+ .c11:not(:disabled):not([aria-disabled]):focus-visible,
2296
+ .c11[aria-disabled='false']:focus-visible {
2297
+ outline: none;
2298
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
346
2299
  }
347
2300
 
348
- .c1:hover:not(:disabled):not([aria-disabled]),
349
- .c1:hover[aria-disabled=false] {
2301
+ .c11:not(:disabled):not([aria-disabled]):hover,
2302
+ .c11[aria-disabled='false']:hover {
2303
+ color: var(--charcoal-text2-hover);
350
2304
  background-color: var(--charcoal-surface3-hover);
351
2305
  }
352
2306
 
353
- .c1:active:not(:disabled):not([aria-disabled]),
354
- .c1:active[aria-disabled=false] {
2307
+ .c11:not(:disabled):not([aria-disabled]):active,
2308
+ .c11[aria-disabled='false']:active {
2309
+ color: var(--charcoal-text2-press);
355
2310
  background-color: var(--charcoal-surface3-press);
356
2311
  }
357
2312
 
358
- .c1:disabled,
359
- .c1[aria-disabled]:not([aria-disabled=false]) {
2313
+ .c11:disabled,
2314
+ .c11[aria-disabled]:not([aria-disabled='false']) {
360
2315
  opacity: 0.32;
361
2316
  }
362
2317
 
363
- .c1:not(:disabled):not([aria-disabled]):focus,
364
- .c1[aria-disabled=false]:focus,
365
- .c1:not(:disabled):not([aria-disabled]):active,
366
- .c1[aria-disabled=false]:active {
367
- outline: none;
368
- box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
2318
+ .c3 {
2319
+ margin: auto;
2320
+ position: relative;
2321
+ height: -webkit-fit-content;
2322
+ height: -moz-fit-content;
2323
+ height: fit-content;
2324
+ width: 440px;
2325
+ background-color: var(--charcoal-surface1);
2326
+ border-radius: 24px;
369
2327
  }
370
2328
 
371
- .c1:not(:disabled):not([aria-disabled]):focus:not(:focus-visible),
372
- .c1[aria-disabled=false]:focus:not(:focus-visible),
373
- .c1:not(:disabled):not([aria-disabled]):active:not(:focus-visible),
374
- .c1[aria-disabled=false]:active:not(:focus-visible) {
2329
+ .c3:focus {
375
2330
  outline: none;
376
2331
  }
377
2332
 
378
- .c1:not(:disabled):not([aria-disabled]):focus-visible,
379
- .c1[aria-disabled=false]:focus-visible {
380
- outline: none;
381
- box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
2333
+ .c2 {
2334
+ z-index: 10;
2335
+ overflow: auto;
2336
+ display: -webkit-box;
2337
+ display: -webkit-flex;
2338
+ display: -ms-flexbox;
2339
+ display: flex;
2340
+ position: fixed;
2341
+ top: 0;
2342
+ left: 0;
2343
+ width: -webkit-fill-available;
2344
+ width: -moz-available;
2345
+ height: 100%;
2346
+ -webkit-box-pack: center;
2347
+ -webkit-justify-content: center;
2348
+ -ms-flex-pack: center;
2349
+ justify-content: center;
2350
+ padding: 40px 0;
2351
+ box-sizing: border-box;
2352
+ background-color: var(--charcoal-surface4);
2353
+ }
2354
+
2355
+ .c5 {
2356
+ margin: 0;
2357
+ font-weight: inherit;
2358
+ font-size: inherit;
2359
+ }
2360
+
2361
+ .c4 {
2362
+ height: 64px;
2363
+ display: grid;
2364
+ -webkit-align-content: center;
2365
+ -ms-flex-line-pack: center;
2366
+ align-content: center;
2367
+ -webkit-box-pack: center;
2368
+ -webkit-justify-content: center;
2369
+ -ms-flex-pack: center;
2370
+ justify-content: center;
2371
+ }
2372
+
2373
+ .c6 {
2374
+ color: var(--charcoal-text1);
2375
+ font-size: 16px;
2376
+ line-height: 24px;
2377
+ font-weight: bold;
2378
+ display: flow-root;
2379
+ }
2380
+
2381
+ .c6::before {
2382
+ display: block;
2383
+ width: 0;
2384
+ height: 0;
2385
+ content: '';
2386
+ margin-top: -4px;
2387
+ }
2388
+
2389
+ .c6::after {
2390
+ display: block;
2391
+ width: 0;
2392
+ height: 0;
2393
+ content: '';
2394
+ margin-bottom: -4px;
2395
+ }
2396
+
2397
+ .c7 {
2398
+ padding-bottom: 40px;
2399
+ }
2400
+
2401
+ .c9 {
2402
+ display: grid;
2403
+ grid-auto-flow: row;
2404
+ grid-row-gap: 8px;
2405
+ padding-top: 16px;
2406
+ padding-left: 16px;
2407
+ padding-right: 16px;
2408
+ }
2409
+
2410
+ .c8 {
2411
+ overflow: auto;
2412
+ max-height: calc( 100vh - 184px - 56px );
2413
+ }
2414
+
2415
+ .c10 {
2416
+ position: relative;
2417
+ }
2418
+
2419
+ .c10::before {
2420
+ content: '';
2421
+ pointer-events: none;
2422
+ border-top: 1px solid rgba(0,0,0,0.08);
2423
+ position: absolute;
2424
+ left: 0;
2425
+ top: 0;
2426
+ width: 100%;
2427
+ height: 100%;
2428
+ }
2429
+
2430
+ @media (max-width:743px) {
2431
+ .c3 {
2432
+ max-width: 440px;
2433
+ width: calc(100% - 48px);
2434
+ }
2435
+ }
2436
+
2437
+ @media (max-width:743px) {
2438
+
2439
+ }
2440
+
2441
+ @media (max-width:743px) {
2442
+
382
2443
  }
383
2444
 
384
2445
  <div
@@ -395,11 +2456,64 @@ exports[`Storyshots Modal Full Bottom Sheet 1`] = `
395
2456
  >
396
2457
  Open Modal
397
2458
  </button>
2459
+ <div
2460
+ className="c2"
2461
+ onPointerDown={[Function]}
2462
+ style={Object {}}
2463
+ >
2464
+ <div
2465
+ className="c3"
2466
+ onBlur={[Function]}
2467
+ onFocus={null}
2468
+ onKeyDown={[Function]}
2469
+ role="dialog"
2470
+ size="M"
2471
+ style={Object {}}
2472
+ tabIndex={-1}
2473
+ >
2474
+ <div
2475
+ className="c4"
2476
+ >
2477
+ <h3
2478
+ className="c5 c6"
2479
+ >
2480
+ Title
2481
+ </h3>
2482
+ </div>
2483
+ <div
2484
+ className="c7"
2485
+ >
2486
+ <div
2487
+ className="c8"
2488
+ >
2489
+ <div
2490
+ style={
2491
+ Object {
2492
+ "background": "linear-gradient(#e66465, #9198e5)",
2493
+ "height": 1000,
2494
+ }
2495
+ }
2496
+ />
2497
+ </div>
2498
+ <div
2499
+ className="c9 c10"
2500
+ >
2501
+ <button
2502
+ className="c0 c11"
2503
+ disabled={false}
2504
+ onClick={[Function]}
2505
+ >
2506
+ Close
2507
+ </button>
2508
+ </div>
2509
+ </div>
2510
+ </div>
2511
+ </div>
398
2512
  </div>
399
2513
  </div>
400
2514
  `;
401
2515
 
402
- exports[`Storyshots Modal Internal Scroll 1`] = `
2516
+ exports[`Storyshots Modal Not Dismmissable Story 1`] = `
403
2517
  .c0 {
404
2518
  cursor: pointer;
405
2519
  -webkit-appearance: none;
@@ -416,6 +2530,8 @@ exports[`Storyshots Modal Internal Scroll 1`] = `
416
2530
  -ms-letter-spacing: inherit;
417
2531
  letter-spacing: inherit;
418
2532
  word-spacing: inherit;
2533
+ -webkit-text-decoration: none;
2534
+ text-decoration: none;
419
2535
  font: inherit;
420
2536
  margin: 0;
421
2537
  overflow: visible;
@@ -455,63 +2571,243 @@ exports[`Storyshots Modal Internal Scroll 1`] = `
455
2571
  -ms-user-select: none;
456
2572
  user-select: none;
457
2573
  white-space: nowrap;
458
- color: var(--charcoal-text2);
459
- background-color: var(--charcoal-surface3);
2574
+ border-radius: 999999px;
460
2575
  font-size: 14px;
461
2576
  line-height: 22px;
462
2577
  font-weight: bold;
463
2578
  padding-right: 24px;
464
2579
  padding-left: 24px;
465
- border-radius: 999999px;
2580
+ color: var(--charcoal-text2);
2581
+ background-color: var(--charcoal-surface3);
466
2582
  -webkit-transition: 0.2s color,0.2s background-color,0.2s box-shadow;
467
2583
  transition: 0.2s color,0.2s background-color,0.2s box-shadow;
468
2584
  height: 40px;
469
2585
  }
470
2586
 
471
- .c1:hover:not(:disabled):not([aria-disabled]),
472
- .c1:hover[aria-disabled=false] {
473
- color: var(--charcoal-text2-hover);
474
- }
475
-
476
- .c1:active:not(:disabled):not([aria-disabled]),
477
- .c1:active[aria-disabled=false] {
478
- color: var(--charcoal-text2-press);
2587
+ .c1:not(:disabled):not([aria-disabled]):active,
2588
+ .c1[aria-disabled='false']:active,
2589
+ .c1:not(:disabled):not([aria-disabled]):focus,
2590
+ .c1[aria-disabled='false']:focus,
2591
+ .c1:not(:disabled):not([aria-disabled]):focus-visible,
2592
+ .c1[aria-disabled='false']:focus-visible {
2593
+ outline: none;
2594
+ box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
479
2595
  }
480
2596
 
481
- .c1:hover:not(:disabled):not([aria-disabled]),
482
- .c1:hover[aria-disabled=false] {
2597
+ .c1:not(:disabled):not([aria-disabled]):hover,
2598
+ .c1[aria-disabled='false']:hover {
2599
+ color: var(--charcoal-text2-hover);
483
2600
  background-color: var(--charcoal-surface3-hover);
484
2601
  }
485
2602
 
486
- .c1:active:not(:disabled):not([aria-disabled]),
487
- .c1:active[aria-disabled=false] {
2603
+ .c1:not(:disabled):not([aria-disabled]):active,
2604
+ .c1[aria-disabled='false']:active {
2605
+ color: var(--charcoal-text2-press);
488
2606
  background-color: var(--charcoal-surface3-press);
489
2607
  }
490
2608
 
491
2609
  .c1:disabled,
492
- .c1[aria-disabled]:not([aria-disabled=false]) {
2610
+ .c1[aria-disabled]:not([aria-disabled='false']) {
493
2611
  opacity: 0.32;
494
2612
  }
495
2613
 
496
- .c1:not(:disabled):not([aria-disabled]):focus,
497
- .c1[aria-disabled=false]:focus,
498
- .c1:not(:disabled):not([aria-disabled]):active,
499
- .c1[aria-disabled=false]:active {
2614
+ .c12 {
2615
+ width: -webkit-fill-available;
2616
+ width: -moz-available;
2617
+ width: stretch;
2618
+ display: inline-grid;
2619
+ -webkit-align-items: center;
2620
+ -webkit-box-align: center;
2621
+ -ms-flex-align: center;
2622
+ align-items: center;
2623
+ -webkit-box-pack: center;
2624
+ -webkit-justify-content: center;
2625
+ -ms-flex-pack: center;
2626
+ justify-content: center;
2627
+ cursor: pointer;
2628
+ -webkit-user-select: none;
2629
+ -moz-user-select: none;
2630
+ -ms-user-select: none;
2631
+ user-select: none;
2632
+ white-space: nowrap;
2633
+ border-radius: 999999px;
2634
+ font-size: 14px;
2635
+ line-height: 22px;
2636
+ font-weight: bold;
2637
+ padding-right: 24px;
2638
+ padding-left: 24px;
2639
+ color: var(--charcoal-text5);
2640
+ background-color: var(--charcoal-brand);
2641
+ -webkit-transition: 0.2s color,0.2s background-color,0.2s box-shadow;
2642
+ transition: 0.2s color,0.2s background-color,0.2s box-shadow;
2643
+ height: 40px;
2644
+ }
2645
+
2646
+ .c12:not(:disabled):not([aria-disabled]):active,
2647
+ .c12[aria-disabled='false']:active,
2648
+ .c12:not(:disabled):not([aria-disabled]):focus,
2649
+ .c12[aria-disabled='false']:focus,
2650
+ .c12:not(:disabled):not([aria-disabled]):focus-visible,
2651
+ .c12[aria-disabled='false']:focus-visible {
500
2652
  outline: none;
501
2653
  box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
502
2654
  }
503
2655
 
504
- .c1:not(:disabled):not([aria-disabled]):focus:not(:focus-visible),
505
- .c1[aria-disabled=false]:focus:not(:focus-visible),
506
- .c1:not(:disabled):not([aria-disabled]):active:not(:focus-visible),
507
- .c1[aria-disabled=false]:active:not(:focus-visible) {
508
- outline: none;
2656
+ .c12:not(:disabled):not([aria-disabled]):hover,
2657
+ .c12[aria-disabled='false']:hover {
2658
+ color: var(--charcoal-text5-hover);
2659
+ background-color: var(--charcoal-brand-hover);
509
2660
  }
510
2661
 
511
- .c1:not(:disabled):not([aria-disabled]):focus-visible,
512
- .c1[aria-disabled=false]:focus-visible {
2662
+ .c12:not(:disabled):not([aria-disabled]):active,
2663
+ .c12[aria-disabled='false']:active {
2664
+ color: var(--charcoal-text5-press);
2665
+ background-color: var(--charcoal-brand-press);
2666
+ }
2667
+
2668
+ .c12:disabled,
2669
+ .c12[aria-disabled]:not([aria-disabled='false']) {
2670
+ opacity: 0.32;
2671
+ }
2672
+
2673
+ .c3 {
2674
+ margin: auto;
2675
+ position: relative;
2676
+ height: -webkit-fit-content;
2677
+ height: -moz-fit-content;
2678
+ height: fit-content;
2679
+ width: 440px;
2680
+ background-color: var(--charcoal-surface1);
2681
+ border-radius: 24px;
2682
+ }
2683
+
2684
+ .c3:focus {
513
2685
  outline: none;
514
- box-shadow: 0 0 0 4px rgba(0,150,250,0.32);
2686
+ }
2687
+
2688
+ .c2 {
2689
+ z-index: 10;
2690
+ overflow: auto;
2691
+ display: -webkit-box;
2692
+ display: -webkit-flex;
2693
+ display: -ms-flexbox;
2694
+ display: flex;
2695
+ position: fixed;
2696
+ top: 0;
2697
+ left: 0;
2698
+ width: -webkit-fill-available;
2699
+ width: -moz-available;
2700
+ height: 100%;
2701
+ -webkit-box-pack: center;
2702
+ -webkit-justify-content: center;
2703
+ -ms-flex-pack: center;
2704
+ justify-content: center;
2705
+ padding: 40px 0;
2706
+ box-sizing: border-box;
2707
+ background-color: var(--charcoal-surface4);
2708
+ }
2709
+
2710
+ .c5 {
2711
+ margin: 0;
2712
+ font-weight: inherit;
2713
+ font-size: inherit;
2714
+ }
2715
+
2716
+ .c4 {
2717
+ height: 64px;
2718
+ display: grid;
2719
+ -webkit-align-content: center;
2720
+ -ms-flex-line-pack: center;
2721
+ align-content: center;
2722
+ -webkit-box-pack: center;
2723
+ -webkit-justify-content: center;
2724
+ -ms-flex-pack: center;
2725
+ justify-content: center;
2726
+ }
2727
+
2728
+ .c6 {
2729
+ color: var(--charcoal-text1);
2730
+ font-size: 16px;
2731
+ line-height: 24px;
2732
+ font-weight: bold;
2733
+ display: flow-root;
2734
+ }
2735
+
2736
+ .c6::before {
2737
+ display: block;
2738
+ width: 0;
2739
+ height: 0;
2740
+ content: '';
2741
+ margin-top: -4px;
2742
+ }
2743
+
2744
+ .c6::after {
2745
+ display: block;
2746
+ width: 0;
2747
+ height: 0;
2748
+ content: '';
2749
+ margin-bottom: -4px;
2750
+ }
2751
+
2752
+ .c9 {
2753
+ padding-left: 16px;
2754
+ padding-right: 16px;
2755
+ }
2756
+
2757
+ .c7 {
2758
+ padding-bottom: 40px;
2759
+ }
2760
+
2761
+ .c11 {
2762
+ display: grid;
2763
+ grid-auto-flow: row;
2764
+ grid-row-gap: 8px;
2765
+ padding-top: 16px;
2766
+ padding-left: 16px;
2767
+ padding-right: 16px;
2768
+ }
2769
+
2770
+ .c8 {
2771
+ display: grid;
2772
+ gap: 24px;
2773
+ }
2774
+
2775
+ .c10 {
2776
+ color: var(--charcoal-text2);
2777
+ font-size: 14px;
2778
+ line-height: 22px;
2779
+ display: flow-root;
2780
+ }
2781
+
2782
+ .c10::before {
2783
+ display: block;
2784
+ width: 0;
2785
+ height: 0;
2786
+ content: '';
2787
+ margin-top: -4px;
2788
+ }
2789
+
2790
+ .c10::after {
2791
+ display: block;
2792
+ width: 0;
2793
+ height: 0;
2794
+ content: '';
2795
+ margin-bottom: -4px;
2796
+ }
2797
+
2798
+ @media (max-width:743px) {
2799
+ .c3 {
2800
+ max-width: 440px;
2801
+ width: calc(100% - 48px);
2802
+ }
2803
+ }
2804
+
2805
+ @media (max-width:743px) {
2806
+
2807
+ }
2808
+
2809
+ @media (max-width:743px) {
2810
+
515
2811
  }
516
2812
 
517
2813
  <div
@@ -528,6 +2824,56 @@ exports[`Storyshots Modal Internal Scroll 1`] = `
528
2824
  >
529
2825
  Open Modal
530
2826
  </button>
2827
+ <div
2828
+ className="c2"
2829
+ onPointerDown={[Function]}
2830
+ style={Object {}}
2831
+ >
2832
+ <div
2833
+ className="c3"
2834
+ onBlur={[Function]}
2835
+ onFocus={null}
2836
+ onKeyDown={[Function]}
2837
+ role="dialog"
2838
+ size="M"
2839
+ style={Object {}}
2840
+ tabIndex={-1}
2841
+ >
2842
+ <div
2843
+ className="c4"
2844
+ >
2845
+ <h3
2846
+ className="c5 c6"
2847
+ >
2848
+ Title
2849
+ </h3>
2850
+ </div>
2851
+ <div
2852
+ className="c7"
2853
+ >
2854
+ <div
2855
+ className="c8"
2856
+ >
2857
+ <div
2858
+ className="c9 c10"
2859
+ >
2860
+ Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod placeat tenetur, necessitatibus laudantium cumque exercitationem provident. Quaerat iure enim, eveniet dolores earum odio quo possimus fugiat aspernatur, numquam, commodi repellat.
2861
+ </div>
2862
+ </div>
2863
+ <div
2864
+ className="c11"
2865
+ >
2866
+ <button
2867
+ className="c0 c12"
2868
+ disabled={false}
2869
+ onClick={[Function]}
2870
+ >
2871
+ OK
2872
+ </button>
2873
+ </div>
2874
+ </div>
2875
+ </div>
2876
+ </div>
531
2877
  </div>
532
2878
  </div>
533
2879
  `;