cozy-sharing 10.2.0 → 10.3.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 (138) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/ConfirmTrustedRecipientsDialog.js +1 -1
  3. package/dist/ShareButton.js +1 -1
  4. package/dist/ShareButton.spec.js +1 -1
  5. package/dist/SharedBadge.js +1 -1
  6. package/dist/SharedRecipients.js +1 -1
  7. package/dist/SharedRecipientsList.js +1 -1
  8. package/dist/SharedStatus.js +1 -1
  9. package/dist/SharingOwnerAvatar.js +1 -1
  10. package/dist/components/CozyPassFingerprintDialogContent.js +1 -1
  11. package/dist/components/Recipient/Identity.js +17 -17
  12. package/dist/components/Recipient/LinkRecipient.js +18 -18
  13. package/dist/components/Recipient/OwnerIdentity.js +18 -18
  14. package/dist/components/Recipient/RecipientConfirm.js +25 -25
  15. package/dist/components/Recipient/RecipientList.js +36 -0
  16. package/dist/components/Recipient/RecipientPlusX.js +18 -18
  17. package/dist/components/Recipient/RecipientStatus.js +17 -17
  18. package/dist/components/Recipient/RecipientWithoutStatus.js +18 -18
  19. package/dist/components/Recipient/RecipientsAvatars.js +18 -18
  20. package/dist/components/ShareAutosuggest.js +12 -12
  21. package/dist/components/ShareButton.js +2 -2
  22. package/dist/components/ShareByEmail.js +26 -26
  23. package/dist/components/ShareDialogCozyToCozy.js +25 -25
  24. package/dist/components/{EditableSharingModal.js → ShareModal/EditableSharingModal.js} +5 -5
  25. package/dist/components/{EditableSharingModal.spec.js → ShareModal/EditableSharingModal.spec.js} +6 -6
  26. package/dist/components/ShareModal/ShareModal.js +43 -0
  27. package/dist/{SharingDetailsModal.js → components/ShareModal/SharingDetailsModal.js} +28 -28
  28. package/dist/components/SharedBadge.js +6 -6
  29. package/dist/components/SharedStatus.js +4 -4
  30. package/dist/components/Sharetypeselect.js +25 -25
  31. package/dist/{SharingBanner → components/SharingBanner}/components/PublicBanner.js +1 -1
  32. package/dist/{SharingBanner → components/SharingBanner}/hooks/useSharingInfos.js +2 -2
  33. package/dist/{SharingBanner → components/SharingBanner}/index.js +1 -1
  34. package/dist/{SharingBanner → components/SharingBanner}/test/AppLike.js +2 -2
  35. package/dist/components/Tooltip.js +2 -2
  36. package/dist/components/WhoHasAccess.js +10 -20
  37. package/dist/components/WhoHasAccessLight.js +19 -1
  38. package/dist/{withLocales.js → hoc/withLocales.js} +2 -2
  39. package/dist/index.js +5 -5
  40. package/dist/{SharingBanner/components → styles}/publicBanner.styl +5 -5
  41. package/dist/stylesheet.css +340 -340
  42. package/docs/share-modal-architecture.md +44 -0
  43. package/package.json +2 -2
  44. package/src/ConfirmTrustedRecipientsDialog.jsx +1 -1
  45. package/src/ShareButton.jsx +1 -1
  46. package/src/ShareButton.spec.jsx +1 -1
  47. package/src/SharedBadge.jsx +1 -1
  48. package/src/SharedRecipients.jsx +1 -1
  49. package/src/SharedRecipientsList.jsx +1 -1
  50. package/src/SharedStatus.jsx +1 -1
  51. package/src/SharingOwnerAvatar.jsx +1 -1
  52. package/src/assets/icons/icon-arrow-down.svg +3 -0
  53. package/src/assets/icons/icon-calendar-16.svg +8 -0
  54. package/src/assets/icons/icon-check-blue.svg +59 -0
  55. package/src/assets/icons/icon-cross-bold.svg +5 -0
  56. package/src/assets/icons/icon-link.svg +14 -0
  57. package/src/assets/icons/icon-pen-16.svg +3 -0
  58. package/src/components/CozyPassFingerprintDialogContent.jsx +1 -1
  59. package/src/components/Recipient/Identity.jsx +1 -1
  60. package/src/components/Recipient/LinkRecipient.jsx +1 -1
  61. package/src/components/Recipient/OwnerIdentity.jsx +1 -1
  62. package/src/components/Recipient/RecipientConfirm.jsx +1 -1
  63. package/src/components/Recipient/RecipientList.jsx +45 -0
  64. package/src/components/Recipient/RecipientPlusX.jsx +1 -1
  65. package/src/components/Recipient/RecipientStatus.jsx +1 -1
  66. package/src/components/Recipient/RecipientWithoutStatus.jsx +1 -1
  67. package/src/components/Recipient/RecipientsAvatars.jsx +1 -1
  68. package/src/components/ShareAutosuggest.jsx +1 -1
  69. package/src/components/ShareButton.jsx +1 -1
  70. package/src/components/ShareByEmail.jsx +1 -1
  71. package/src/components/ShareDialogCozyToCozy.jsx +1 -1
  72. package/src/components/{EditableSharingModal.jsx → ShareModal/EditableSharingModal.jsx} +5 -5
  73. package/src/components/{EditableSharingModal.spec.jsx → ShareModal/EditableSharingModal.spec.jsx} +6 -6
  74. package/src/components/ShareModal/ShareModal.jsx +45 -0
  75. package/src/{SharingDetailsModal.jsx → components/ShareModal/SharingDetailsModal.jsx} +4 -4
  76. package/src/components/SharedBadge.jsx +1 -1
  77. package/src/components/SharedStatus.jsx +2 -2
  78. package/src/components/Sharetypeselect.jsx +1 -1
  79. package/src/{SharingBanner → components/SharingBanner}/components/PublicBanner.jsx +1 -1
  80. package/src/{SharingBanner → components/SharingBanner}/hooks/useSharingInfos.jsx +2 -2
  81. package/src/{SharingBanner → components/SharingBanner}/index.jsx +1 -1
  82. package/src/{SharingBanner → components/SharingBanner}/test/AppLike.jsx +2 -2
  83. package/src/components/Tooltip.jsx +1 -1
  84. package/src/components/WhoHasAccess.jsx +11 -29
  85. package/src/components/WhoHasAccessLight.jsx +1 -1
  86. package/src/{withLocales.jsx → hoc/withLocales.jsx} +2 -2
  87. package/src/index.jsx +6 -5
  88. package/src/{SharingBanner/components → styles}/publicBanner.styl +5 -5
  89. package/dist/ShareModal.js +0 -50
  90. package/src/ShareModal.jsx +0 -51
  91. /package/{assets → dist/assets}/icons/icon-arrow-down.svg +0 -0
  92. /package/{assets → dist/assets}/icons/icon-calendar-16.svg +0 -0
  93. /package/{assets → dist/assets}/icons/icon-check-blue.svg +0 -0
  94. /package/{assets → dist/assets}/icons/icon-cross-bold.svg +0 -0
  95. /package/{assets → dist/assets}/icons/icon-link.svg +0 -0
  96. /package/{assets → dist/assets}/icons/icon-pen-16.svg +0 -0
  97. /package/dist/{SharingBanner → components/SharingBanner}/components/CozyHomeLinkIcon.js +0 -0
  98. /package/dist/{SharingBanner → components/SharingBanner}/components/PublicBanner.spec.js +0 -0
  99. /package/dist/{SharingBanner → components/SharingBanner}/components/SharingBanner.js +0 -0
  100. /package/dist/{SharingBanner → components/SharingBanner}/helpers/QueryParameter.js +0 -0
  101. /package/dist/{SharingBanner → components/SharingBanner}/helpers/QueryParameter.spec.js +0 -0
  102. /package/dist/{SharingBanner → components/SharingBanner}/hooks/useSharingInfos.spec.js +0 -0
  103. /package/dist/{SharingBanner → components/SharingBanner}/test/AcceptingSharingContext.js +0 -0
  104. /package/dist/{SharingBanner → components/SharingBanner}/test/FabProvider.js +0 -0
  105. /package/dist/{SharingBanner → components/SharingBanner}/test/ModalContext.js +0 -0
  106. /package/dist/{SharingBanner → components/SharingBanner}/test/RouterContext.js +0 -0
  107. /package/dist/{SharingBanner → components/SharingBanner}/test/ThumbnailSizeContext.js +0 -0
  108. /package/dist/{components → hooks}/useFetchDocumentPath.js +0 -0
  109. /package/dist/{components → styles}/CozyPassFingerprintDialogContent.styl +0 -0
  110. /package/dist/{components → styles}/actionmenu.styl +0 -0
  111. /package/dist/{components → styles}/autosuggest.styl +0 -0
  112. /package/dist/{components → styles}/badge.styl +0 -0
  113. /package/dist/{components → styles}/button.styl +0 -0
  114. /package/dist/{components/Recipient → styles}/recipient.styl +0 -0
  115. /package/dist/{share.styl → styles/share.styl} +0 -0
  116. /package/dist/{components → styles}/status.styl +0 -0
  117. /package/dist/{components → styles}/tooltip.styl +0 -0
  118. /package/src/{SharingBanner → components/SharingBanner}/components/CozyHomeLinkIcon.jsx +0 -0
  119. /package/src/{SharingBanner → components/SharingBanner}/components/PublicBanner.spec.jsx +0 -0
  120. /package/src/{SharingBanner → components/SharingBanner}/components/SharingBanner.jsx +0 -0
  121. /package/src/{SharingBanner → components/SharingBanner}/helpers/QueryParameter.js +0 -0
  122. /package/src/{SharingBanner → components/SharingBanner}/helpers/QueryParameter.spec.js +0 -0
  123. /package/src/{SharingBanner → components/SharingBanner}/hooks/useSharingInfos.spec.js +0 -0
  124. /package/src/{SharingBanner → components/SharingBanner}/test/AcceptingSharingContext.jsx +0 -0
  125. /package/src/{SharingBanner → components/SharingBanner}/test/FabProvider.jsx +0 -0
  126. /package/src/{SharingBanner → components/SharingBanner}/test/ModalContext.jsx +0 -0
  127. /package/src/{SharingBanner → components/SharingBanner}/test/RouterContext.jsx +0 -0
  128. /package/src/{SharingBanner → components/SharingBanner}/test/ThumbnailSizeContext.jsx +0 -0
  129. /package/src/{components → hooks}/useFetchDocumentPath.jsx +0 -0
  130. /package/src/{components → styles}/CozyPassFingerprintDialogContent.styl +0 -0
  131. /package/src/{components → styles}/actionmenu.styl +0 -0
  132. /package/src/{components → styles}/autosuggest.styl +0 -0
  133. /package/src/{components → styles}/badge.styl +0 -0
  134. /package/src/{components → styles}/button.styl +0 -0
  135. /package/src/{components/Recipient → styles}/recipient.styl +0 -0
  136. /package/src/{share.styl → styles/share.styl} +0 -0
  137. /package/src/{components → styles}/status.styl +0 -0
  138. /package/src/{components → styles}/tooltip.styl +0 -0
