@streamoid/ui 0.6.10 → 0.6.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -6285,6 +6285,886 @@
6285
6285
  pointer-events: none;
6286
6286
  }
6287
6287
 
6288
+ /* src/SC-textArea/ScTextArea.module.css */
6289
+ .ScTextArea_scTextArea,
6290
+ .ScTextArea_scTextArea * {
6291
+ box-sizing: border-box;
6292
+ }
6293
+ .ScTextArea_scTextArea {
6294
+ display: flex;
6295
+ flex-direction: column;
6296
+ gap: var(--spacing-xs, 0.25rem);
6297
+ align-items: flex-start;
6298
+ justify-content: center;
6299
+ width: 100%;
6300
+ position: relative;
6301
+ }
6302
+ .ScTextArea_scTextArea.ScTextArea_label-group-none {
6303
+ gap: 0;
6304
+ }
6305
+ .ScTextArea_labelContainer {
6306
+ display: flex;
6307
+ flex-direction: row;
6308
+ gap: var(--spacing-3xl, 1rem);
6309
+ align-items: center;
6310
+ justify-content: flex-start;
6311
+ align-self: stretch;
6312
+ flex-shrink: 0;
6313
+ height: 1.5rem;
6314
+ position: relative;
6315
+ }
6316
+ .ScTextArea_label {
6317
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6318
+ text-align: left;
6319
+ font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
6320
+ font-size: var(--text-text-sm-regular-font-size, 0.875rem);
6321
+ line-height: var(--text-text-sm-regular-line-height, 1.25rem);
6322
+ font-weight: var(--text-text-sm-regular-font-weight, 400);
6323
+ position: relative;
6324
+ flex: 1;
6325
+ height: 1.25rem;
6326
+ display: flex;
6327
+ align-items: center;
6328
+ justify-content: flex-start;
6329
+ }
6330
+ .ScTextArea_info {
6331
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
6332
+ text-align: right;
6333
+ font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
6334
+ font-size: var(--text-text-sm-regular-font-size, 0.875rem);
6335
+ line-height: var(--text-text-sm-regular-line-height, 1.25rem);
6336
+ font-weight: var(--text-text-sm-regular-font-weight, 400);
6337
+ position: relative;
6338
+ display: flex;
6339
+ align-items: center;
6340
+ justify-content: flex-end;
6341
+ }
6342
+ .ScTextArea_inputContainer {
6343
+ background: var(--alias-fill-neutral-neutralplus, #151515);
6344
+ border: 1px solid var(--alias-border-subtle, transparent);
6345
+ border-radius: var(--radius-3xl, 1rem);
6346
+ padding: var(--spacing-xl, 0.75rem) var(--spacing-3xl, 1rem) var(--spacing-xl, 0.75rem) var(--spacing-3xl, 1rem);
6347
+ display: flex;
6348
+ flex-direction: row;
6349
+ gap: var(--spacing-3xl, 1rem);
6350
+ align-items: flex-start;
6351
+ justify-content: flex-start;
6352
+ align-self: stretch;
6353
+ flex-shrink: 0;
6354
+ height: auto;
6355
+ min-height: 4.5rem;
6356
+ position: relative;
6357
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
6358
+ }
6359
+ .ScTextArea_inputText {
6360
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
6361
+ text-align: left;
6362
+ font-family: var( --text-text-sm-regular-font-family, "Inter-Regular", sans-serif );
6363
+ font-size: var(--text-text-sm-regular-font-size, 0.875rem);
6364
+ line-height: var(--text-text-sm-regular-line-height, 1.25rem);
6365
+ font-weight: var(--text-text-sm-regular-font-weight, 400);
6366
+ position: relative;
6367
+ flex: 1;
6368
+ min-width: 0;
6369
+ width: 100%;
6370
+ min-height: 4rem;
6371
+ background: transparent;
6372
+ outline: none;
6373
+ border: none;
6374
+ resize: vertical;
6375
+ white-space: normal;
6376
+ overflow: auto;
6377
+ }
6378
+ .ScTextArea_scTextArea:hover .ScTextArea_inputContainer,
6379
+ .ScTextArea_scTextArea.ScTextArea_state-hover .ScTextArea_inputContainer,
6380
+ .ScTextArea_scTextArea.ScTextArea_state-filled .ScTextArea_inputContainer {
6381
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
6382
+ border-color: var(--alias-border-default, transparent);
6383
+ }
6384
+ .ScTextArea_scTextArea.ScTextArea_state-filled .ScTextArea_inputText {
6385
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6386
+ }
6387
+ .ScTextArea_scTextArea.ScTextArea_state-active .ScTextArea_inputContainer {
6388
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
6389
+ border-style: solid;
6390
+ border-color: var(--alias-border-strong, #5c5c5c);
6391
+ border-width: 0.0625rem;
6392
+ }
6393
+ .ScTextArea_scTextArea.ScTextArea_state-active .ScTextArea_inputText {
6394
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6395
+ }
6396
+ .ScTextArea_scTextArea.ScTextArea_state-error .ScTextArea_inputContainer {
6397
+ border-style: solid;
6398
+ border-color: var(--alias-text-and-icons-error, #d11a1a);
6399
+ border-width: 0.0625rem;
6400
+ }
6401
+ .ScTextArea_scTextArea.ScTextArea_state-disabled .ScTextArea_inputContainer {
6402
+ background: var(--alias-fill-neutral-neutralplus, #151515);
6403
+ border-color: var(--alias-border-subtle, transparent);
6404
+ }
6405
+ .ScTextArea_scTextArea.ScTextArea_state-disabled .ScTextArea_inputText {
6406
+ color: var(--alias-text-and-icons-disabled, #5c5c5c);
6407
+ cursor: not-allowed;
6408
+ resize: none;
6409
+ }
6410
+ .ScTextArea_scTextArea.ScTextArea_label-group-none .ScTextArea_labelContainer {
6411
+ display: none;
6412
+ }
6413
+
6414
+ /* src/SC-select/ScSelect.module.css */
6415
+ .ScSelect_scSelect,
6416
+ .ScSelect_scSelect * {
6417
+ box-sizing: border-box;
6418
+ }
6419
+ .ScSelect_scSelect {
6420
+ display: flex;
6421
+ flex-direction: column;
6422
+ gap: var(--spacing-xs, 0.25rem);
6423
+ width: 100%;
6424
+ position: relative;
6425
+ }
6426
+ .ScSelect_scSelect.ScSelect_label-group- {
6427
+ gap: 0;
6428
+ }
6429
+ .ScSelect_labelContainer {
6430
+ display: flex;
6431
+ gap: var(--spacing-3xl, 1rem);
6432
+ align-items: center;
6433
+ align-self: stretch;
6434
+ height: 1.5rem;
6435
+ }
6436
+ .ScSelect_label {
6437
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6438
+ font-family: Inter, sans-serif;
6439
+ font-size: 0.875rem;
6440
+ line-height: 1.25rem;
6441
+ font-weight: 400;
6442
+ flex: 1;
6443
+ }
6444
+ .ScSelect_selectArea {
6445
+ position: relative;
6446
+ width: 100%;
6447
+ }
6448
+ .ScSelect_trigger {
6449
+ background: var(--alias-fill-neutral-neutralplus, #151515);
6450
+ border: 1px solid var(--alias-border-subtle, transparent);
6451
+ border-radius: var(--radius-3xl, 1rem);
6452
+ padding: var(--spacing-xl, 0.75rem) var(--spacing-3xl, 1rem);
6453
+ display: flex;
6454
+ gap: var(--spacing-3xl, 1rem);
6455
+ align-items: center;
6456
+ align-self: stretch;
6457
+ width: 100%;
6458
+ height: 3rem;
6459
+ overflow: hidden;
6460
+ cursor: pointer;
6461
+ outline: none;
6462
+ font-family: Inter, sans-serif;
6463
+ text-align: left;
6464
+ }
6465
+ .ScSelect_triggerText {
6466
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6467
+ font-family: Inter, sans-serif;
6468
+ font-size: 0.875rem;
6469
+ line-height: 1.25rem;
6470
+ font-weight: 400;
6471
+ flex: 1;
6472
+ min-width: 0;
6473
+ overflow: hidden;
6474
+ text-overflow: ellipsis;
6475
+ white-space: nowrap;
6476
+ }
6477
+ .ScSelect_triggerText.ScSelect_placeholder {
6478
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
6479
+ }
6480
+ .ScSelect_chevron {
6481
+ display: flex;
6482
+ align-items: center;
6483
+ justify-content: center;
6484
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
6485
+ flex-shrink: 0;
6486
+ transition: transform 0.15s ease;
6487
+ }
6488
+ .ScSelect_chevronOpen {
6489
+ transform: rotate(180deg);
6490
+ }
6491
+ .ScSelect_scSelect:hover .ScSelect_trigger {
6492
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
6493
+ border-color: var(--alias-border-default, #3e3e3e);
6494
+ }
6495
+ .ScSelect_scSelect.ScSelect_state-filled .ScSelect_trigger {
6496
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
6497
+ border-color: var(--alias-border-default, #3e3e3e);
6498
+ }
6499
+ .ScSelect_scSelect.ScSelect_state-active .ScSelect_trigger {
6500
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
6501
+ border-color: var(--alias-border-strong, #5c5c5c);
6502
+ }
6503
+ .ScSelect_scSelect.ScSelect_state-disabled .ScSelect_trigger {
6504
+ cursor: not-allowed;
6505
+ background: var(--alias-fill-neutral-neutralplus, #151515);
6506
+ border-color: var(--alias-border-subtle, transparent);
6507
+ }
6508
+ .ScSelect_scSelect.ScSelect_state-disabled .ScSelect_triggerText {
6509
+ color: var(--alias-text-and-icons-disabled, #5c5c5c);
6510
+ }
6511
+ .ScSelect_scSelect.ScSelect_state-disabled .ScSelect_chevron {
6512
+ color: var(--alias-text-and-icons-disabled, #5c5c5c);
6513
+ }
6514
+ .ScSelect_menu {
6515
+ position: absolute;
6516
+ top: 100%;
6517
+ left: 0;
6518
+ width: 100%;
6519
+ margin-top: 4px;
6520
+ background: var(--alias-surface-subtleraised, #1f1f1f);
6521
+ border: 1px solid var(--alias-border-divider, #242424);
6522
+ border-radius: var(--radius-md, 0.5rem);
6523
+ padding: var(--spacing-xs, 0.25rem);
6524
+ max-height: 14rem;
6525
+ overflow-y: auto;
6526
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.32);
6527
+ z-index: 20;
6528
+ display: flex;
6529
+ flex-direction: column;
6530
+ gap: var(--spacing-xs, 0.25rem);
6531
+ }
6532
+ .ScSelect_option {
6533
+ display: flex;
6534
+ flex-direction: column;
6535
+ gap: 2px;
6536
+ padding: var(--spacing-md, 0.5rem) var(--spacing-xl, 0.75rem);
6537
+ border-radius: var(--radius-md, 0.5rem);
6538
+ cursor: pointer;
6539
+ width: 100%;
6540
+ }
6541
+ .ScSelect_option:hover {
6542
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
6543
+ }
6544
+ .ScSelect_option-selected {
6545
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
6546
+ }
6547
+ .ScSelect_optionLabel {
6548
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6549
+ font-family: Inter, sans-serif;
6550
+ font-size: 0.875rem;
6551
+ line-height: 1.25rem;
6552
+ font-weight: 400;
6553
+ }
6554
+ .ScSelect_optionDescription {
6555
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
6556
+ font-family: Inter, sans-serif;
6557
+ font-size: 0.75rem;
6558
+ line-height: 1rem;
6559
+ font-weight: 400;
6560
+ }
6561
+
6562
+ /* src/SC-fileField/ScFileField.module.css */
6563
+ .ScFileField_scFileField,
6564
+ .ScFileField_scFileField * {
6565
+ box-sizing: border-box;
6566
+ }
6567
+ .ScFileField_scFileField {
6568
+ display: flex;
6569
+ flex-direction: column;
6570
+ gap: var(--spacing-xs, 0.25rem);
6571
+ width: 100%;
6572
+ position: relative;
6573
+ font-family: Inter, sans-serif;
6574
+ }
6575
+ .ScFileField_labelContainer {
6576
+ display: flex;
6577
+ gap: var(--spacing-3xl, 1rem);
6578
+ align-items: center;
6579
+ align-self: stretch;
6580
+ height: 1.5rem;
6581
+ }
6582
+ .ScFileField_label {
6583
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6584
+ font-family: Inter, sans-serif;
6585
+ font-size: 0.875rem;
6586
+ line-height: 1.25rem;
6587
+ font-weight: 400;
6588
+ flex: 1;
6589
+ }
6590
+ .ScFileField_dropzone {
6591
+ display: flex;
6592
+ flex-direction: column;
6593
+ align-items: center;
6594
+ justify-content: center;
6595
+ gap: var(--spacing-md, 0.5rem);
6596
+ align-self: stretch;
6597
+ min-height: 8rem;
6598
+ padding: var(--spacing-6xl, 1.5rem);
6599
+ background: var(--alias-fill-neutral-neutralplus, #151515);
6600
+ border: 1px dashed var(--alias-border-default, #3e3e3e);
6601
+ border-radius: var(--radius-xl, 0.75rem);
6602
+ cursor: pointer;
6603
+ text-align: center;
6604
+ }
6605
+ .ScFileField_dropzone:hover {
6606
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
6607
+ }
6608
+ .ScFileField_hiddenInput {
6609
+ position: absolute;
6610
+ width: 1px;
6611
+ height: 1px;
6612
+ padding: 0;
6613
+ margin: -1px;
6614
+ overflow: hidden;
6615
+ clip: rect(0, 0, 0, 0);
6616
+ white-space: nowrap;
6617
+ border: 0;
6618
+ }
6619
+ .ScFileField_uploadIcon {
6620
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
6621
+ flex-shrink: 0;
6622
+ }
6623
+ .ScFileField_dropzoneText {
6624
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
6625
+ font-family: Inter, sans-serif;
6626
+ font-size: 0.875rem;
6627
+ line-height: 1.25rem;
6628
+ font-weight: 400;
6629
+ }
6630
+ .ScFileField_dropzoneAction {
6631
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6632
+ font-weight: 600;
6633
+ }
6634
+ .ScFileField_acceptedText {
6635
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6636
+ font-family: Inter, sans-serif;
6637
+ font-size: 0.75rem;
6638
+ line-height: 1rem;
6639
+ font-weight: 400;
6640
+ }
6641
+ .ScFileField_inputContainer {
6642
+ background: var(--alias-fill-neutral-neutralplus, #151515);
6643
+ border: 1px solid var(--alias-border-subtle, transparent);
6644
+ border-radius: var(--radius-3xl, 1rem);
6645
+ padding: var(--spacing-xl, 0.75rem) var(--spacing-3xl, 1rem);
6646
+ display: flex;
6647
+ gap: var(--spacing-3xl, 1rem);
6648
+ align-items: center;
6649
+ align-self: stretch;
6650
+ min-height: 3rem;
6651
+ overflow: hidden;
6652
+ }
6653
+ .ScFileField_fileIcon {
6654
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
6655
+ flex-shrink: 0;
6656
+ }
6657
+ .ScFileField_fileInfo {
6658
+ display: flex;
6659
+ flex-direction: column;
6660
+ gap: var(--spacing-md, 0.5rem);
6661
+ flex: 1;
6662
+ min-width: 0;
6663
+ }
6664
+ .ScFileField_fileName {
6665
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6666
+ font-family: Inter, sans-serif;
6667
+ font-size: 0.875rem;
6668
+ line-height: 1.25rem;
6669
+ font-weight: 400;
6670
+ white-space: nowrap;
6671
+ overflow: hidden;
6672
+ text-overflow: ellipsis;
6673
+ }
6674
+ .ScFileField_progressTrack {
6675
+ height: 4px;
6676
+ width: 100%;
6677
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
6678
+ border-radius: var(--radius-xs, 0.25rem);
6679
+ overflow: hidden;
6680
+ }
6681
+ .ScFileField_progressFill {
6682
+ height: 100%;
6683
+ background: var(--alias-fill-base-base, #f5f5f5);
6684
+ border-radius: var(--radius-xs, 0.25rem);
6685
+ transition: width 0.2s ease;
6686
+ }
6687
+ .ScFileField_clearButton {
6688
+ display: flex;
6689
+ align-items: center;
6690
+ justify-content: center;
6691
+ padding: 0;
6692
+ background: transparent;
6693
+ border: none;
6694
+ cursor: pointer;
6695
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
6696
+ flex-shrink: 0;
6697
+ }
6698
+ .ScFileField_clearButton:hover {
6699
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6700
+ }
6701
+ .ScFileField_errorText {
6702
+ color: var(--alias-text-and-icons-error, #d11a1a);
6703
+ font-family: Inter, sans-serif;
6704
+ font-size: 0.75rem;
6705
+ line-height: 1rem;
6706
+ font-weight: 400;
6707
+ }
6708
+
6709
+ /* src/SC-mediaApproval/ScMediaApproval.module.css */
6710
+ .ScMediaApproval_scMediaApproval,
6711
+ .ScMediaApproval_scMediaApproval * {
6712
+ box-sizing: border-box;
6713
+ }
6714
+ .ScMediaApproval_scMediaApproval {
6715
+ display: flex;
6716
+ flex-direction: column;
6717
+ gap: var(--spacing-3xl, 1rem);
6718
+ width: 100%;
6719
+ }
6720
+ .ScMediaApproval_mediaFrame {
6721
+ position: relative;
6722
+ width: 100%;
6723
+ border: 1px solid var(--alias-border-divider, #242424);
6724
+ border-radius: var(--radius-xl, 12px);
6725
+ background: var(--alias-surface-base, #101010);
6726
+ overflow: hidden;
6727
+ }
6728
+ .ScMediaApproval_media {
6729
+ display: block;
6730
+ width: 100%;
6731
+ height: 13rem;
6732
+ object-fit: contain;
6733
+ background: #000000;
6734
+ cursor: zoom-in;
6735
+ }
6736
+ .ScMediaApproval_mediaEmpty {
6737
+ width: 100%;
6738
+ height: 13rem;
6739
+ background: #000000;
6740
+ }
6741
+ .ScMediaApproval_spinnerOverlay {
6742
+ position: absolute;
6743
+ inset: 0;
6744
+ display: flex;
6745
+ align-items: center;
6746
+ justify-content: center;
6747
+ background: rgba(0, 0, 0, 0.4);
6748
+ }
6749
+ .ScMediaApproval_spinner {
6750
+ animation: ScMediaApproval_spin 0.8s linear infinite;
6751
+ }
6752
+ @keyframes ScMediaApproval_spin {
6753
+ from {
6754
+ transform: rotate(0deg);
6755
+ }
6756
+ to {
6757
+ transform: rotate(360deg);
6758
+ }
6759
+ }
6760
+ .ScMediaApproval_navButton {
6761
+ position: absolute;
6762
+ top: 50%;
6763
+ transform: translateY(-50%);
6764
+ width: 1.75rem;
6765
+ height: 1.75rem;
6766
+ display: flex;
6767
+ align-items: center;
6768
+ justify-content: center;
6769
+ padding: 0;
6770
+ border: 1px solid rgba(255, 255, 255, 0.18);
6771
+ border-radius: 50%;
6772
+ background: rgba(0, 0, 0, 0.55);
6773
+ backdrop-filter: blur(6px);
6774
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
6775
+ color: var(--alias-text-and-icons-fullwhite, #ffffff);
6776
+ cursor: pointer;
6777
+ }
6778
+ .ScMediaApproval_navPrev {
6779
+ left: var(--spacing-md, 8px);
6780
+ }
6781
+ .ScMediaApproval_navNext {
6782
+ right: var(--spacing-md, 8px);
6783
+ }
6784
+ .ScMediaApproval_counterBadge {
6785
+ position: absolute;
6786
+ top: var(--spacing-md, 8px);
6787
+ right: var(--spacing-md, 8px);
6788
+ padding: var(--spacing-xs, 4px) var(--spacing-md, 8px);
6789
+ border-radius: var(--radius-xs, 4px);
6790
+ border: 1px solid rgba(255, 255, 255, 0.18);
6791
+ background: rgba(0, 0, 0, 0.55);
6792
+ backdrop-filter: blur(6px);
6793
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
6794
+ color: var(--alias-text-and-icons-fullwhite, #ffffff);
6795
+ font-family: Inter, sans-serif;
6796
+ font-size: 10px;
6797
+ line-height: 1;
6798
+ font-weight: 400;
6799
+ }
6800
+ .ScMediaApproval_dots {
6801
+ position: absolute;
6802
+ bottom: var(--spacing-md, 8px);
6803
+ left: 50%;
6804
+ transform: translateX(-50%);
6805
+ display: flex;
6806
+ align-items: center;
6807
+ gap: var(--spacing-xs, 4px);
6808
+ padding: var(--spacing-xs, 4px) var(--spacing-md, 8px);
6809
+ border-radius: 999px;
6810
+ background: rgba(0, 0, 0, 0.5);
6811
+ backdrop-filter: blur(6px);
6812
+ }
6813
+ .ScMediaApproval_dot {
6814
+ width: 0.375rem;
6815
+ height: 0.375rem;
6816
+ padding: 0;
6817
+ border: none;
6818
+ border-radius: 999px;
6819
+ background: rgba(255, 255, 255, 0.5);
6820
+ cursor: pointer;
6821
+ transition: width 0.15s ease, background 0.15s ease;
6822
+ }
6823
+ .ScMediaApproval_dot.ScMediaApproval_state-active {
6824
+ width: 1rem;
6825
+ background: var(--alias-text-and-icons-fullwhite, #ffffff);
6826
+ }
6827
+ .ScMediaApproval_feedbackBlock {
6828
+ display: flex;
6829
+ flex-direction: column;
6830
+ gap: var(--spacing-xs, 0.25rem);
6831
+ width: 100%;
6832
+ }
6833
+ .ScMediaApproval_label {
6834
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6835
+ font-family: Inter, sans-serif;
6836
+ font-size: 0.875rem;
6837
+ line-height: 1.25rem;
6838
+ font-weight: 400;
6839
+ }
6840
+ .ScMediaApproval_inputContainer {
6841
+ background: var(--alias-fill-neutral-neutralplus, #151515);
6842
+ border: 1px solid var(--alias-border-subtle, transparent);
6843
+ border-radius: var(--radius-3xl, 1rem);
6844
+ padding: var(--spacing-xl, 0.75rem) var(--spacing-3xl, 1rem);
6845
+ display: flex;
6846
+ align-items: stretch;
6847
+ align-self: stretch;
6848
+ overflow: hidden;
6849
+ }
6850
+ .ScMediaApproval_textArea {
6851
+ width: 100%;
6852
+ min-height: 4.5rem;
6853
+ resize: vertical;
6854
+ background: transparent;
6855
+ outline: none;
6856
+ border: none;
6857
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6858
+ font-family: Inter, sans-serif;
6859
+ font-size: 0.875rem;
6860
+ line-height: 1.25rem;
6861
+ font-weight: 400;
6862
+ }
6863
+ .ScMediaApproval_textArea::placeholder {
6864
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
6865
+ }
6866
+
6867
+ /* src/SC-mediaSelect/ScMediaSelect.module.css */
6868
+ .ScMediaSelect_scMediaSelect,
6869
+ .ScMediaSelect_scMediaSelect * {
6870
+ box-sizing: border-box;
6871
+ }
6872
+ .ScMediaSelect_scMediaSelect {
6873
+ display: flex;
6874
+ flex-direction: column;
6875
+ gap: var(--spacing-md, 0.5rem);
6876
+ width: 100%;
6877
+ font-family: Inter, sans-serif;
6878
+ }
6879
+ .ScMediaSelect_header {
6880
+ display: flex;
6881
+ align-items: center;
6882
+ justify-content: space-between;
6883
+ gap: var(--spacing-3xl, 1rem);
6884
+ align-self: stretch;
6885
+ }
6886
+ .ScMediaSelect_countLabel {
6887
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
6888
+ font-family: Inter, sans-serif;
6889
+ font-size: 0.75rem;
6890
+ line-height: 1rem;
6891
+ font-weight: 400;
6892
+ }
6893
+ .ScMediaSelect_actions {
6894
+ display: flex;
6895
+ align-items: center;
6896
+ gap: var(--spacing-md, 0.5rem);
6897
+ }
6898
+ .ScMediaSelect_linkButton {
6899
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6900
+ font-family: Inter, sans-serif;
6901
+ font-size: 0.6875rem;
6902
+ line-height: 1rem;
6903
+ font-weight: 400;
6904
+ background: none;
6905
+ border: none;
6906
+ padding: 0;
6907
+ cursor: pointer;
6908
+ }
6909
+ .ScMediaSelect_linkButton:hover {
6910
+ text-decoration: underline;
6911
+ }
6912
+ .ScMediaSelect_divider {
6913
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
6914
+ font-size: 0.6875rem;
6915
+ line-height: 1rem;
6916
+ }
6917
+ .ScMediaSelect_grid {
6918
+ display: grid;
6919
+ grid-template-columns: repeat(4, 1fr);
6920
+ gap: var(--spacing-md, 0.5rem);
6921
+ max-height: 18.75rem;
6922
+ overflow-y: auto;
6923
+ padding: var(--spacing-md, 0.5rem);
6924
+ border: 1px solid var(--alias-border-divider, #242424);
6925
+ border-radius: var(--radius-xl, 0.75rem);
6926
+ background: var(--alias-surface-base, #101010);
6927
+ }
6928
+ .ScMediaSelect_item {
6929
+ position: relative;
6930
+ aspect-ratio: 1 / 1;
6931
+ border-radius: var(--radius-md, 0.5rem);
6932
+ overflow: hidden;
6933
+ cursor: pointer;
6934
+ border: 2px solid var(--alias-border-subtle, transparent);
6935
+ }
6936
+ .ScMediaSelect_item.ScMediaSelect_state-default {
6937
+ border-color: transparent;
6938
+ }
6939
+ .ScMediaSelect_item.ScMediaSelect_state-default:hover {
6940
+ border-color: var(--alias-border-default, #3e3e3e);
6941
+ }
6942
+ .ScMediaSelect_item.ScMediaSelect_state-selected {
6943
+ border-color: var(--alias-border-strong, #5c5c5c);
6944
+ }
6945
+ .ScMediaSelect_media {
6946
+ width: 100%;
6947
+ height: 100%;
6948
+ object-fit: cover;
6949
+ background: #000000;
6950
+ display: block;
6951
+ }
6952
+ .ScMediaSelect_checkBadge {
6953
+ position: absolute;
6954
+ top: var(--spacing-xs, 0.25rem);
6955
+ right: var(--spacing-xs, 0.25rem);
6956
+ width: 1.25rem;
6957
+ height: 1.25rem;
6958
+ border-radius: 50%;
6959
+ background: var(--alias-fill-base-base, #f5f5f5);
6960
+ display: flex;
6961
+ align-items: center;
6962
+ justify-content: center;
6963
+ }
6964
+ .ScMediaSelect_previewButton {
6965
+ position: absolute;
6966
+ bottom: var(--spacing-xs, 0.25rem);
6967
+ right: var(--spacing-xs, 0.25rem);
6968
+ width: 1.5rem;
6969
+ height: 1.5rem;
6970
+ border-radius: var(--radius-xs, 0.25rem);
6971
+ border: none;
6972
+ background: rgba(0, 0, 0, 0.5);
6973
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6974
+ display: none;
6975
+ align-items: center;
6976
+ justify-content: center;
6977
+ cursor: pointer;
6978
+ padding: 0;
6979
+ }
6980
+ .ScMediaSelect_item:hover .ScMediaSelect_previewButton {
6981
+ display: flex;
6982
+ }
6983
+ @media (max-width: 22.5rem) {
6984
+ .ScMediaSelect_grid {
6985
+ grid-template-columns: repeat(3, 1fr);
6986
+ }
6987
+ }
6988
+
6989
+ /* src/SC-todoList/ScTodoList.module.css */
6990
+ .ScTodoList_scTodoList,
6991
+ .ScTodoList_scTodoList * {
6992
+ box-sizing: border-box;
6993
+ }
6994
+ .ScTodoList_scTodoList {
6995
+ display: flex;
6996
+ flex-direction: column;
6997
+ gap: var(--spacing-md, 0.5rem);
6998
+ width: 100%;
6999
+ font-family: Inter, sans-serif;
7000
+ }
7001
+ .ScTodoList_progress {
7002
+ display: flex;
7003
+ align-items: center;
7004
+ gap: var(--spacing-xs, 0.25rem);
7005
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
7006
+ padding: 0 var(--spacing-md, 0.5rem);
7007
+ }
7008
+ .ScTodoList_progressIcon {
7009
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
7010
+ flex-shrink: 0;
7011
+ }
7012
+ .ScTodoList_progressText {
7013
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
7014
+ font-family: Inter, sans-serif;
7015
+ font-size: 0.6875rem;
7016
+ line-height: 1rem;
7017
+ font-weight: 400;
7018
+ }
7019
+ .ScTodoList_rows {
7020
+ display: flex;
7021
+ flex-direction: column;
7022
+ gap: var(--spacing-xs, 0.25rem);
7023
+ }
7024
+ .ScTodoList_row {
7025
+ display: flex;
7026
+ align-items: center;
7027
+ gap: var(--spacing-md, 0.5rem);
7028
+ padding: var(--spacing-xs, 0.25rem) var(--spacing-md, 0.5rem);
7029
+ border-radius: var(--radius-md, 0.5rem);
7030
+ width: 100%;
7031
+ }
7032
+ .ScTodoList_row:hover {
7033
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
7034
+ }
7035
+ .ScTodoList_checkbox {
7036
+ display: inline-flex;
7037
+ align-items: center;
7038
+ justify-content: center;
7039
+ width: 1.125rem;
7040
+ height: 1.125rem;
7041
+ flex-shrink: 0;
7042
+ padding: 0;
7043
+ margin: 0;
7044
+ background: transparent;
7045
+ border: none;
7046
+ cursor: pointer;
7047
+ outline: none;
7048
+ }
7049
+ .ScTodoList_content {
7050
+ flex: 1;
7051
+ min-width: 0;
7052
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
7053
+ font-family: Inter, sans-serif;
7054
+ font-size: 0.875rem;
7055
+ line-height: 1.25rem;
7056
+ font-weight: 400;
7057
+ word-break: break-word;
7058
+ }
7059
+ .ScTodoList_content.ScTodoList_status-completed {
7060
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
7061
+ text-decoration: line-through;
7062
+ }
7063
+ .ScTodoList_editInput {
7064
+ flex: 1;
7065
+ min-width: 0;
7066
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
7067
+ font-family: Inter, sans-serif;
7068
+ font-size: 0.875rem;
7069
+ line-height: 1.25rem;
7070
+ font-weight: 400;
7071
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
7072
+ border: 1px solid var(--alias-border-strong, #5c5c5c);
7073
+ border-radius: var(--radius-md, 0.5rem);
7074
+ padding: var(--spacing-xs, 0.25rem) var(--spacing-md, 0.5rem);
7075
+ outline: none;
7076
+ }
7077
+ .ScTodoList_actions {
7078
+ display: flex;
7079
+ align-items: center;
7080
+ gap: var(--spacing-xs, 0.25rem);
7081
+ flex-shrink: 0;
7082
+ opacity: 0;
7083
+ pointer-events: none;
7084
+ transition: opacity 0.12s ease;
7085
+ }
7086
+ .ScTodoList_row:hover .ScTodoList_actions,
7087
+ .ScTodoList_row:focus-within .ScTodoList_actions {
7088
+ opacity: 1;
7089
+ pointer-events: auto;
7090
+ }
7091
+ .ScTodoList_actionButton {
7092
+ display: inline-flex;
7093
+ align-items: center;
7094
+ justify-content: center;
7095
+ width: 1.5rem;
7096
+ height: 1.5rem;
7097
+ padding: 0;
7098
+ margin: 0;
7099
+ background: transparent;
7100
+ border: none;
7101
+ border-radius: var(--radius-xs, 0.25rem);
7102
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
7103
+ cursor: pointer;
7104
+ outline: none;
7105
+ }
7106
+ .ScTodoList_actionButton:hover {
7107
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
7108
+ }
7109
+ .ScTodoList_actionButtonDanger:hover {
7110
+ color: var(--alias-text-and-icons-error, #d11a1a);
7111
+ }
7112
+ .ScTodoList_addRow {
7113
+ display: flex;
7114
+ align-items: center;
7115
+ gap: var(--spacing-md, 0.5rem);
7116
+ width: 100%;
7117
+ }
7118
+ .ScTodoList_addInput {
7119
+ flex: 1;
7120
+ min-width: 0;
7121
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
7122
+ font-family: Inter, sans-serif;
7123
+ font-size: 0.875rem;
7124
+ line-height: 1.25rem;
7125
+ font-weight: 400;
7126
+ height: 2.5rem;
7127
+ background: var(--alias-fill-neutral-neutralplus, #151515);
7128
+ border: 1px solid var(--alias-border-subtle, transparent);
7129
+ border-radius: var(--radius-md, 0.5rem);
7130
+ padding: var(--spacing-md, 0.5rem) var(--spacing-xl, 0.75rem);
7131
+ outline: none;
7132
+ }
7133
+ .ScTodoList_addInput::placeholder {
7134
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
7135
+ }
7136
+ .ScTodoList_addInput:hover,
7137
+ .ScTodoList_addInput:focus {
7138
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
7139
+ border-color: var(--alias-border-default, #3e3e3e);
7140
+ }
7141
+ .ScTodoList_addButton {
7142
+ display: inline-flex;
7143
+ align-items: center;
7144
+ justify-content: center;
7145
+ width: 2.5rem;
7146
+ height: 2.5rem;
7147
+ flex-shrink: 0;
7148
+ padding: 0;
7149
+ margin: 0;
7150
+ background: var(--alias-fill-neutral-neutralplus, #151515);
7151
+ border: 1px solid var(--alias-border-subtle, transparent);
7152
+ border-radius: var(--radius-md, 0.5rem);
7153
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
7154
+ cursor: pointer;
7155
+ outline: none;
7156
+ transition: opacity 0.12s ease;
7157
+ }
7158
+ .ScTodoList_addButton:hover:not(:disabled) {
7159
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
7160
+ border-color: var(--alias-border-default, #3e3e3e);
7161
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
7162
+ }
7163
+ .ScTodoList_addButton:disabled {
7164
+ color: var(--alias-text-and-icons-disabled, #5c5c5c);
7165
+ cursor: not-allowed;
7166
+ }
7167
+
6288
7168
  /* src/SC-Role-Mobile/ScRoleMobile.module.css */
6289
7169
  .ScRoleMobile_scRoleMobile {
6290
7170
  display: flex;