@@ -1,46 +1,18 @@
1
- /* imported from publicBanner.styl */
1
+ /* imported from CozyPassFingerprintDialogContent.styl */
2
2
 
3
- .publicBanner__bannermarkdown___1EMSa img {
4
- background-color: var(--paleGrey);
5
- color: var(--silver);
6
- position: relative;
7
- }
8
- .publicBanner__bannermarkdown___1EMSa img svg {
9
- width: 50%;
10
- height: 50%;
11
- }
12
- .publicBanner__bannermarkdown___1EMSa img {
13
- --circleSize: 2.5rem;
14
- width: var(--circleSize);
15
- height: var(--circleSize);
16
- min-width: var(--circleSize);
17
- min-height: var(--circleSize);
18
- font-size: calc(var(--circleSize) / 2.28);
19
- display: inline-flex;
20
- align-items: center;
21
- justify-content: center;
22
- border-radius: 50%;
23
- overflow: hidden;
24
- background-color: var(--dodgerBlue);
25
- color: var(--white);
26
- }
27
- .publicBanner__bannermarkdown___1EMSa {
28
- font-weight: bold;
29
- display: inline-block;
3
+ .CozyPassFingerprintDialogContent__cozy-pass-fingerprint-modal__fingerprint___3qIGs {
4
+ padding: 16px;
5
+ margin: 24px 0;
6
+ text-align: center;
30
7
  }
31
- .publicBanner__bannermarkdown___1EMSa img {
32
- width: 1rem;
33
- height: 1rem;
34
- min-width: 1rem;
35
- min-height: 1rem;
36
- font-size: 0.438rem;
37
- vertical-align: text-bottom;
8
+ .CozyPassFingerprintDialogContent__cozy-pass-fingerprint-modal__fingerprint___3qIGs p {
9
+ color: var(--secondaryColor);
38
10
  }
39
11
  /*
40
- imported from share.styl
12
+ imported from recipient.styl
41
13
  */
42
14
 
43
- @-moz-keyframes share__spin___1P7nU {
15
+ @-moz-keyframes recipient__spin___2tYv3 {
44
16
  from {
45
17
  transform: rotate(0deg);
46
18
  }
@@ -48,7 +20,7 @@
48
20
  transform: rotate(359deg);
49
21
  }
50
22
  }
51
- @-webkit-keyframes share__spin___1P7nU {
23
+ @-webkit-keyframes recipient__spin___2tYv3 {
52
24
  from {
53
25
  transform: rotate(0deg);
54
26
  }
@@ -56,7 +28,7 @@
56
28
  transform: rotate(359deg);
57
29
  }
58
30
  }
59
- @-o-keyframes share__spin___1P7nU {
31
+ @-o-keyframes recipient__spin___2tYv3 {
60
32
  from {
61
33
  transform: rotate(0deg);
62
34
  }
@@ -64,7 +36,7 @@
64
36
  transform: rotate(359deg);
65
37
  }
66
38
  }
67
- @keyframes share__spin___1P7nU {
39
+ @keyframes recipient__spin___2tYv3 {
68
40
  from {
69
41
  transform: rotate(0deg);
70
42
  }
@@ -72,7 +44,7 @@
72
44
  transform: rotate(359deg);
73
45
  }
74
46
  }
75
- @-moz-keyframes share__shake___1EeCI {
47
+ @-moz-keyframes recipient__shake___TGyPp {
76
48
  10%, 90% {
77
49
  transform: translate3d(-1px, 0, 0);
78
50
  }
@@ -86,7 +58,7 @@
86
58
  transform: translate3d(4px, 0, 0);
87
59
  }
88
60
  }
89
- @-webkit-keyframes share__shake___1EeCI {
61
+ @-webkit-keyframes recipient__shake___TGyPp {
90
62
  10%, 90% {
91
63
  transform: translate3d(-1px, 0, 0);
92
64
  }
@@ -100,7 +72,7 @@
100
72
  transform: translate3d(4px, 0, 0);
101
73
  }
102
74
  }
103
- @-o-keyframes share__shake___1EeCI {
75
+ @-o-keyframes recipient__shake___TGyPp {
104
76
  10%, 90% {
105
77
  transform: translate3d(-1px, 0, 0);
106
78
  }
@@ -114,7 +86,7 @@
114
86
  transform: translate3d(4px, 0, 0);
115
87
  }
116
88
  }
117
- @keyframes share__shake___1EeCI {
89
+ @keyframes recipient__shake___TGyPp {
118
90
  10%, 90% {
119
91
  transform: translate3d(-1px, 0, 0);
120
92
  }
@@ -648,122 +620,11 @@
648
620
  }
649
621
  @media (pointer: coarse) {
650
622
  }
651
- .share__share-modal-content___XTtaK .share__coz-form___33NYF {
652
- margin: 1rem 0 0.5rem;
653
- }
654
- .share__share-modal-content___XTtaK .share__coz-form___33NYF a,
655
- .share__share-modal-content___XTtaK .share__coz-form___33NYF a:visited {
656
- color: var(--dodgerBlue);
657
- text-decoration: none;
658
- }
659
- .share__share-modal-content___XTtaK .share__coz-form___33NYF a:hover,
660
- .share__share-modal-content___XTtaK .share__coz-form___33NYF a:active {
661
- text-decoration: underline;
662
- }
663
- .share__share-modal-content___XTtaK .share__coz-form___33NYF,
664
- .share__share-modal-content___XTtaK .share__coz-form-group___1PLAZ {
665
- position: relative;
666
- display: flex;
667
- flex-direction: column;
668
- }
669
- .share__share-modal-content___XTtaK .share__coz-form-desc___-pmK5 {
670
- margin-bottom: 0.5rem;
671
- line-height: 1.5;
672
- }
673
- .share__share-modal-content___XTtaK .share__coz-form-label___31jb0 {
674
- display: block;
675
- text-transform: uppercase;
676
- color: var(--coolGrey);
677
- font-size: 0.75rem;
678
- padding: 0.563rem 0;
679
- margin-top: 1rem;
680
- }
681
- .share__share-modal-content___XTtaK .share__coz-form-label--error___2EXCl {
682
- display: none;
683
- color: var(--pomegranate);
684
- }
685
- .share__share-modal-content___XTtaK .share__coz-form-errors___1rk2R {
686
- color: var(--pomegranate);
687
- }
688
- .share__share-modal-content___XTtaK .share__coz-form-controls___39Uwg {
689
- display: flex;
690
- flex-direction: row;
691
- justify-content: flex-end;
692
- margin: 1rem 0 0.5rem;
693
- }
694
- .share__share-modal-content___XTtaK .share__coz-form-controls___39Uwg a,
695
- .share__share-modal-content___XTtaK .share__coz-form-controls___39Uwg button,
696
- .share__share-modal-content___XTtaK .share__coz-form-controls___39Uwg input[type=submit] {
697
- flex: 0 0 auto;
698
- margin: 0 0 0.5rem 0.5rem;
699
- }
700
- .share__share-modal-content___XTtaK .share__coz-form-controls--full___1YpNp a,
701
- .share__share-modal-content___XTtaK .share__coz-form-controls--full___1YpNp button,
702
- .share__share-modal-content___XTtaK .share__coz-form-controls--full___1YpNp input[type=submit] {
703
- flex: 0 0 100%;
704
- margin-bottom: 0.5rem;
705
- }
706
- .share__share-modal-content___XTtaK .share__coz-form-controls--dispatch___3JXzz {
707
- justify-content: space-between;
708
- }
709
- .share__share-modal-content___XTtaK .share__coz-form-controls--dispatch___3JXzz a,
710
- .share__share-modal-content___XTtaK .share__coz-form-controls--dispatch___3JXzz button,
711
- .share__share-modal-content___XTtaK .share__coz-form-controls--dispatch___3JXzz input[type=submit] {
712
- flex: 0 0 49%;
713
- margin: 0 0 0.5rem;
714
- }
715
- .share__share-modal-content___XTtaK .share__coz-form-controls--dispatch___3JXzz a:last-child,
716
- .share__share-modal-content___XTtaK .share__coz-form-controls--dispatch___3JXzz button:last-child,
717
- .share__share-modal-content___XTtaK .share__coz-form-controls--dispatch___3JXzz input[type=submit]:last-child {
718
- margin-left: auto;
719
- }
720
- .share__share-modal-content___XTtaK input[type=text],
721
- .share__share-modal-content___XTtaK input[type=password],
722
- .share__share-modal-content___XTtaK input[type=email],
723
- .share__share-modal-content___XTtaK input[type=url] {
724
- display: inline-block;
725
- padding: 0.875rem 0.75rem 0.75rem 0.875rem;
726
- box-sizing: border-box;
727
- border-radius: 0.125rem;
728
- background: var(--white);
729
- border: 0.063rem solid var(--dividerColor);
730
- color: var(--black);
731
- }
732
- .share__share-modal-content___XTtaK input[type=text]::placeholder,
733
- .share__share-modal-content___XTtaK input[type=password]::placeholder,
734
- .share__share-modal-content___XTtaK input[type=email]::placeholder,
735
- .share__share-modal-content___XTtaK input[type=url]::placeholder {
736
- color: var(--coolGrey);
737
- font-size: 1rem;
738
- }
739
- .share__share-modal-content___XTtaK input[type=text]:focus,
740
- .share__share-modal-content___XTtaK input[type=password]:focus,
741
- .share__share-modal-content___XTtaK input[type=email]:focus,
742
- .share__share-modal-content___XTtaK input[type=url]:focus {
743
- border: 0.063rem solid var(--dodgerBlue);
744
- outline: 0;
745
- }
746
- .share__share-modal-content___XTtaK input[type=text]:hover,
747
- .share__share-modal-content___XTtaK input[type=password]:hover,
748
- .share__share-modal-content___XTtaK input[type=email]:hover,
749
- .share__share-modal-content___XTtaK input[type=url]:hover {
750
- border: 0.063rem solid var(--coolGrey);
751
- }
752
- .share__share-modal-content___XTtaK input[type=text].share__error___6Ycal,
753
- .share__share-modal-content___XTtaK input[type=password].share__error___6Ycal,
754
- .share__share-modal-content___XTtaK input[type=email].share__error___6Ycal,
755
- .share__share-modal-content___XTtaK input[type=url].share__error___6Ycal {
756
- border: 0.063rem solid var(--pomegranate);
757
- }
758
- @media (max-width: 48rem) {
759
- }
760
- @media (max-width: 48rem) {
761
- }
762
623
  :root {
763
624
  --invertedBackgroundColor: #297ef2;
764
625
  --invertedContrastTextColor: #fff;
765
626
  }
766
- .share__CozyTheme--inverted___2pLD2 {
627
+ .recipient__CozyTheme--inverted___21SPM {
767
628
  --primaryTextColor: #fff;
768
629
  --secondaryTextColor: rgba(255,255,255,0.64);
769
630
  --disabledTextColor: rgba(255,255,255,0.4);
@@ -935,7 +796,7 @@ html {
935
796
  --monza: #dd0505;
936
797
  }
937
798
  html,
938
- .share__CozyTheme--normal___qSFyr {
799
+ .recipient__CozyTheme--normal___3ABO0 {
939
800
  /*
940
801
  Primary colors
941
802
 
@@ -1183,115 +1044,92 @@ html,
1183
1044
  --alertInfoColor: #fff;
1184
1045
  --alertInfoBackgroundColor: var(--slateGrey);
1185
1046
  }
1186
- .share__share-byemail-onlybylink___C_7b_ {
1187
- background: var(--paleGrey);
1188
- padding: 1rem 2rem;
1189
- margin: -1.5rem -2rem 1rem;
1047
+ :root {
1048
+ --genericRecipientBackground: var(--slateGrey);
1049
+ --genericRecipientColor: var(--white);
1050
+ }
1051
+ .recipient__recipient___2DmZI {
1052
+ display: flex;
1053
+ flex-direction: row;
1054
+ align-items: center;
1190
1055
  }
1191
1056
  @media (max-width: 48rem) {
1192
- .share__share-byemail-onlybylink___C_7b_ {
1193
- padding: 1rem;
1194
- margin: -1.5rem -1rem 1rem;
1057
+ .recipient__recipient___2DmZI {
1058
+ align-items: flex-start;
1195
1059
  }
1196
1060
  }
1197
- .share__share-modal-content___XTtaK {
1198
- min-height: 15.625rem;
1199
- }
1200
- .share__share-modal-content___XTtaK .share__coz-form-group___1PLAZ {
1201
- flex-shrink: 0;
1061
+ .recipient__recipients-list-light___Vq4op .recipient__recipient___2DmZI {
1062
+ margin: 1rem 0;
1202
1063
  }
1203
- .share__aligned-dropdown-button___CeTDs {
1204
- margin-right: -1rem;
1064
+ .recipient__recipients-list-light___Vq4op + .recipient__recipient___2DmZI {
1065
+ margin-top: 1rem;
1205
1066
  }
1206
- .share__coz-form-group___1PLAZ {
1207
- margin: 0;
1067
+ .recipient__recipient-idents___3s7rw {
1068
+ flex: 1 1 auto;
1069
+ overflow: hidden;
1070
+ text-overflow: ellipsis;
1208
1071
  }
1209
- .share__coz-form-group___1PLAZ h3 {
1210
- margin: 0.3rem 0 0;
1072
+ .recipient__recipient-status-icon___-liGw {
1073
+ margin-right: 0.25rem;
1211
1074
  }
1212
- .share__coz-form-group___1PLAZ h4 {
1213
- margin: 0 0 0.3rem 0;
1075
+ .recipient__recipient-user___1THIU,
1076
+ .recipient__recipient-details___2fZfc {
1077
+ text-overflow: ellipsis;
1078
+ overflow: hidden;
1079
+ white-space: nowrap;
1080
+ line-height: 1.3;
1214
1081
  }
1215
- .share__coz-form-group___1PLAZ .share__coz-form___33NYF {
1216
- margin: 0;
1082
+ .recipient__recipient-user___1THIU {
1083
+ font-size: 1rem;
1084
+ font-weight: bold;
1217
1085
  }
1218
- .share__coz-form-group___1PLAZ .share__coz-form-desc___-pmK5 {
1086
+ .recipient__recipient-details___2fZfc {
1087
+ font-size: 0.875rem;
1219
1088
  color: var(--coolGrey);
1220
1089
  }
1221
- .share__share-type-control___KcpDf {
1090
+ .recipient__avatar___2LnIV {
1222
1091
  display: flex;
1223
1092
  flex-direction: row;
1224
- justify-content: space-between;
1225
- padding: 0.5rem 0 0;
1226
- }
1227
- .share__share-type-control___KcpDf .share__select-wrapper___3FfiH {
1228
- flex: 0 0 49%;
1229
- position: relative;
1230
- }
1231
- .share__share-type-control___KcpDf .share__select-wrapper___3FfiH .share__select-option___13o6b {
1232
- padding: 0.5rem 1.5rem 0.5rem 3rem;
1233
- position: relative;
1234
- }
1235
- .share__share-type-control___KcpDf .share__select-wrapper___3FfiH .share__select-option___13o6b svg {
1236
- position: absolute;
1237
- left: 1rem;
1238
- top: 1rem;
1239
- }
1240
- .share__share-type-control___KcpDf .share__select-wrapper___3FfiH .share__select-option-label___Zj_RU {
1241
- line-height: 2;
1242
- }
1243
- .share__share-type-control___KcpDf .share__select-wrapper___3FfiH .share__select-option-desc___6uaQq {
1244
- line-height: 1.5;
1245
- font-size: 0.8125rem;
1246
- color: var(--coolGrey);
1247
- }
1248
- .share__share-type-control___KcpDf button {
1249
- flex: 0 0 49%;
1250
- margin: 0;
1093
+ align-items: center;
1251
1094
  }
1252
- .react-select__option:active {
1253
- background-color: var(--paleGrey) !important;
1095
+ .recipient__avatar___2LnIV .recipient__recipient-user___1THIU {
1096
+ font-size: 1.125rem;
1254
1097
  }
1255
- input[type=text] {
1256
- width: 100%;
1098
+ .recipient__link-recipient-icon-circle___3ZTU- {
1099
+ border: 1px solid var(--borderMainColor);
1100
+ background-color: unset;
1101
+ color: unset;
1257
1102
  }
1258
- .share__share-details-created___13BO0,
1259
- .share__share-details-perm___23_VF {
1260
- font-size: 1rem;
1261
- margin: 0.5rem 0 0.5rem 3.5rem;
1262
- padding-left: 1.5rem;
1263
- background-position: 0 center;
1264
- background-repeat: no-repeat;
1103
+ .recipient__recipients-avatars___1npjD {
1104
+ display: inline-flex;
1105
+ flex-direction: row-reverse;
1106
+ margin-right: 0.5rem;
1265
1107
  }
1266
- .share__share-details-created___13BO0 {
1267
- background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTZweCIgaGVpZ2h0PSIxNnB4IiB2aWV3Qm94PSIwIDAgMTYgMTYiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZGVmcz48L2RlZnM+CiAgICA8ZyBpZD0iMTZweCIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIyNC4wMDAwMDAsIC0xOTIuMDAwMDAwKSI+CiAgICAgICAgPGcgaWQ9InNsaWNlcyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzIuMDAwMDAwLCAzMi4wMDAwMDApIj48L2c+CiAgICAgICAgPHBhdGggZD0iTTIzNywxOTMgTDI0MCwxOTMgTDI0MCwxOTUgTDIyNCwxOTUgTDIyNCwxOTMgTDIyNywxOTMgTDIyNywxOTIgTDIyOSwxOTIgTDIyOSwxOTMgTDIzNSwxOTMgTDIzNSwxOTIgTDIzNywxOTIgTDIzNywxOTMgWiBNMjI0LDE5NiBMMjQwLDE5NiBMMjQwLDIwNi45OTc1MjcgQzI0MCwyMDcuNTUxMTc3IDIzOS41NTUzNjksMjA4IDIzOC45OTkxMjgsMjA4IEwyMjUuMDAwODcyLDIwOCBDMjI0LjQ0ODEwNiwyMDggMjI0LDIwNy41NDQyMzkgMjI0LDIwNi45OTc1MjcgTDIyNCwxOTYgWiBNMjI2LDE5OCBMMjI2LDIwNiBMMjM4LDIwNiBMMjM4LDE5OCBMMjI2LDE5OCBaIE0yMzIsMjAxIEwyMzcsMjAxIEwyMzcsMjA1IEwyMzIsMjA1IEwyMzIsMjAxIFoiIGlkPSJjYWxlbmRhciIgZmlsbD0iIzk1OTk5RCI+PC9wYXRoPgogICAgPC9nPgo8L3N2Zz4=");
1108
+ .recipient__recipients-avatars___1npjD.recipient__--interactive___160Bp {
1109
+ cursor: pointer;
1268
1110
  }
1269
- .share__share-details-perm___23_VF {
1270
- background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8cGF0aCBmaWxsPSIjOTU5OTlEIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMDEuNSw5OS41IEwxOTIsMTA5LjAyNTM5MSBMMTkyLDExMiBMMTk1LjAzNzcyLDExMiBMMjA0LjUsMTAyLjUgTDIwMS41LDk5LjUgWiBNMjA2LjkxMjE1NCw5Ni45MTIxNTQxIEMyMDYuMTMyMjQzLDk2LjEzMjI0MjkgMjA0Ljg2OTE0NCw5Ni4xMzA4NTU2IDIwNC4wODkyNjQsOTYuOTEwNzM2MSBMMjAzLDk4IEwyMDYuMDMwNzYyLDEwMSBMMjA3LjA5MjI3MSw5OS45MjUyNjYzIEMyMDcuODY5NzM4LDk5LjEzODExMzQgMjA3Ljg2Mzc3Nyw5Ny44NjM3NzcyIDIwNy4wODc4NDYsOTcuMDg3ODQ1OSBMMjA2LjkxMjE1NCw5Ni45MTIxNTQxIFogTTE5OSwxMTAgTDIwNC45OTcwNzEsMTEwIEMyMDUuNTUwOTczLDExMCAyMDYsMTEwLjQ0Mzg2NSAyMDYsMTExIEMyMDYsMTExLjU1MjI4NSAyMDUuNTUzNjg5LDExMiAyMDUuMDAyNDU1LDExMiBMMTk3LDExMiBMMTk5LDExMCBaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTkyIC05NikiLz4KPC9zdmc+Cg==");
1271
- margin-bottom: 0.2rem;
1111
+ .recipient__recipients-avatars--link___1qeON,
1112
+ .recipient__recipients-avatars--plusX___3-6_l,
1113
+ .recipient__recipients-avatars--avatar___-owjC {
1114
+ border-width: 2px;
1115
+ border-style: solid;
1116
+ border-color: var(--white);
1272
1117
  }
1273
- .share__share-details-perm-desc___tqfXx {
1274
- font-size: 0.875rem;
1275
- margin: 0 0 0.5rem 3.5rem;
1276
- padding-left: 1.5rem;
1277
- line-height: 1.5;
1278
- color: var(--coolGrey);
1118
+ .recipient__recipients-avatars--link___1qeON {
1119
+ background-color: var(--genericRecipientBackground);
1279
1120
  }
1280
- /* imported from CozyPassFingerprintDialogContent.styl */
1281
-
1282
- .CozyPassFingerprintDialogContent__cozy-pass-fingerprint-modal__fingerprint___2O7dO {
1283
- padding: 16px;
1284
- margin: 24px 0;
1285
- text-align: center;
1121
+ .recipient__recipients-avatars--link___1qeON svg {
1122
+ fill: var(--genericRecipientColor);
1286
1123
  }
1287
- .CozyPassFingerprintDialogContent__cozy-pass-fingerprint-modal__fingerprint___2O7dO p {
1288
- color: var(--secondaryColor);
1124
+ .recipient__recipients-avatars--plusX___3-6_l,
1125
+ .recipient__recipients-avatars--avatar___-owjC {
1126
+ margin-right: -0.6rem;
1289
1127
  }
1290
1128
  /*
1291
- imported from recipient.styl
1129
+ imported from share.styl
1292
1130
  */
1293
1131
 
1294
- @-moz-keyframes recipient__spin___3_Uja {
1132
+ @-moz-keyframes share__spin___hhtoM {
1295
1133
  from {
1296
1134
  transform: rotate(0deg);
1297
1135
  }
@@ -1299,7 +1137,7 @@ input[type=text] {
1299
1137
  transform: rotate(359deg);
1300
1138
  }
1301
1139
  }
1302
- @-webkit-keyframes recipient__spin___3_Uja {
1140
+ @-webkit-keyframes share__spin___hhtoM {
1303
1141
  from {
1304
1142
  transform: rotate(0deg);
1305
1143
  }
@@ -1307,7 +1145,7 @@ input[type=text] {
1307
1145
  transform: rotate(359deg);
1308
1146
  }
1309
1147
  }
1310
- @-o-keyframes recipient__spin___3_Uja {
1148
+ @-o-keyframes share__spin___hhtoM {
1311
1149
  from {
1312
1150
  transform: rotate(0deg);
1313
1151
  }
@@ -1315,7 +1153,7 @@ input[type=text] {
1315
1153
  transform: rotate(359deg);
1316
1154
  }
1317
1155
  }
1318
- @keyframes recipient__spin___3_Uja {
1156
+ @keyframes share__spin___hhtoM {
1319
1157
  from {
1320
1158
  transform: rotate(0deg);
1321
1159
  }
@@ -1323,7 +1161,7 @@ input[type=text] {
1323
1161
  transform: rotate(359deg);
1324
1162
  }
1325
1163
  }
1326
- @-moz-keyframes recipient__shake___TrWC0 {
1164
+ @-moz-keyframes share__shake___2au1o {
1327
1165
  10%, 90% {
1328
1166
  transform: translate3d(-1px, 0, 0);
1329
1167
  }
@@ -1337,7 +1175,7 @@ input[type=text] {
1337
1175
  transform: translate3d(4px, 0, 0);
1338
1176
  }
1339
1177
  }
1340
- @-webkit-keyframes recipient__shake___TrWC0 {
1178
+ @-webkit-keyframes share__shake___2au1o {
1341
1179
  10%, 90% {
1342
1180
  transform: translate3d(-1px, 0, 0);
1343
1181
  }
@@ -1351,7 +1189,7 @@ input[type=text] {
1351
1189
  transform: translate3d(4px, 0, 0);
1352
1190
  }
1353
1191
  }
1354
- @-o-keyframes recipient__shake___TrWC0 {
1192
+ @-o-keyframes share__shake___2au1o {
1355
1193
  10%, 90% {
1356
1194
  transform: translate3d(-1px, 0, 0);
1357
1195
  }
@@ -1365,7 +1203,7 @@ input[type=text] {
1365
1203
  transform: translate3d(4px, 0, 0);
1366
1204
  }
1367
1205
  }
1368
- @keyframes recipient__shake___TrWC0 {
1206
+ @keyframes share__shake___2au1o {
1369
1207
  10%, 90% {
1370
1208
  transform: translate3d(-1px, 0, 0);
1371
1209
  }
@@ -1899,11 +1737,122 @@ input[type=text] {
1899
1737
  }
1900
1738
  @media (pointer: coarse) {
1901
1739
  }
1740
+ .share__share-modal-content___1iqEq .share__coz-form___1ICST {
1741
+ margin: 1rem 0 0.5rem;
1742
+ }
1743
+ .share__share-modal-content___1iqEq .share__coz-form___1ICST a,
1744
+ .share__share-modal-content___1iqEq .share__coz-form___1ICST a:visited {
1745
+ color: var(--dodgerBlue);
1746
+ text-decoration: none;
1747
+ }
1748
+ .share__share-modal-content___1iqEq .share__coz-form___1ICST a:hover,
1749
+ .share__share-modal-content___1iqEq .share__coz-form___1ICST a:active {
1750
+ text-decoration: underline;
1751
+ }
1752
+ .share__share-modal-content___1iqEq .share__coz-form___1ICST,
1753
+ .share__share-modal-content___1iqEq .share__coz-form-group___VsQp7 {
1754
+ position: relative;
1755
+ display: flex;
1756
+ flex-direction: column;
1757
+ }
1758
+ .share__share-modal-content___1iqEq .share__coz-form-desc___2mYN4 {
1759
+ margin-bottom: 0.5rem;
1760
+ line-height: 1.5;
1761
+ }
1762
+ .share__share-modal-content___1iqEq .share__coz-form-label___bogBw {
1763
+ display: block;
1764
+ text-transform: uppercase;
1765
+ color: var(--coolGrey);
1766
+ font-size: 0.75rem;
1767
+ padding: 0.563rem 0;
1768
+ margin-top: 1rem;
1769
+ }
1770
+ .share__share-modal-content___1iqEq .share__coz-form-label--error___3YPkf {
1771
+ display: none;
1772
+ color: var(--pomegranate);
1773
+ }
1774
+ .share__share-modal-content___1iqEq .share__coz-form-errors___2xYRz {
1775
+ color: var(--pomegranate);
1776
+ }
1777
+ .share__share-modal-content___1iqEq .share__coz-form-controls___H8kGc {
1778
+ display: flex;
1779
+ flex-direction: row;
1780
+ justify-content: flex-end;
1781
+ margin: 1rem 0 0.5rem;
1782
+ }
1783
+ .share__share-modal-content___1iqEq .share__coz-form-controls___H8kGc a,
1784
+ .share__share-modal-content___1iqEq .share__coz-form-controls___H8kGc button,
1785
+ .share__share-modal-content___1iqEq .share__coz-form-controls___H8kGc input[type=submit] {
1786
+ flex: 0 0 auto;
1787
+ margin: 0 0 0.5rem 0.5rem;
1788
+ }
1789
+ .share__share-modal-content___1iqEq .share__coz-form-controls--full___1oQXF a,
1790
+ .share__share-modal-content___1iqEq .share__coz-form-controls--full___1oQXF button,
1791
+ .share__share-modal-content___1iqEq .share__coz-form-controls--full___1oQXF input[type=submit] {
1792
+ flex: 0 0 100%;
1793
+ margin-bottom: 0.5rem;
1794
+ }
1795
+ .share__share-modal-content___1iqEq .share__coz-form-controls--dispatch___1zIxt {
1796
+ justify-content: space-between;
1797
+ }
1798
+ .share__share-modal-content___1iqEq .share__coz-form-controls--dispatch___1zIxt a,
1799
+ .share__share-modal-content___1iqEq .share__coz-form-controls--dispatch___1zIxt button,
1800
+ .share__share-modal-content___1iqEq .share__coz-form-controls--dispatch___1zIxt input[type=submit] {
1801
+ flex: 0 0 49%;
1802
+ margin: 0 0 0.5rem;
1803
+ }
1804
+ .share__share-modal-content___1iqEq .share__coz-form-controls--dispatch___1zIxt a:last-child,
1805
+ .share__share-modal-content___1iqEq .share__coz-form-controls--dispatch___1zIxt button:last-child,
1806
+ .share__share-modal-content___1iqEq .share__coz-form-controls--dispatch___1zIxt input[type=submit]:last-child {
1807
+ margin-left: auto;
1808
+ }
1809
+ .share__share-modal-content___1iqEq input[type=text],
1810
+ .share__share-modal-content___1iqEq input[type=password],
1811
+ .share__share-modal-content___1iqEq input[type=email],
1812
+ .share__share-modal-content___1iqEq input[type=url] {
1813
+ display: inline-block;
1814
+ padding: 0.875rem 0.75rem 0.75rem 0.875rem;
1815
+ box-sizing: border-box;
1816
+ border-radius: 0.125rem;
1817
+ background: var(--white);
1818
+ border: 0.063rem solid var(--dividerColor);
1819
+ color: var(--black);
1820
+ }
1821
+ .share__share-modal-content___1iqEq input[type=text]::placeholder,
1822
+ .share__share-modal-content___1iqEq input[type=password]::placeholder,
1823
+ .share__share-modal-content___1iqEq input[type=email]::placeholder,
1824
+ .share__share-modal-content___1iqEq input[type=url]::placeholder {
1825
+ color: var(--coolGrey);
1826
+ font-size: 1rem;
1827
+ }
1828
+ .share__share-modal-content___1iqEq input[type=text]:focus,
1829
+ .share__share-modal-content___1iqEq input[type=password]:focus,
1830
+ .share__share-modal-content___1iqEq input[type=email]:focus,
1831
+ .share__share-modal-content___1iqEq input[type=url]:focus {
1832
+ border: 0.063rem solid var(--dodgerBlue);
1833
+ outline: 0;
1834
+ }
1835
+ .share__share-modal-content___1iqEq input[type=text]:hover,
1836
+ .share__share-modal-content___1iqEq input[type=password]:hover,
1837
+ .share__share-modal-content___1iqEq input[type=email]:hover,
1838
+ .share__share-modal-content___1iqEq input[type=url]:hover {
1839
+ border: 0.063rem solid var(--coolGrey);
1840
+ }
1841
+ .share__share-modal-content___1iqEq input[type=text].share__error___pwqPO,
1842
+ .share__share-modal-content___1iqEq input[type=password].share__error___pwqPO,
1843
+ .share__share-modal-content___1iqEq input[type=email].share__error___pwqPO,
1844
+ .share__share-modal-content___1iqEq input[type=url].share__error___pwqPO {
1845
+ border: 0.063rem solid var(--pomegranate);
1846
+ }
1847
+ @media (max-width: 48rem) {
1848
+ }
1849
+ @media (max-width: 48rem) {
1850
+ }
1902
1851
  :root {
1903
1852
  --invertedBackgroundColor: #297ef2;
1904
1853
  --invertedContrastTextColor: #fff;
1905
1854
  }
1906
- .recipient__CozyTheme--inverted___2Hb9c {
1855
+ .share__CozyTheme--inverted___oxix3 {
1907
1856
  --primaryTextColor: #fff;
1908
1857
  --secondaryTextColor: rgba(255,255,255,0.64);
1909
1858
  --disabledTextColor: rgba(255,255,255,0.4);
@@ -2075,7 +2024,7 @@ html {
2075
2024
  --monza: #dd0505;
2076
2025
  }
2077
2026
  html,
2078
- .recipient__CozyTheme--normal___3WdEw {
2027
+ .share__CozyTheme--normal___2PCy8 {
2079
2028
  /*
2080
2029
  Primary colors
2081
2030
 
@@ -2323,86 +2272,99 @@ html,
2323
2272
  --alertInfoColor: #fff;
2324
2273
  --alertInfoBackgroundColor: var(--slateGrey);
2325
2274
  }
2326
- :root {
2327
- --genericRecipientBackground: var(--slateGrey);
2328
- --genericRecipientColor: var(--white);
2329
- }
2330
- .recipient__recipient___2zWmH {
2331
- display: flex;
2332
- flex-direction: row;
2333
- align-items: center;
2275
+ .share__share-byemail-onlybylink___29W-t {
2276
+ background: var(--paleGrey);
2277
+ padding: 1rem 2rem;
2278
+ margin: -1.5rem -2rem 1rem;
2334
2279
  }
2335
2280
  @media (max-width: 48rem) {
2336
- .recipient__recipient___2zWmH {
2337
- align-items: flex-start;
2281
+ .share__share-byemail-onlybylink___29W-t {
2282
+ padding: 1rem;
2283
+ margin: -1.5rem -1rem 1rem;
2338
2284
  }
2339
2285
  }
2340
- .recipient__recipients-list-light___1-dkI .recipient__recipient___2zWmH {
2341
- margin: 1rem 0;
2286
+ .share__share-modal-content___1iqEq {
2287
+ min-height: 15.625rem;
2342
2288
  }
2343
- .recipient__recipients-list-light___1-dkI + .recipient__recipient___2zWmH {
2344
- margin-top: 1rem;
2289
+ .share__share-modal-content___1iqEq .share__coz-form-group___VsQp7 {
2290
+ flex-shrink: 0;
2345
2291
  }
2346
- .recipient__recipient-idents___3F3zL {
2347
- flex: 1 1 auto;
2348
- overflow: hidden;
2349
- text-overflow: ellipsis;
2292
+ .share__aligned-dropdown-button___3crgG {
2293
+ margin-right: -1rem;
2350
2294
  }
2351
- .recipient__recipient-status-icon___1GvS9 {
2352
- margin-right: 0.25rem;
2295
+ .share__coz-form-group___VsQp7 {
2296
+ margin: 0;
2353
2297
  }
2354
- .recipient__recipient-user___3hOyK,
2355
- .recipient__recipient-details___3fmFE {
2356
- text-overflow: ellipsis;
2357
- overflow: hidden;
2358
- white-space: nowrap;
2359
- line-height: 1.3;
2298
+ .share__coz-form-group___VsQp7 h3 {
2299
+ margin: 0.3rem 0 0;
2360
2300
  }
2361
- .recipient__recipient-user___3hOyK {
2362
- font-size: 1rem;
2363
- font-weight: bold;
2301
+ .share__coz-form-group___VsQp7 h4 {
2302
+ margin: 0 0 0.3rem 0;
2364
2303
  }
2365
- .recipient__recipient-details___3fmFE {
2366
- font-size: 0.875rem;
2304
+ .share__coz-form-group___VsQp7 .share__coz-form___1ICST {
2305
+ margin: 0;
2306
+ }
2307
+ .share__coz-form-group___VsQp7 .share__coz-form-desc___2mYN4 {
2367
2308
  color: var(--coolGrey);
2368
2309
  }
2369
- .recipient__avatar___2NIEb {
2310
+ .share__share-type-control___1YoRr {
2370
2311
  display: flex;
2371
2312
  flex-direction: row;
2372
- align-items: center;
2313
+ justify-content: space-between;
2314
+ padding: 0.5rem 0 0;
2373
2315
  }
2374
- .recipient__avatar___2NIEb .recipient__recipient-user___3hOyK {
2375
- font-size: 1.125rem;
2316
+ .share__share-type-control___1YoRr .share__select-wrapper___3XBKC {
2317
+ flex: 0 0 49%;
2318
+ position: relative;
2376
2319
  }
2377
- .recipient__link-recipient-icon-circle___3gmgy {
2378
- border: 1px solid var(--borderMainColor);
2379
- background-color: unset;
2380
- color: unset;
2320
+ .share__share-type-control___1YoRr .share__select-wrapper___3XBKC .share__select-option___3Jp8_ {
2321
+ padding: 0.5rem 1.5rem 0.5rem 3rem;
2322
+ position: relative;
2381
2323
  }
2382
- .recipient__recipients-avatars___MXhiL {
2383
- display: inline-flex;
2384
- flex-direction: row-reverse;
2385
- margin-right: 0.5rem;
2324
+ .share__share-type-control___1YoRr .share__select-wrapper___3XBKC .share__select-option___3Jp8_ svg {
2325
+ position: absolute;
2326
+ left: 1rem;
2327
+ top: 1rem;
2386
2328
  }
2387
- .recipient__recipients-avatars___MXhiL.recipient__--interactive___1gDjM {
2388
- cursor: pointer;
2329
+ .share__share-type-control___1YoRr .share__select-wrapper___3XBKC .share__select-option-label___1BWz_ {
2330
+ line-height: 2;
2389
2331
  }
2390
- .recipient__recipients-avatars--link___2s02h,
2391
- .recipient__recipients-avatars--plusX___WRllr,
2392
- .recipient__recipients-avatars--avatar___3j3_A {
2393
- border-width: 2px;
2394
- border-style: solid;
2395
- border-color: var(--white);
2332
+ .share__share-type-control___1YoRr .share__select-wrapper___3XBKC .share__select-option-desc___3jOnr {
2333
+ line-height: 1.5;
2334
+ font-size: 0.8125rem;
2335
+ color: var(--coolGrey);
2396
2336
  }
2397
- .recipient__recipients-avatars--link___2s02h {
2398
- background-color: var(--genericRecipientBackground);
2337
+ .share__share-type-control___1YoRr button {
2338
+ flex: 0 0 49%;
2339
+ margin: 0;
2399
2340
  }
2400
- .recipient__recipients-avatars--link___2s02h svg {
2401
- fill: var(--genericRecipientColor);
2341
+ .react-select__option:active {
2342
+ background-color: var(--paleGrey) !important;
2402
2343
  }
2403
- .recipient__recipients-avatars--plusX___WRllr,
2404
- .recipient__recipients-avatars--avatar___3j3_A {
2405
- margin-right: -0.6rem;
2344
+ input[type=text] {
2345
+ width: 100%;
2346
+ }
2347
+ .share__share-details-created___z3nvO,
2348
+ .share__share-details-perm___3HjxK {
2349
+ font-size: 1rem;
2350
+ margin: 0.5rem 0 0.5rem 3.5rem;
2351
+ padding-left: 1.5rem;
2352
+ background-position: 0 center;
2353
+ background-repeat: no-repeat;
2354
+ }
2355
+ .share__share-details-created___z3nvO {
2356
+ background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTZweCIgaGVpZ2h0PSIxNnB4IiB2aWV3Qm94PSIwIDAgMTYgMTYiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZGVmcz48L2RlZnM+CiAgICA8ZyBpZD0iMTZweCIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIyNC4wMDAwMDAsIC0xOTIuMDAwMDAwKSI+CiAgICAgICAgPGcgaWQ9InNsaWNlcyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzIuMDAwMDAwLCAzMi4wMDAwMDApIj48L2c+CiAgICAgICAgPHBhdGggZD0iTTIzNywxOTMgTDI0MCwxOTMgTDI0MCwxOTUgTDIyNCwxOTUgTDIyNCwxOTMgTDIyNywxOTMgTDIyNywxOTIgTDIyOSwxOTIgTDIyOSwxOTMgTDIzNSwxOTMgTDIzNSwxOTIgTDIzNywxOTIgTDIzNywxOTMgWiBNMjI0LDE5NiBMMjQwLDE5NiBMMjQwLDIwNi45OTc1MjcgQzI0MCwyMDcuNTUxMTc3IDIzOS41NTUzNjksMjA4IDIzOC45OTkxMjgsMjA4IEwyMjUuMDAwODcyLDIwOCBDMjI0LjQ0ODEwNiwyMDggMjI0LDIwNy41NDQyMzkgMjI0LDIwNi45OTc1MjcgTDIyNCwxOTYgWiBNMjI2LDE5OCBMMjI2LDIwNiBMMjM4LDIwNiBMMjM4LDE5OCBMMjI2LDE5OCBaIE0yMzIsMjAxIEwyMzcsMjAxIEwyMzcsMjA1IEwyMzIsMjA1IEwyMzIsMjAxIFoiIGlkPSJjYWxlbmRhciIgZmlsbD0iIzk1OTk5RCI+PC9wYXRoPgogICAgPC9nPgo8L3N2Zz4=");
2357
+ }
2358
+ .share__share-details-perm___3HjxK {
2359
+ background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8cGF0aCBmaWxsPSIjOTU5OTlEIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMDEuNSw5OS41IEwxOTIsMTA5LjAyNTM5MSBMMTkyLDExMiBMMTk1LjAzNzcyLDExMiBMMjA0LjUsMTAyLjUgTDIwMS41LDk5LjUgWiBNMjA2LjkxMjE1NCw5Ni45MTIxNTQxIEMyMDYuMTMyMjQzLDk2LjEzMjI0MjkgMjA0Ljg2OTE0NCw5Ni4xMzA4NTU2IDIwNC4wODkyNjQsOTYuOTEwNzM2MSBMMjAzLDk4IEwyMDYuMDMwNzYyLDEwMSBMMjA3LjA5MjI3MSw5OS45MjUyNjYzIEMyMDcuODY5NzM4LDk5LjEzODExMzQgMjA3Ljg2Mzc3Nyw5Ny44NjM3NzcyIDIwNy4wODc4NDYsOTcuMDg3ODQ1OSBMMjA2LjkxMjE1NCw5Ni45MTIxNTQxIFogTTE5OSwxMTAgTDIwNC45OTcwNzEsMTEwIEMyMDUuNTUwOTczLDExMCAyMDYsMTEwLjQ0Mzg2NSAyMDYsMTExIEMyMDYsMTExLjU1MjI4NSAyMDUuNTUzNjg5LDExMiAyMDUuMDAyNDU1LDExMiBMMTk3LDExMiBMMTk5LDExMCBaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTkyIC05NikiLz4KPC9zdmc+Cg==");
2360
+ margin-bottom: 0.2rem;
2361
+ }
2362
+ .share__share-details-perm-desc___3HyHu {
2363
+ font-size: 0.875rem;
2364
+ margin: 0 0 0.5rem 3.5rem;
2365
+ padding-left: 1.5rem;
2366
+ line-height: 1.5;
2367
+ color: var(--coolGrey);
2406
2368
  }
2407
2369
  /*
2408
2370
  imported from autosuggest.styl
@@ -2412,7 +2374,7 @@ html,
2412
2374
  --invertedBackgroundColor: #297ef2;
2413
2375
  --invertedContrastTextColor: #fff;
2414
2376
  }
2415
- .autosuggest__CozyTheme--inverted___QJCUa {
2377
+ .autosuggest__CozyTheme--inverted___3qp6I {
2416
2378
  --primaryTextColor: #fff;
2417
2379
  --secondaryTextColor: rgba(255,255,255,0.64);
2418
2380
  --disabledTextColor: rgba(255,255,255,0.4);
@@ -2584,7 +2546,7 @@ html {
2584
2546
  --monza: #dd0505;
2585
2547
  }
2586
2548
  html,
2587
- .autosuggest__CozyTheme--normal___1-_dN {
2549
+ .autosuggest__CozyTheme--normal___3fMAz {
2588
2550
  /*
2589
2551
  Primary colors
2590
2552
 
@@ -2849,10 +2811,10 @@ html {
2849
2811
  --zIndex-modal-toolbar: 72;
2850
2812
  --zIndex-alert: 80;
2851
2813
  }
2852
- .autosuggest__container___1dbB4 {
2814
+ .autosuggest__container___1Yro7 {
2853
2815
  position: relative;
2854
2816
  }
2855
- .autosuggest__suggestionsContainer___-PUXu {
2817
+ .autosuggest__suggestionsContainer___3EDuG {
2856
2818
  box-sizing: border-box;
2857
2819
  position: absolute;
2858
2820
  top: 100%;
@@ -2865,23 +2827,23 @@ html {
2865
2827
  background: var(--white);
2866
2828
  display: none;
2867
2829
  }
2868
- .autosuggest__suggestionsContainerOpen___LO5cw {
2830
+ .autosuggest__suggestionsContainerOpen___35OCI {
2869
2831
  display: block;
2870
2832
  }
2871
- .autosuggest__input___3b74d {
2833
+ .autosuggest__input___1Ea-3 {
2872
2834
  width: 100%;
2873
2835
  }
2874
- .autosuggest__suggestionsList___211Pt {
2836
+ .autosuggest__suggestionsList___3uRpV {
2875
2837
  max-height: 9rem;
2876
2838
  overflow: auto;
2877
2839
  margin: 0 -1px 0 0;
2878
2840
  padding: 0.5rem 0;
2879
2841
  list-style: none;
2880
2842
  }
2881
- .autosuggest__suggestionHighlighted___MbW8F {
2843
+ .autosuggest__suggestionHighlighted___1vpXJ {
2882
2844
  background: var(--actionColorSelected);
2883
2845
  }
2884
- .autosuggest__recipientsContainer___15b1_ {
2846
+ .autosuggest__recipientsContainer___1JYxA {
2885
2847
  display: flex;
2886
2848
  flex-wrap: wrap;
2887
2849
  padding: 0.25rem 0.5rem;
@@ -2891,103 +2853,141 @@ html {
2891
2853
  max-height: 6.75rem;
2892
2854
  overflow: auto;
2893
2855
  }
2894
- .autosuggest__recipientsContainer___15b1_:hover {
2856
+ .autosuggest__recipientsContainer___1JYxA:hover {
2895
2857
  border: 1px solid var(--coolGrey);
2896
2858
  }
2897
- .autosuggest__recipientsContainer___15b1_:focus-within {
2859
+ .autosuggest__recipientsContainer___1JYxA:focus-within {
2898
2860
  border: 1px solid var(--primaryColor);
2899
2861
  }
2900
- .autosuggest__recipientsContainer___15b1_ input[type=email] {
2862
+ .autosuggest__recipientsContainer___1JYxA input[type=email] {
2901
2863
  width: auto;
2902
2864
  flex-grow: 1;
2903
2865
  padding: 0.5rem 0;
2904
2866
  margin: auto;
2905
2867
  border: none;
2906
2868
  }
2907
- .autosuggest__recipientsContainer___15b1_ input[type=email]:hover,
2908
- .autosuggest__recipientsContainer___15b1_ input[type=email]:focus {
2869
+ .autosuggest__recipientsContainer___1JYxA input[type=email]:hover,
2870
+ .autosuggest__recipientsContainer___1JYxA input[type=email]:focus {
2909
2871
  border: none;
2910
2872
  }
2911
- .autosuggest__recipientsContainer___15b1_ input[type=email]:only-child {
2873
+ .autosuggest__recipientsContainer___1JYxA input[type=email]:only-child {
2912
2874
  padding: 0.25rem 0.5rem;
2913
2875
  }
2914
- .autosuggest__recipientChip___oRxU- {
2876
+ .autosuggest__recipientChip___d5I3R {
2915
2877
  margin: 0.25rem 0.5rem 0.25rem 0;
2916
2878
  }
2917
2879
  /* imported from button.styl */
2918
2880
 
2919
- .button__coz-btn-shared___2BoMk {
2881
+ .button__coz-btn-shared___9MFbY {
2920
2882
  border-color: #35ce68;
2921
2883
  background-color: #35ce68;
2922
2884
  color: var(--white);
2923
2885
  transition: all 0.2s ease-out;
2924
2886
  }
2925
- .button__coz-btn-shared___2BoMk:focus,
2926
- .button__coz-btn-shared___2BoMk:not([disabled]):not([aria-disabled=true]):hover {
2887
+ .button__coz-btn-shared___9MFbY:focus,
2888
+ .button__coz-btn-shared___9MFbY:not([disabled]):not([aria-disabled=true]):hover {
2927
2889
  border-color: #08b442;
2928
2890
  background-color: #08b442;
2929
2891
  }
2930
- .button__coz-btn-sharedWithMe___2Vjfh {
2892
+ .button__coz-btn-sharedWithMe___25PBh {
2931
2893
  border-color: #b449e7;
2932
2894
  background-color: #b449e7;
2933
2895
  color: var(--white);
2934
2896
  transition: all 0.2s ease-out;
2935
2897
  }
2936
- .button__coz-btn-sharedWithMe___2Vjfh:focus,
2937
- .button__coz-btn-sharedWithMe___2Vjfh:not([disabled]):not([aria-disabled=true]):hover {
2898
+ .button__coz-btn-sharedWithMe___25PBh:focus,
2899
+ .button__coz-btn-sharedWithMe___25PBh:not([disabled]):not([aria-disabled=true]):hover {
2938
2900
  border-color: #922bc2;
2939
2901
  background-color: #922bc2;
2940
2902
  }
2941
2903
  /* imported from badge.styl */
2942
2904
 
2943
- .badge__shared-badge___2QYc_ {
2905
+ .badge__shared-badge___2jGsy {
2944
2906
  display: flex;
2945
2907
  align-items: center;
2946
2908
  justify-content: center;
2947
2909
  border-radius: 50%;
2948
2910
  background-clip: padding-box;
2949
2911
  }
2950
- .badge__shared-badge___2QYc_.badge__--small___3i2p8 {
2912
+ .badge__shared-badge___2jGsy.badge__--small___2VMyY {
2951
2913
  border: 0.125rem solid;
2952
2914
  border-color: var(--white);
2953
2915
  width: 1.5rem;
2954
2916
  height: 1.5rem;
2955
2917
  }
2956
- .badge__shared-badge___2QYc_.badge__--small___3i2p8 .badge__shared-badge-icon___kngsy {
2918
+ .badge__shared-badge___2jGsy.badge__--small___2VMyY .badge__shared-badge-icon___3s9t1 {
2957
2919
  width: 0.75rem;
2958
2920
  height: 0.75rem;
2959
2921
  }
2960
- .badge__shared-badge___2QYc_.badge__--xsmall___1SOfR {
2922
+ .badge__shared-badge___2jGsy.badge__--xsmall___2cEGG {
2961
2923
  border: 0.0625rem solid;
2962
2924
  border-color: var(--white);
2963
2925
  width: 0.75rem;
2964
2926
  height: 0.75rem;
2965
2927
  }
2966
- .badge__shared-badge___2QYc_.badge__--xsmall___1SOfR .badge__shared-badge-icon___kngsy {
2928
+ .badge__shared-badge___2jGsy.badge__--xsmall___2cEGG .badge__shared-badge-icon___3s9t1 {
2967
2929
  width: 0.375rem;
2968
2930
  height: 0.375rem;
2969
2931
  }
2970
- .badge__shared-badge___2QYc_.badge__--by-me___3zfDg {
2932
+ .badge__shared-badge___2jGsy.badge__--by-me___3aTHb {
2971
2933
  background-color: #35ce68;
2972
2934
  }
2973
- .badge__shared-badge___2QYc_.badge__--with-me___30u7z {
2935
+ .badge__shared-badge___2jGsy.badge__--with-me___3jW7R {
2974
2936
  background-color: #9169f2;
2975
2937
  }
2976
2938
  /* imported from status.styl */
2977
2939
 
2978
- .status__shared-status___J15Fy {
2940
+ .status__shared-status___2HpyL {
2979
2941
  display: flex;
2980
2942
  }
2981
- .status__shared-status-label___2AWic {
2943
+ .status__shared-status-label___1-jvS {
2982
2944
  margin-right: 0.5rem;
2983
2945
  }
2946
+ /* imported from publicBanner.styl */
2947
+
2948
+ .publicBanner__bannermarkdown___1dR1E img {
2949
+ background-color: var(--paleGrey);
2950
+ color: var(--silver);
2951
+ position: relative;
2952
+ }
2953
+ .publicBanner__bannermarkdown___1dR1E img svg {
2954
+ width: 50%;
2955
+ height: 50%;
2956
+ }
2957
+ .publicBanner__bannermarkdown___1dR1E img {
2958
+ --circleSize: 2.5rem;
2959
+ width: var(--circleSize);
2960
+ height: var(--circleSize);
2961
+ min-width: var(--circleSize);
2962
+ min-height: var(--circleSize);
2963
+ font-size: calc(var(--circleSize) / 2.28);
2964
+ display: inline-flex;
2965
+ align-items: center;
2966
+ justify-content: center;
2967
+ border-radius: 50%;
2968
+ overflow: hidden;
2969
+ background-color: var(--dodgerBlue);
2970
+ color: var(--white);
2971
+ }
2972
+ .publicBanner__bannermarkdown___1dR1E {
2973
+ font-weight: bold;
2974
+ display: inline-block;
2975
+ }
2976
+ .publicBanner__bannermarkdown___1dR1E img {
2977
+ width: 1rem;
2978
+ height: 1rem;
2979
+ min-width: 1rem;
2980
+ min-height: 1rem;
2981
+ font-size: 0.438rem;
2982
+ vertical-align: text-bottom;
2983
+ }
2984
2984
  /* imported from tooltip.styl */
2985
2985
 
2986
- .tooltip__shared-tooltip___33CoC {
2986
+ .tooltip__shared-tooltip___7Dys3 {
2987
2987
  padding: 0.5rem;
2988
2988
  font-weight: bold;
2989
2989
  }
2990
- .tooltip__shared-tooltip-list___3gFkD {
2990
+ .tooltip__shared-tooltip-list___jD5hi {
2991
2991
  list-style: none;
2992
2992
  padding: 0;
2993
2993
  margin: 0;