cozy-sharing 10.2.0 → 10.4.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.
- package/CHANGELOG.md +22 -0
- package/dist/ConfirmTrustedRecipientsDialog.js +1 -1
- package/dist/ShareButton.js +1 -1
- package/dist/ShareButton.spec.js +1 -1
- package/dist/SharedBadge.js +1 -1
- package/dist/SharedRecipients.js +1 -1
- package/dist/SharedRecipientsList.js +1 -1
- package/dist/SharedStatus.js +1 -1
- package/dist/SharingOwnerAvatar.js +1 -1
- package/dist/components/CozyPassFingerprintDialogContent.js +1 -1
- package/dist/components/Recipient/Identity.js +15 -17
- package/dist/components/Recipient/LinkRecipient.js +16 -18
- package/dist/components/Recipient/OwnerIdentity.js +16 -18
- package/dist/components/Recipient/RecipientConfirm.js +21 -25
- package/dist/components/Recipient/RecipientList.js +36 -0
- package/dist/components/Recipient/RecipientPlusX.js +16 -18
- package/dist/components/Recipient/RecipientStatus.js +15 -17
- package/dist/components/Recipient/RecipientWithoutStatus.js +16 -18
- package/dist/components/Recipient/RecipientsAvatars.js +16 -18
- package/dist/components/ShareAutosuggest.js +10 -12
- package/dist/components/ShareButton.js +2 -2
- package/dist/components/ShareByEmail.js +22 -26
- package/dist/components/ShareDialogCozyToCozy.js +21 -25
- package/dist/components/{EditableSharingModal.js → ShareModal/EditableSharingModal.js} +5 -5
- package/dist/components/{EditableSharingModal.spec.js → ShareModal/EditableSharingModal.spec.js} +6 -6
- package/dist/components/ShareModal/ShareModal.js +43 -0
- package/dist/{SharingDetailsModal.js → components/ShareModal/SharingDetailsModal.js} +24 -28
- package/dist/components/SharedBadge.js +6 -6
- package/dist/components/SharedStatus.js +4 -4
- package/dist/components/Sharetypeselect.js +21 -25
- package/dist/{SharingBanner → components/SharingBanner}/components/PublicBanner.js +2 -2
- package/dist/{SharingBanner → components/SharingBanner}/hooks/useSharingInfos.js +2 -2
- package/dist/{SharingBanner → components/SharingBanner}/index.js +1 -1
- package/dist/{SharingBanner → components/SharingBanner}/test/AppLike.js +2 -2
- package/dist/components/Tooltip.js +2 -2
- package/dist/components/WhoHasAccess.js +10 -20
- package/dist/components/WhoHasAccessLight.js +17 -1
- package/dist/{withLocales.js → hoc/withLocales.js} +2 -2
- package/dist/index.js +5 -5
- package/dist/{components → styles}/actionmenu.styl +0 -2
- package/dist/{components → styles}/autosuggest.styl +1 -4
- package/dist/{SharingBanner/components → styles}/publicBanner.styl +5 -5
- package/dist/{components/Recipient → styles}/recipient.styl +0 -1
- package/{src → dist/styles}/share.styl +0 -1
- package/dist/stylesheet.css +214 -2635
- package/docs/share-modal-architecture.md +44 -0
- package/package.json +6 -6
- package/src/ConfirmTrustedRecipientsDialog.jsx +1 -1
- package/src/ShareButton.jsx +1 -1
- package/src/ShareButton.spec.jsx +1 -1
- package/src/SharedBadge.jsx +1 -1
- package/src/SharedRecipients.jsx +1 -1
- package/src/SharedRecipientsList.jsx +1 -1
- package/src/SharedStatus.jsx +1 -1
- package/src/SharingOwnerAvatar.jsx +1 -1
- package/src/assets/icons/icon-arrow-down.svg +3 -0
- package/src/assets/icons/icon-calendar-16.svg +8 -0
- package/src/assets/icons/icon-check-blue.svg +59 -0
- package/src/assets/icons/icon-cross-bold.svg +5 -0
- package/src/assets/icons/icon-link.svg +14 -0
- package/src/assets/icons/icon-pen-16.svg +3 -0
- package/src/components/CozyPassFingerprintDialogContent.jsx +1 -1
- package/src/components/Recipient/Identity.jsx +1 -1
- package/src/components/Recipient/LinkRecipient.jsx +1 -1
- package/src/components/Recipient/OwnerIdentity.jsx +1 -1
- package/src/components/Recipient/RecipientConfirm.jsx +1 -1
- package/src/components/Recipient/RecipientList.jsx +45 -0
- package/src/components/Recipient/RecipientPlusX.jsx +1 -1
- package/src/components/Recipient/RecipientStatus.jsx +1 -1
- package/src/components/Recipient/RecipientWithoutStatus.jsx +1 -1
- package/src/components/Recipient/RecipientsAvatars.jsx +1 -1
- package/src/components/ShareAutosuggest.jsx +1 -1
- package/src/components/ShareButton.jsx +1 -1
- package/src/components/ShareByEmail.jsx +1 -1
- package/src/components/ShareDialogCozyToCozy.jsx +1 -1
- package/src/components/{EditableSharingModal.jsx → ShareModal/EditableSharingModal.jsx} +5 -5
- package/src/components/{EditableSharingModal.spec.jsx → ShareModal/EditableSharingModal.spec.jsx} +6 -6
- package/src/components/ShareModal/ShareModal.jsx +45 -0
- package/src/{SharingDetailsModal.jsx → components/ShareModal/SharingDetailsModal.jsx} +4 -4
- package/src/components/SharedBadge.jsx +1 -1
- package/src/components/SharedStatus.jsx +2 -2
- package/src/components/Sharetypeselect.jsx +1 -1
- package/src/{SharingBanner → components/SharingBanner}/components/PublicBanner.jsx +2 -2
- package/src/{SharingBanner → components/SharingBanner}/hooks/useSharingInfos.jsx +2 -2
- package/src/{SharingBanner → components/SharingBanner}/index.jsx +1 -1
- package/src/{SharingBanner → components/SharingBanner}/test/AppLike.jsx +2 -2
- package/src/components/Tooltip.jsx +1 -1
- package/src/components/WhoHasAccess.jsx +11 -29
- package/src/components/WhoHasAccessLight.jsx +1 -1
- package/src/components/__snapshots__/ContactSuggestion.spec.jsx.snap +120 -105
- package/src/{withLocales.jsx → hoc/withLocales.jsx} +2 -2
- package/src/index.jsx +6 -5
- package/src/{components → styles}/actionmenu.styl +0 -2
- package/src/{components → styles}/autosuggest.styl +1 -4
- package/src/{SharingBanner/components → styles}/publicBanner.styl +5 -5
- package/src/{components/Recipient → styles}/recipient.styl +0 -1
- package/{dist → src/styles}/share.styl +0 -1
- package/dist/ShareModal.js +0 -50
- package/src/ShareModal.jsx +0 -51
- /package/{assets → dist/assets}/icons/icon-arrow-down.svg +0 -0
- /package/{assets → dist/assets}/icons/icon-calendar-16.svg +0 -0
- /package/{assets → dist/assets}/icons/icon-check-blue.svg +0 -0
- /package/{assets → dist/assets}/icons/icon-cross-bold.svg +0 -0
- /package/{assets → dist/assets}/icons/icon-link.svg +0 -0
- /package/{assets → dist/assets}/icons/icon-pen-16.svg +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/components/CozyHomeLinkIcon.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/components/PublicBanner.spec.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/components/SharingBanner.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/helpers/QueryParameter.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/helpers/QueryParameter.spec.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/hooks/useSharingInfos.spec.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/test/AcceptingSharingContext.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/test/FabProvider.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/test/ModalContext.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/test/RouterContext.js +0 -0
- /package/dist/{SharingBanner → components/SharingBanner}/test/ThumbnailSizeContext.js +0 -0
- /package/dist/{components → hooks}/useFetchDocumentPath.js +0 -0
- /package/dist/{components → styles}/CozyPassFingerprintDialogContent.styl +0 -0
- /package/dist/{components → styles}/badge.styl +0 -0
- /package/dist/{components → styles}/button.styl +0 -0
- /package/dist/{components → styles}/status.styl +0 -0
- /package/dist/{components → styles}/tooltip.styl +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/components/CozyHomeLinkIcon.jsx +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/components/PublicBanner.spec.jsx +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/components/SharingBanner.jsx +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/helpers/QueryParameter.js +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/helpers/QueryParameter.spec.js +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/hooks/useSharingInfos.spec.js +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/test/AcceptingSharingContext.jsx +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/test/FabProvider.jsx +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/test/ModalContext.jsx +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/test/RouterContext.jsx +0 -0
- /package/src/{SharingBanner → components/SharingBanner}/test/ThumbnailSizeContext.jsx +0 -0
- /package/src/{components → hooks}/useFetchDocumentPath.jsx +0 -0
- /package/src/{components → styles}/CozyPassFingerprintDialogContent.styl +0 -0
- /package/src/{components → styles}/badge.styl +0 -0
- /package/src/{components → styles}/button.styl +0 -0
- /package/src/{components → styles}/status.styl +0 -0
- /package/src/{components → styles}/tooltip.styl +0 -0
package/dist/stylesheet.css
CHANGED
|
@@ -1,46 +1,16 @@
|
|
|
1
|
-
/* imported from
|
|
1
|
+
/* imported from CozyPassFingerprintDialogContent.styl */
|
|
2
2
|
|
|
3
|
-
.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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
|
-
.
|
|
32
|
-
|
|
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
|
-
/*
|
|
40
|
-
imported from share.styl
|
|
41
|
-
*/
|
|
11
|
+
/* imported from recipient.styl */
|
|
42
12
|
|
|
43
|
-
@-moz-keyframes
|
|
13
|
+
@-moz-keyframes recipient__spin___2tYv3 {
|
|
44
14
|
from {
|
|
45
15
|
transform: rotate(0deg);
|
|
46
16
|
}
|
|
@@ -48,7 +18,7 @@
|
|
|
48
18
|
transform: rotate(359deg);
|
|
49
19
|
}
|
|
50
20
|
}
|
|
51
|
-
@-webkit-keyframes
|
|
21
|
+
@-webkit-keyframes recipient__spin___2tYv3 {
|
|
52
22
|
from {
|
|
53
23
|
transform: rotate(0deg);
|
|
54
24
|
}
|
|
@@ -56,7 +26,7 @@
|
|
|
56
26
|
transform: rotate(359deg);
|
|
57
27
|
}
|
|
58
28
|
}
|
|
59
|
-
@-o-keyframes
|
|
29
|
+
@-o-keyframes recipient__spin___2tYv3 {
|
|
60
30
|
from {
|
|
61
31
|
transform: rotate(0deg);
|
|
62
32
|
}
|
|
@@ -64,7 +34,7 @@
|
|
|
64
34
|
transform: rotate(359deg);
|
|
65
35
|
}
|
|
66
36
|
}
|
|
67
|
-
@keyframes
|
|
37
|
+
@keyframes recipient__spin___2tYv3 {
|
|
68
38
|
from {
|
|
69
39
|
transform: rotate(0deg);
|
|
70
40
|
}
|
|
@@ -72,7 +42,7 @@
|
|
|
72
42
|
transform: rotate(359deg);
|
|
73
43
|
}
|
|
74
44
|
}
|
|
75
|
-
@-moz-keyframes
|
|
45
|
+
@-moz-keyframes recipient__shake___TGyPp {
|
|
76
46
|
10%, 90% {
|
|
77
47
|
transform: translate3d(-1px, 0, 0);
|
|
78
48
|
}
|
|
@@ -86,7 +56,7 @@
|
|
|
86
56
|
transform: translate3d(4px, 0, 0);
|
|
87
57
|
}
|
|
88
58
|
}
|
|
89
|
-
@-webkit-keyframes
|
|
59
|
+
@-webkit-keyframes recipient__shake___TGyPp {
|
|
90
60
|
10%, 90% {
|
|
91
61
|
transform: translate3d(-1px, 0, 0);
|
|
92
62
|
}
|
|
@@ -100,7 +70,7 @@
|
|
|
100
70
|
transform: translate3d(4px, 0, 0);
|
|
101
71
|
}
|
|
102
72
|
}
|
|
103
|
-
@-o-keyframes
|
|
73
|
+
@-o-keyframes recipient__shake___TGyPp {
|
|
104
74
|
10%, 90% {
|
|
105
75
|
transform: translate3d(-1px, 0, 0);
|
|
106
76
|
}
|
|
@@ -114,7 +84,7 @@
|
|
|
114
84
|
transform: translate3d(4px, 0, 0);
|
|
115
85
|
}
|
|
116
86
|
}
|
|
117
|
-
@keyframes
|
|
87
|
+
@keyframes recipient__shake___TGyPp {
|
|
118
88
|
10%, 90% {
|
|
119
89
|
transform: translate3d(-1px, 0, 0);
|
|
120
90
|
}
|
|
@@ -128,549 +98,114 @@
|
|
|
128
98
|
transform: translate3d(4px, 0, 0);
|
|
129
99
|
}
|
|
130
100
|
}
|
|
131
|
-
|
|
132
|
-
position: absolute !important;
|
|
133
|
-
border: 0 !important;
|
|
134
|
-
width: 0.063rem !important;
|
|
135
|
-
height: 0.063rem !important;
|
|
136
|
-
overflow: hidden !important;
|
|
137
|
-
padding: 0 !important;
|
|
138
|
-
white-space: nowrap !important;
|
|
139
|
-
clip: rect(0.063rem, 0.063rem, 0.063rem, 0.063rem) !important;
|
|
140
|
-
clip-path: inset(50%) !important;
|
|
141
|
-
}
|
|
142
|
-
.u-hide {
|
|
143
|
-
display: none !important;
|
|
144
|
-
visibility: hidden !important;
|
|
145
|
-
}
|
|
146
|
-
@media (max-width: 63.938rem) {
|
|
147
|
-
.u-hide--mob {
|
|
148
|
-
display: none !important;
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
@media (min-width: 64rem) {
|
|
152
|
-
.u-hide--tablet {
|
|
153
|
-
display: none !important;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
@media (min-width: 48.063rem) {
|
|
157
|
-
.u-hide--desk {
|
|
158
|
-
display: none !important;
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
.u-dn {
|
|
162
|
-
display: none;
|
|
163
|
-
}
|
|
164
|
-
.u-di {
|
|
165
|
-
display: inline;
|
|
166
|
-
}
|
|
167
|
-
.u-db {
|
|
168
|
-
display: block;
|
|
169
|
-
}
|
|
170
|
-
.u-dib {
|
|
171
|
-
display: inline-block;
|
|
172
|
-
}
|
|
173
|
-
.u-dit {
|
|
174
|
-
display: inline-table;
|
|
175
|
-
}
|
|
176
|
-
.u-dt {
|
|
177
|
-
display: table;
|
|
178
|
-
}
|
|
179
|
-
.u-dtc {
|
|
180
|
-
display: table-cell;
|
|
181
|
-
}
|
|
182
|
-
.u-dt-row {
|
|
183
|
-
display: table-row;
|
|
184
|
-
}
|
|
185
|
-
.u-dt-row-group {
|
|
186
|
-
display: table-row-group;
|
|
187
|
-
}
|
|
188
|
-
.u-dt-column {
|
|
189
|
-
display: table-column;
|
|
101
|
+
@media (pointer: coarse) {
|
|
190
102
|
}
|
|
191
|
-
|
|
192
|
-
|
|
103
|
+
:root {
|
|
104
|
+
--genericRecipientBackground: var(--slateGrey);
|
|
105
|
+
--genericRecipientColor: var(--white);
|
|
193
106
|
}
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
.u-di-t {
|
|
199
|
-
display: inline;
|
|
200
|
-
}
|
|
201
|
-
.u-db-t {
|
|
202
|
-
display: block;
|
|
203
|
-
}
|
|
204
|
-
.u-dib-t {
|
|
205
|
-
display: inline-block;
|
|
206
|
-
}
|
|
207
|
-
.u-dit-t {
|
|
208
|
-
display: inline-table;
|
|
209
|
-
}
|
|
210
|
-
.u-dt-t {
|
|
211
|
-
display: table;
|
|
212
|
-
}
|
|
213
|
-
.u-dtc-t {
|
|
214
|
-
display: table-cell;
|
|
215
|
-
}
|
|
216
|
-
.u-dt-row-t {
|
|
217
|
-
display: table-row;
|
|
218
|
-
}
|
|
219
|
-
.u-dt-row-group-t {
|
|
220
|
-
display: table-row-group;
|
|
221
|
-
}
|
|
222
|
-
.u-dt-column-t {
|
|
223
|
-
display: table-column;
|
|
224
|
-
}
|
|
225
|
-
.u-dt-column-group-t {
|
|
226
|
-
display: table-column-group;
|
|
227
|
-
}
|
|
107
|
+
.recipient__recipient___2DmZI {
|
|
108
|
+
display: flex;
|
|
109
|
+
flex-direction: row;
|
|
110
|
+
align-items: center;
|
|
228
111
|
}
|
|
229
112
|
@media (max-width: 48rem) {
|
|
230
|
-
.
|
|
231
|
-
|
|
232
|
-
}
|
|
233
|
-
.u-di-s {
|
|
234
|
-
display: inline;
|
|
235
|
-
}
|
|
236
|
-
.u-db-s {
|
|
237
|
-
display: block;
|
|
238
|
-
}
|
|
239
|
-
.u-dib-s {
|
|
240
|
-
display: inline-block;
|
|
241
|
-
}
|
|
242
|
-
.u-dit-s {
|
|
243
|
-
display: inline-table;
|
|
244
|
-
}
|
|
245
|
-
.u-dt-s {
|
|
246
|
-
display: table;
|
|
247
|
-
}
|
|
248
|
-
.u-dtc-s {
|
|
249
|
-
display: table-cell;
|
|
250
|
-
}
|
|
251
|
-
.u-dt-row-s {
|
|
252
|
-
display: table-row;
|
|
253
|
-
}
|
|
254
|
-
.u-dt-row-group-s {
|
|
255
|
-
display: table-row-group;
|
|
256
|
-
}
|
|
257
|
-
.u-dt-column-s {
|
|
258
|
-
display: table-column;
|
|
259
|
-
}
|
|
260
|
-
.u-dt-column-group-s {
|
|
261
|
-
display: table-column-group;
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
@media (max-width: 63.938rem) {
|
|
265
|
-
.u-dn-m {
|
|
266
|
-
display: none;
|
|
267
|
-
}
|
|
268
|
-
.u-di-m {
|
|
269
|
-
display: inline;
|
|
270
|
-
}
|
|
271
|
-
.u-db-m {
|
|
272
|
-
display: block;
|
|
273
|
-
}
|
|
274
|
-
.u-dib-m {
|
|
275
|
-
display: inline-block;
|
|
276
|
-
}
|
|
277
|
-
.u-dit-m {
|
|
278
|
-
display: inline-table;
|
|
279
|
-
}
|
|
280
|
-
.u-dt-m {
|
|
281
|
-
display: table;
|
|
282
|
-
}
|
|
283
|
-
.u-dtc-m {
|
|
284
|
-
display: table-cell;
|
|
285
|
-
}
|
|
286
|
-
.u-dt-row-m {
|
|
287
|
-
display: table-row;
|
|
288
|
-
}
|
|
289
|
-
.u-dt-row-group-m {
|
|
290
|
-
display: table-row-group;
|
|
291
|
-
}
|
|
292
|
-
.u-dt-column-m {
|
|
293
|
-
display: table-column;
|
|
294
|
-
}
|
|
295
|
-
.u-dt-column-group-m {
|
|
296
|
-
display: table-column-group;
|
|
113
|
+
.recipient__recipient___2DmZI {
|
|
114
|
+
align-items: flex-start;
|
|
297
115
|
}
|
|
298
116
|
}
|
|
299
|
-
.
|
|
300
|
-
|
|
301
|
-
}
|
|
302
|
-
.u-charcoalGrey {
|
|
303
|
-
color: var(--charcoalGrey) !important;
|
|
304
|
-
}
|
|
305
|
-
.u-coolGrey {
|
|
306
|
-
color: var(--coolGrey) !important;
|
|
307
|
-
}
|
|
308
|
-
.u-silver {
|
|
309
|
-
color: var(--silver) !important;
|
|
310
|
-
}
|
|
311
|
-
.u-slateGrey {
|
|
312
|
-
color: var(--slateGrey) !important;
|
|
313
|
-
}
|
|
314
|
-
.u-lightishPurple {
|
|
315
|
-
color: #b449e7 !important;
|
|
316
|
-
}
|
|
317
|
-
.u-dodgerBlue {
|
|
318
|
-
color: #297ef2 !important;
|
|
319
|
-
}
|
|
320
|
-
.u-overlay {
|
|
321
|
-
color: var(--overlay) !important;
|
|
322
|
-
}
|
|
323
|
-
.u-paleGrey {
|
|
324
|
-
color: var(--paleGrey) !important;
|
|
325
|
-
}
|
|
326
|
-
.u-monza {
|
|
327
|
-
color: #dd0505 !important;
|
|
328
|
-
}
|
|
329
|
-
.u-pomegranate {
|
|
330
|
-
color: #f52d2d !important;
|
|
331
|
-
}
|
|
332
|
-
.u-primaryBackgroundLight {
|
|
333
|
-
color: var(--primaryBackgroundLight) !important;
|
|
334
|
-
}
|
|
335
|
-
.u-primaryColor {
|
|
336
|
-
color: var(--primaryColor) !important;
|
|
337
|
-
}
|
|
338
|
-
.u-primaryColorLight {
|
|
339
|
-
color: var(--primaryColorLight) !important;
|
|
340
|
-
}
|
|
341
|
-
.u-primaryContrastTextColor {
|
|
342
|
-
color: var(--primaryContrastTextColor) !important;
|
|
343
|
-
}
|
|
344
|
-
.u-error {
|
|
345
|
-
color: var(--errorColor) !important;
|
|
346
|
-
}
|
|
347
|
-
.u-errorBackground {
|
|
348
|
-
color: var(--errorBackground) !important;
|
|
349
|
-
}
|
|
350
|
-
.u-success {
|
|
351
|
-
color: var(--successColor) !important;
|
|
352
|
-
}
|
|
353
|
-
.u-warning {
|
|
354
|
-
color: var(--warningColor) !important;
|
|
355
|
-
}
|
|
356
|
-
.u-info {
|
|
357
|
-
color: var(--infoColor) !important;
|
|
358
|
-
}
|
|
359
|
-
.u-weirdGreen {
|
|
360
|
-
color: #40de8e !important;
|
|
361
|
-
}
|
|
362
|
-
.u-white {
|
|
363
|
-
color: var(--white) !important;
|
|
364
|
-
}
|
|
365
|
-
.u-breakword {
|
|
366
|
-
word-break: break-word;
|
|
117
|
+
.recipient__recipients-list-light___Vq4op .recipient__recipient___2DmZI {
|
|
118
|
+
margin: 1rem 0;
|
|
367
119
|
}
|
|
368
|
-
.
|
|
369
|
-
|
|
370
|
-
overflow: hidden;
|
|
371
|
-
text-overflow: ellipsis;
|
|
120
|
+
.recipient__recipients-list-light___Vq4op + .recipient__recipient___2DmZI {
|
|
121
|
+
margin-top: 1rem;
|
|
372
122
|
}
|
|
373
|
-
.
|
|
123
|
+
.recipient__recipient-idents___3s7rw {
|
|
124
|
+
flex: 1 1 auto;
|
|
374
125
|
overflow: hidden;
|
|
375
126
|
text-overflow: ellipsis;
|
|
376
|
-
white-space: break-spaces;
|
|
377
|
-
}
|
|
378
|
-
@media (max-width: 30rem) {
|
|
379
|
-
.u-spacellipsis-t {
|
|
380
|
-
overflow: hidden;
|
|
381
|
-
text-overflow: ellipsis;
|
|
382
|
-
white-space: break-spaces;
|
|
383
|
-
}
|
|
384
|
-
}
|
|
385
|
-
@media (max-width: 48rem) {
|
|
386
|
-
.u-spacellipsis-s {
|
|
387
|
-
overflow: hidden;
|
|
388
|
-
text-overflow: ellipsis;
|
|
389
|
-
white-space: break-spaces;
|
|
390
|
-
}
|
|
391
|
-
}
|
|
392
|
-
@media (max-width: 63.938rem) {
|
|
393
|
-
.u-spacellipsis-m {
|
|
394
|
-
overflow: hidden;
|
|
395
|
-
text-overflow: ellipsis;
|
|
396
|
-
white-space: break-spaces;
|
|
397
|
-
}
|
|
398
|
-
}
|
|
399
|
-
.u-midellipsis {
|
|
400
|
-
display: flex;
|
|
401
|
-
flex-wrap: nowrap;
|
|
402
127
|
}
|
|
403
|
-
.
|
|
404
|
-
|
|
405
|
-
max-width: 50%;
|
|
406
|
-
overflow: hidden;
|
|
407
|
-
white-space: pre;
|
|
128
|
+
.recipient__recipient-status-icon___-liGw {
|
|
129
|
+
margin-right: 0.25rem;
|
|
408
130
|
}
|
|
409
|
-
.
|
|
131
|
+
.recipient__recipient-user___1THIU,
|
|
132
|
+
.recipient__recipient-details___2fZfc {
|
|
410
133
|
text-overflow: ellipsis;
|
|
134
|
+
overflow: hidden;
|
|
135
|
+
white-space: nowrap;
|
|
136
|
+
line-height: 1.3;
|
|
411
137
|
}
|
|
412
|
-
.
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
}
|
|
416
|
-
@supports (text-overflow: '[...]') {
|
|
417
|
-
.u-midellipsis > :first-child {
|
|
418
|
-
text-overflow: '[...]';
|
|
419
|
-
}
|
|
420
|
-
}
|
|
421
|
-
.u-link:link {
|
|
422
|
-
color: var(--linkColor) !important;
|
|
423
|
-
text-decoration: var(--linkTextDecoration) !important;
|
|
424
|
-
}
|
|
425
|
-
.u-link:visited,
|
|
426
|
-
.u-link:active,
|
|
427
|
-
.u-link:hover,
|
|
428
|
-
.u-link:focus {
|
|
429
|
-
color: var(--linkColorActive) !important;
|
|
430
|
-
}
|
|
431
|
-
.u-lh-tiny {
|
|
432
|
-
line-height: 1 !important;
|
|
433
|
-
}
|
|
434
|
-
.u-lh-xsmall {
|
|
435
|
-
line-height: 1.1 !important;
|
|
436
|
-
}
|
|
437
|
-
.u-lh-small {
|
|
438
|
-
line-height: 1.2 !important;
|
|
439
|
-
}
|
|
440
|
-
.u-lh-medium {
|
|
441
|
-
line-height: 1.3 !important;
|
|
442
|
-
}
|
|
443
|
-
.u-lh-large {
|
|
444
|
-
line-height: 1.4 !important;
|
|
445
|
-
}
|
|
446
|
-
.u-lh-xlarge {
|
|
447
|
-
line-height: 1.5 !important;
|
|
448
|
-
}
|
|
449
|
-
.u-fz-tiny {
|
|
450
|
-
font-size: 0.75rem !important;
|
|
451
|
-
line-height: 1.3 !important;
|
|
452
|
-
}
|
|
453
|
-
.u-fz-xsmall {
|
|
454
|
-
font-size: 0.813rem !important;
|
|
455
|
-
line-height: 1.4 !important;
|
|
456
|
-
}
|
|
457
|
-
.u-fz-small {
|
|
458
|
-
font-size: 0.875rem !important;
|
|
459
|
-
line-height: 1.4 !important;
|
|
460
|
-
}
|
|
461
|
-
.u-fz-medium {
|
|
462
|
-
font-size: 1rem !important;
|
|
463
|
-
line-height: 1.5 !important;
|
|
464
|
-
}
|
|
465
|
-
.u-fz-large {
|
|
466
|
-
font-size: 1.125rem !important;
|
|
467
|
-
line-height: 1.5 !important;
|
|
468
|
-
}
|
|
469
|
-
@media (max-width: 30rem) {
|
|
470
|
-
.u-fz-tiny-t {
|
|
471
|
-
font-size: 0.75rem !important;
|
|
472
|
-
line-height: 1.3 !important;
|
|
473
|
-
}
|
|
474
|
-
.u-fz-xsmall-t {
|
|
475
|
-
font-size: 0.813rem !important;
|
|
476
|
-
line-height: 1.4 !important;
|
|
477
|
-
}
|
|
478
|
-
.u-fz-small-t {
|
|
479
|
-
font-size: 0.875rem !important;
|
|
480
|
-
line-height: 1.4 !important;
|
|
481
|
-
}
|
|
482
|
-
.u-fz-medium-t {
|
|
483
|
-
font-size: 1rem !important;
|
|
484
|
-
line-height: 1.5 !important;
|
|
485
|
-
}
|
|
486
|
-
.u-fz-large-t {
|
|
487
|
-
font-size: 1.125rem !important;
|
|
488
|
-
line-height: 1.5 !important;
|
|
489
|
-
}
|
|
490
|
-
}
|
|
491
|
-
@media (max-width: 48rem) {
|
|
492
|
-
.u-fz-tiny-s {
|
|
493
|
-
font-size: 0.75rem !important;
|
|
494
|
-
line-height: 1.3 !important;
|
|
495
|
-
}
|
|
496
|
-
.u-fz-xsmall-s {
|
|
497
|
-
font-size: 0.813rem !important;
|
|
498
|
-
line-height: 1.4 !important;
|
|
499
|
-
}
|
|
500
|
-
.u-fz-small-s {
|
|
501
|
-
font-size: 0.875rem !important;
|
|
502
|
-
line-height: 1.4 !important;
|
|
503
|
-
}
|
|
504
|
-
.u-fz-medium-s {
|
|
505
|
-
font-size: 1rem !important;
|
|
506
|
-
line-height: 1.5 !important;
|
|
507
|
-
}
|
|
508
|
-
.u-fz-large-s {
|
|
509
|
-
font-size: 1.125rem !important;
|
|
510
|
-
line-height: 1.5 !important;
|
|
511
|
-
}
|
|
512
|
-
}
|
|
513
|
-
@media (max-width: 63.938rem) {
|
|
514
|
-
.u-fz-tiny-m {
|
|
515
|
-
font-size: 0.75rem !important;
|
|
516
|
-
line-height: 1.3 !important;
|
|
517
|
-
}
|
|
518
|
-
.u-fz-xsmall-m {
|
|
519
|
-
font-size: 0.813rem !important;
|
|
520
|
-
line-height: 1.4 !important;
|
|
521
|
-
}
|
|
522
|
-
.u-fz-small-m {
|
|
523
|
-
font-size: 0.875rem !important;
|
|
524
|
-
line-height: 1.4 !important;
|
|
525
|
-
}
|
|
526
|
-
.u-fz-medium-m {
|
|
527
|
-
font-size: 1rem !important;
|
|
528
|
-
line-height: 1.5 !important;
|
|
529
|
-
}
|
|
530
|
-
.u-fz-large-m {
|
|
531
|
-
font-size: 1.125rem !important;
|
|
532
|
-
line-height: 1.5 !important;
|
|
533
|
-
}
|
|
534
|
-
}
|
|
535
|
-
.u-ta-left {
|
|
536
|
-
text-align: left !important;
|
|
537
|
-
}
|
|
538
|
-
.u-ta-right {
|
|
539
|
-
text-align: right !important;
|
|
540
|
-
}
|
|
541
|
-
.u-ta-center {
|
|
542
|
-
text-align: center !important;
|
|
543
|
-
}
|
|
544
|
-
.u-ta-justify {
|
|
545
|
-
text-align: justify !important;
|
|
546
|
-
}
|
|
547
|
-
@media (max-width: 30rem) {
|
|
548
|
-
.u-ta-left-t {
|
|
549
|
-
text-align: left !important;
|
|
550
|
-
}
|
|
551
|
-
.u-ta-right-t {
|
|
552
|
-
text-align: right !important;
|
|
553
|
-
}
|
|
554
|
-
.u-ta-center-t {
|
|
555
|
-
text-align: center !important;
|
|
556
|
-
}
|
|
557
|
-
.u-ta-justify-t {
|
|
558
|
-
text-align: justify !important;
|
|
559
|
-
}
|
|
560
|
-
}
|
|
561
|
-
@media (max-width: 48rem) {
|
|
562
|
-
.u-ta-left-s {
|
|
563
|
-
text-align: left !important;
|
|
564
|
-
}
|
|
565
|
-
.u-ta-right-s {
|
|
566
|
-
text-align: right !important;
|
|
567
|
-
}
|
|
568
|
-
.u-ta-center-s {
|
|
569
|
-
text-align: center !important;
|
|
570
|
-
}
|
|
571
|
-
.u-ta-justify-s {
|
|
572
|
-
text-align: justify !important;
|
|
573
|
-
}
|
|
574
|
-
}
|
|
575
|
-
@media (max-width: 63.938rem) {
|
|
576
|
-
.u-ta-left-m {
|
|
577
|
-
text-align: left !important;
|
|
578
|
-
}
|
|
579
|
-
.u-ta-right-m {
|
|
580
|
-
text-align: right !important;
|
|
581
|
-
}
|
|
582
|
-
.u-ta-center-m {
|
|
583
|
-
text-align: center !important;
|
|
584
|
-
}
|
|
585
|
-
.u-ta-justify-m {
|
|
586
|
-
text-align: justify !important;
|
|
587
|
-
}
|
|
588
|
-
}
|
|
589
|
-
.u-fs-normal {
|
|
590
|
-
font-style: normal !important;
|
|
138
|
+
.recipient__recipient-user___1THIU {
|
|
139
|
+
font-size: 1rem;
|
|
140
|
+
font-weight: bold;
|
|
591
141
|
}
|
|
592
|
-
.
|
|
593
|
-
font-
|
|
142
|
+
.recipient__recipient-details___2fZfc {
|
|
143
|
+
font-size: 0.875rem;
|
|
144
|
+
color: var(--coolGrey);
|
|
594
145
|
}
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
.u-fs-italic-t {
|
|
600
|
-
font-style: italic !important;
|
|
601
|
-
}
|
|
146
|
+
.recipient__avatar___2LnIV {
|
|
147
|
+
display: flex;
|
|
148
|
+
flex-direction: row;
|
|
149
|
+
align-items: center;
|
|
602
150
|
}
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
font-style: normal !important;
|
|
606
|
-
}
|
|
607
|
-
.u-fs-italic-s {
|
|
608
|
-
font-style: italic !important;
|
|
609
|
-
}
|
|
151
|
+
.recipient__avatar___2LnIV .recipient__recipient-user___1THIU {
|
|
152
|
+
font-size: 1.125rem;
|
|
610
153
|
}
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
.u-fs-italic-m {
|
|
616
|
-
font-style: italic !important;
|
|
617
|
-
}
|
|
154
|
+
.recipient__link-recipient-icon-circle___3ZTU- {
|
|
155
|
+
border: 1px solid var(--borderMainColor);
|
|
156
|
+
background-color: unset;
|
|
157
|
+
color: unset;
|
|
618
158
|
}
|
|
619
|
-
.
|
|
620
|
-
|
|
159
|
+
.recipient__recipients-avatars___1npjD {
|
|
160
|
+
display: inline-flex;
|
|
161
|
+
flex-direction: row-reverse;
|
|
162
|
+
margin-right: 0.5rem;
|
|
621
163
|
}
|
|
622
|
-
.
|
|
623
|
-
|
|
164
|
+
.recipient__recipients-avatars___1npjD.recipient__--interactive___160Bp {
|
|
165
|
+
cursor: pointer;
|
|
624
166
|
}
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
}
|
|
167
|
+
.recipient__recipients-avatars--link___1qeON,
|
|
168
|
+
.recipient__recipients-avatars--plusX___3-6_l,
|
|
169
|
+
.recipient__recipients-avatars--avatar___-owjC {
|
|
170
|
+
border-width: 2px;
|
|
171
|
+
border-style: solid;
|
|
172
|
+
border-color: var(--white);
|
|
632
173
|
}
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
font-weight: normal;
|
|
636
|
-
}
|
|
637
|
-
.u-fw-bold-s {
|
|
638
|
-
font-weight: bold;
|
|
639
|
-
}
|
|
174
|
+
.recipient__recipients-avatars--link___1qeON {
|
|
175
|
+
background-color: var(--genericRecipientBackground);
|
|
640
176
|
}
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
font-weight: normal;
|
|
644
|
-
}
|
|
645
|
-
.u-fw-bold-m {
|
|
646
|
-
font-weight: bold;
|
|
647
|
-
}
|
|
177
|
+
.recipient__recipients-avatars--link___1qeON svg {
|
|
178
|
+
fill: var(--genericRecipientColor);
|
|
648
179
|
}
|
|
649
|
-
|
|
180
|
+
.recipient__recipients-avatars--plusX___3-6_l,
|
|
181
|
+
.recipient__recipients-avatars--avatar___-owjC {
|
|
182
|
+
margin-right: -0.6rem;
|
|
650
183
|
}
|
|
651
|
-
|
|
184
|
+
/* imported from share.styl */
|
|
185
|
+
|
|
186
|
+
.share__share-modal-content___1iqEq .share__coz-form___1ICST {
|
|
652
187
|
margin: 1rem 0 0.5rem;
|
|
653
188
|
}
|
|
654
|
-
.share__share-modal-
|
|
655
|
-
.share__share-modal-
|
|
189
|
+
.share__share-modal-content___1iqEq .share__coz-form___1ICST a,
|
|
190
|
+
.share__share-modal-content___1iqEq .share__coz-form___1ICST a:visited {
|
|
656
191
|
color: var(--dodgerBlue);
|
|
657
192
|
text-decoration: none;
|
|
658
193
|
}
|
|
659
|
-
.share__share-modal-
|
|
660
|
-
.share__share-modal-
|
|
194
|
+
.share__share-modal-content___1iqEq .share__coz-form___1ICST a:hover,
|
|
195
|
+
.share__share-modal-content___1iqEq .share__coz-form___1ICST a:active {
|
|
661
196
|
text-decoration: underline;
|
|
662
197
|
}
|
|
663
|
-
.share__share-modal-
|
|
664
|
-
.share__share-modal-
|
|
198
|
+
.share__share-modal-content___1iqEq .share__coz-form___1ICST,
|
|
199
|
+
.share__share-modal-content___1iqEq .share__coz-form-group___VsQp7 {
|
|
665
200
|
position: relative;
|
|
666
201
|
display: flex;
|
|
667
202
|
flex-direction: column;
|
|
668
203
|
}
|
|
669
|
-
.share__share-modal-
|
|
204
|
+
.share__share-modal-content___1iqEq .share__coz-form-desc___2mYN4 {
|
|
670
205
|
margin-bottom: 0.5rem;
|
|
671
206
|
line-height: 1.5;
|
|
672
207
|
}
|
|
673
|
-
.share__share-modal-
|
|
208
|
+
.share__share-modal-content___1iqEq .share__coz-form-label___bogBw {
|
|
674
209
|
display: block;
|
|
675
210
|
text-transform: uppercase;
|
|
676
211
|
color: var(--coolGrey);
|
|
@@ -678,49 +213,49 @@
|
|
|
678
213
|
padding: 0.563rem 0;
|
|
679
214
|
margin-top: 1rem;
|
|
680
215
|
}
|
|
681
|
-
.share__share-modal-
|
|
216
|
+
.share__share-modal-content___1iqEq .share__coz-form-label--error___3YPkf {
|
|
682
217
|
display: none;
|
|
683
218
|
color: var(--pomegranate);
|
|
684
219
|
}
|
|
685
|
-
.share__share-modal-
|
|
220
|
+
.share__share-modal-content___1iqEq .share__coz-form-errors___2xYRz {
|
|
686
221
|
color: var(--pomegranate);
|
|
687
222
|
}
|
|
688
|
-
.share__share-modal-
|
|
223
|
+
.share__share-modal-content___1iqEq .share__coz-form-controls___H8kGc {
|
|
689
224
|
display: flex;
|
|
690
225
|
flex-direction: row;
|
|
691
226
|
justify-content: flex-end;
|
|
692
227
|
margin: 1rem 0 0.5rem;
|
|
693
228
|
}
|
|
694
|
-
.share__share-modal-
|
|
695
|
-
.share__share-modal-
|
|
696
|
-
.share__share-modal-
|
|
229
|
+
.share__share-modal-content___1iqEq .share__coz-form-controls___H8kGc a,
|
|
230
|
+
.share__share-modal-content___1iqEq .share__coz-form-controls___H8kGc button,
|
|
231
|
+
.share__share-modal-content___1iqEq .share__coz-form-controls___H8kGc input[type=submit] {
|
|
697
232
|
flex: 0 0 auto;
|
|
698
233
|
margin: 0 0 0.5rem 0.5rem;
|
|
699
234
|
}
|
|
700
|
-
.share__share-modal-
|
|
701
|
-
.share__share-modal-
|
|
702
|
-
.share__share-modal-
|
|
235
|
+
.share__share-modal-content___1iqEq .share__coz-form-controls--full___1oQXF a,
|
|
236
|
+
.share__share-modal-content___1iqEq .share__coz-form-controls--full___1oQXF button,
|
|
237
|
+
.share__share-modal-content___1iqEq .share__coz-form-controls--full___1oQXF input[type=submit] {
|
|
703
238
|
flex: 0 0 100%;
|
|
704
239
|
margin-bottom: 0.5rem;
|
|
705
240
|
}
|
|
706
|
-
.share__share-modal-
|
|
241
|
+
.share__share-modal-content___1iqEq .share__coz-form-controls--dispatch___1zIxt {
|
|
707
242
|
justify-content: space-between;
|
|
708
243
|
}
|
|
709
|
-
.share__share-modal-
|
|
710
|
-
.share__share-modal-
|
|
711
|
-
.share__share-modal-
|
|
244
|
+
.share__share-modal-content___1iqEq .share__coz-form-controls--dispatch___1zIxt a,
|
|
245
|
+
.share__share-modal-content___1iqEq .share__coz-form-controls--dispatch___1zIxt button,
|
|
246
|
+
.share__share-modal-content___1iqEq .share__coz-form-controls--dispatch___1zIxt input[type=submit] {
|
|
712
247
|
flex: 0 0 49%;
|
|
713
248
|
margin: 0 0 0.5rem;
|
|
714
249
|
}
|
|
715
|
-
.share__share-modal-
|
|
716
|
-
.share__share-modal-
|
|
717
|
-
.share__share-modal-
|
|
250
|
+
.share__share-modal-content___1iqEq .share__coz-form-controls--dispatch___1zIxt a:last-child,
|
|
251
|
+
.share__share-modal-content___1iqEq .share__coz-form-controls--dispatch___1zIxt button:last-child,
|
|
252
|
+
.share__share-modal-content___1iqEq .share__coz-form-controls--dispatch___1zIxt input[type=submit]:last-child {
|
|
718
253
|
margin-left: auto;
|
|
719
254
|
}
|
|
720
|
-
.share__share-modal-
|
|
721
|
-
.share__share-modal-
|
|
722
|
-
.share__share-modal-
|
|
723
|
-
.share__share-modal-
|
|
255
|
+
.share__share-modal-content___1iqEq input[type=text],
|
|
256
|
+
.share__share-modal-content___1iqEq input[type=password],
|
|
257
|
+
.share__share-modal-content___1iqEq input[type=email],
|
|
258
|
+
.share__share-modal-content___1iqEq input[type=url] {
|
|
724
259
|
display: inline-block;
|
|
725
260
|
padding: 0.875rem 0.75rem 0.75rem 0.875rem;
|
|
726
261
|
box-sizing: border-box;
|
|
@@ -729,523 +264,99 @@
|
|
|
729
264
|
border: 0.063rem solid var(--dividerColor);
|
|
730
265
|
color: var(--black);
|
|
731
266
|
}
|
|
732
|
-
.share__share-modal-
|
|
733
|
-
.share__share-modal-
|
|
734
|
-
.share__share-modal-
|
|
735
|
-
.share__share-modal-
|
|
267
|
+
.share__share-modal-content___1iqEq input[type=text]::placeholder,
|
|
268
|
+
.share__share-modal-content___1iqEq input[type=password]::placeholder,
|
|
269
|
+
.share__share-modal-content___1iqEq input[type=email]::placeholder,
|
|
270
|
+
.share__share-modal-content___1iqEq input[type=url]::placeholder {
|
|
736
271
|
color: var(--coolGrey);
|
|
737
272
|
font-size: 1rem;
|
|
738
273
|
}
|
|
739
|
-
.share__share-modal-
|
|
740
|
-
.share__share-modal-
|
|
741
|
-
.share__share-modal-
|
|
742
|
-
.share__share-modal-
|
|
274
|
+
.share__share-modal-content___1iqEq input[type=text]:focus,
|
|
275
|
+
.share__share-modal-content___1iqEq input[type=password]:focus,
|
|
276
|
+
.share__share-modal-content___1iqEq input[type=email]:focus,
|
|
277
|
+
.share__share-modal-content___1iqEq input[type=url]:focus {
|
|
743
278
|
border: 0.063rem solid var(--dodgerBlue);
|
|
744
279
|
outline: 0;
|
|
745
280
|
}
|
|
746
|
-
.share__share-modal-
|
|
747
|
-
.share__share-modal-
|
|
748
|
-
.share__share-modal-
|
|
749
|
-
.share__share-modal-
|
|
281
|
+
.share__share-modal-content___1iqEq input[type=text]:hover,
|
|
282
|
+
.share__share-modal-content___1iqEq input[type=password]:hover,
|
|
283
|
+
.share__share-modal-content___1iqEq input[type=email]:hover,
|
|
284
|
+
.share__share-modal-content___1iqEq input[type=url]:hover {
|
|
750
285
|
border: 0.063rem solid var(--coolGrey);
|
|
751
286
|
}
|
|
752
|
-
.share__share-modal-
|
|
753
|
-
.share__share-modal-
|
|
754
|
-
.share__share-modal-
|
|
755
|
-
.share__share-modal-
|
|
287
|
+
.share__share-modal-content___1iqEq input[type=text].share__error___pwqPO,
|
|
288
|
+
.share__share-modal-content___1iqEq input[type=password].share__error___pwqPO,
|
|
289
|
+
.share__share-modal-content___1iqEq input[type=email].share__error___pwqPO,
|
|
290
|
+
.share__share-modal-content___1iqEq input[type=url].share__error___pwqPO {
|
|
756
291
|
border: 0.063rem solid var(--pomegranate);
|
|
757
292
|
}
|
|
758
293
|
@media (max-width: 48rem) {
|
|
759
294
|
}
|
|
760
295
|
@media (max-width: 48rem) {
|
|
761
296
|
}
|
|
762
|
-
|
|
763
|
-
--invertedBackgroundColor: #297ef2;
|
|
764
|
-
--invertedContrastTextColor: #fff;
|
|
765
|
-
}
|
|
766
|
-
.share__CozyTheme--inverted___2pLD2 {
|
|
767
|
-
--primaryTextColor: #fff;
|
|
768
|
-
--secondaryTextColor: rgba(255,255,255,0.64);
|
|
769
|
-
--disabledTextColor: rgba(255,255,255,0.4);
|
|
770
|
-
--hintTextColor: rgba(255,255,255,0.4);
|
|
771
|
-
--iconTextColor: #fff;
|
|
772
|
-
--actionColorActive: #fff;
|
|
773
|
-
--actionColorHover: rgba(255,255,255,0.08);
|
|
774
|
-
--actionColorSelected: rgba(255,255,255,0.16);
|
|
775
|
-
--actionColorDisabled: rgba(255,255,255,0.32);
|
|
776
|
-
--actionColorDisabledBackground: rgba(255,255,255,0.12);
|
|
777
|
-
--actionColorFocus: rgba(255,255,255,0.24);
|
|
778
|
-
--actionColorGhost: rgba(255,255,255,0.08);
|
|
779
|
-
--actionColorHoverGhost: rgba(255,255,255,0.16);
|
|
780
|
-
--dividerColor: rgba(255,255,255,0.16);
|
|
781
|
-
--borderMainColor: rgba(255,255,255,0.24);
|
|
782
|
-
--borderDisabledColor: rgba(255,255,255,0.12);
|
|
783
|
-
--borderGhostColor: rgba(255,255,255,0.48);
|
|
784
|
-
--borderGhostDisabledColor: rgba(255,255,255,0.24);
|
|
785
|
-
--paperBackgroundColor: #297ef2;
|
|
786
|
-
--defaultBackgroundColor: #579eff;
|
|
787
|
-
--contrastBackgroundColor: rgba(255,255,255,0.12);
|
|
788
|
-
--primaryColorLight: #fff;
|
|
789
|
-
--primaryColor: #fff;
|
|
790
|
-
--primaryColorDark: #eaf3ff;
|
|
791
|
-
--primaryContrastTextColor: #297ef2;
|
|
792
|
-
--secondaryColorLight: #f8eefd;
|
|
793
|
-
--secondaryColor: #ecd7f7;
|
|
794
|
-
--secondaryColorDark: #deb8f0;
|
|
795
|
-
--secondaryContrastTextColor: rgba(29,33,42,0.9);
|
|
796
|
-
--errorColorLight: #ffecec;
|
|
797
|
-
--errorColor: #ffd3d3;
|
|
798
|
-
--errorColorDark: #ffb9b9;
|
|
799
|
-
--errorColorContrastText: rgba(29,33,42,0.9);
|
|
800
|
-
--errorBackground: #d31f1f;
|
|
801
|
-
--warningColorLight: #fff3dd;
|
|
802
|
-
--warningColor: #ffe4b5;
|
|
803
|
-
--warningColorDark: #ffd58b;
|
|
804
|
-
--warningColorContrastText: rgba(29,33,42,0.9);
|
|
805
|
-
--successColorLight: #e3ffe7;
|
|
806
|
-
--successColor: #c0f4c6;
|
|
807
|
-
--successColorDark: #97eca1;
|
|
808
|
-
--successColorContrastText: rgba(29,33,42,0.9);
|
|
809
|
-
--infoColorLight: #d4feff;
|
|
810
|
-
--infoColor: #affdff;
|
|
811
|
-
--infoColorDark: #86f5f7;
|
|
812
|
-
--infoColorContrastText: rgba(29,33,42,0.9);
|
|
813
|
-
/*
|
|
814
|
-
The CSS variables below are historic and we should strive not to
|
|
815
|
-
use them. Prefer to use directly semantic colors above.
|
|
816
|
-
*/
|
|
817
|
-
--iconColor: currentColor;
|
|
818
|
-
--textIconColor: #fff;
|
|
819
|
-
--actionMenuIconColor: #fff;
|
|
820
|
-
--barIconColor: #fff;
|
|
821
|
-
--barIconColorDisabled: rgba(255,255,255,0.88);
|
|
822
|
-
--spinnerColor: #fff;
|
|
823
|
-
--linkColor: #fff;
|
|
824
|
-
--linkColorActive: #fff;
|
|
825
|
-
--linkTextDecoration: underline;
|
|
826
|
-
--regularButtonPrimaryColor: #fff;
|
|
827
|
-
--regularButtonSecondaryColor: #fff;
|
|
828
|
-
--regularButtonActiveColor: rgba(255,255,255,0.88);
|
|
829
|
-
--regularButtonConstrastColor: #297ef2;
|
|
830
|
-
--secondaryButtonPrimaryColor: #297ef2;
|
|
831
|
-
--secondaryButtonSecondaryColor: #fff;
|
|
832
|
-
--secondaryButtonActiveColor: rgba(255,255,255,0.24);
|
|
833
|
-
--secondaryButtonContrastColor: #fff;
|
|
834
|
-
--dividerColor2: rgba(255,255,255,0.16);
|
|
835
|
-
}
|
|
836
|
-
html {
|
|
837
|
-
/*
|
|
838
|
-
Grey
|
|
839
|
-
|
|
840
|
-
Stylus: grey0 - #FFFFFF, CSS: var(--grey0)
|
|
841
|
-
Stylus: grey50 - #f9fafb, CSS: var(--grey50)
|
|
842
|
-
Stylus: grey100 - #f4f5f6, CSS: var(--grey100)
|
|
843
|
-
Stylus: grey200 - #eceff1, CSS: var(--grey200)
|
|
844
|
-
Stylus: grey300 - #dde0e3, CSS: var(--grey300)
|
|
845
|
-
Stylus: grey400 - #bfc3c7, CSS: var(--grey400)
|
|
846
|
-
Stylus: grey500 - #9da2a6, CSS: var(--grey500)
|
|
847
|
-
Stylus: grey600 - #7c8086, CSS: var(--grey600)
|
|
848
|
-
Stylus: grey700 - #5d6169, CSS: var(--grey700)
|
|
849
|
-
Stylus: grey800 - #3e424a, CSS: var(--grey800)
|
|
850
|
-
Stylus: grey900 - #1d212a, CSS: var(--grey900)
|
|
851
|
-
Stylus: greyA100 - #d3d6d8, CSS: var(--greyA100)
|
|
852
|
-
Stylus: greyA200 - #a7abaf, CSS: var(--greyA200)
|
|
853
|
-
Stylus: greyA400 - #2c3039, CSS: var(--greyA400)
|
|
854
|
-
Stylus: greyA700 - #5d6169, CSS: var(--greyA700)
|
|
855
|
-
Stylus: white - #FFFFFF, CSS: var(--white)
|
|
856
|
-
Stylus: paleGrey - #F5F6F7, CSS: var(--paleGrey)
|
|
857
|
-
Stylus: silver - #D6D8Da, CSS: var(--silver)
|
|
858
|
-
Stylus: coolGrey - #95999D, CSS: var(--coolGrey)
|
|
859
|
-
Stylus: slateGrey - #5D6165, CSS: var(--slateGrey)
|
|
860
|
-
Stylus: charcoalGrey - #32363F, CSS: var(--charcoalGrey)
|
|
861
|
-
Stylus: black - #000000, CSS: var(--black)
|
|
862
|
-
|
|
863
|
-
Styleguide Settings.colors.grey
|
|
864
|
-
*/
|
|
865
|
-
--grey0: #fff;
|
|
866
|
-
--grey50: #f9fafb;
|
|
867
|
-
--grey100: #f4f5f6;
|
|
868
|
-
--grey200: #eceff1;
|
|
869
|
-
--grey300: #dde0e3;
|
|
870
|
-
--grey400: #bfc3c7;
|
|
871
|
-
--grey500: #9da2a6;
|
|
872
|
-
--grey600: #7c8086;
|
|
873
|
-
--grey700: #5d6169;
|
|
874
|
-
--grey800: #3e424a;
|
|
875
|
-
--grey900: #1d212a;
|
|
876
|
-
--greyA100: #d3d6d8;
|
|
877
|
-
--greyA200: #a7abaf;
|
|
878
|
-
--greyA400: #2c3039;
|
|
879
|
-
--greyA700: #5d6169;
|
|
880
|
-
--white: #fff;
|
|
881
|
-
--paleGrey: #f5f6f7;
|
|
882
|
-
--silver: #d6d8da;
|
|
883
|
-
--coolGrey: #95999d;
|
|
884
|
-
--slateGrey: #5d6165;
|
|
885
|
-
--charcoalGrey: #32363f;
|
|
886
|
-
--black: #000;
|
|
887
|
-
--overlay: rgba(50,54,63,0.5);
|
|
888
|
-
/*
|
|
889
|
-
Blue
|
|
890
|
-
|
|
891
|
-
Stylus: zircon - #F5FAFF, CSS: var(--zircon)
|
|
892
|
-
Stylus: dodgerBlue - #297EF2, CSS: var(--dodgerBlue)
|
|
893
|
-
Stylus: scienceBlue - #0B61D6, CSS: var(--scienceBlue)
|
|
894
|
-
|
|
895
|
-
Styleguide Settings.colors.blue
|
|
896
|
-
*/
|
|
897
|
-
--zircon: #f5faff;
|
|
898
|
-
--dodgerBlue: #297ef2;
|
|
899
|
-
--scienceBlue: #0b61d6;
|
|
900
|
-
/*
|
|
901
|
-
Green
|
|
902
|
-
|
|
903
|
-
Stylus: weirdGreen - #40DE8E, CSS: var(--weirdGreen)
|
|
904
|
-
Stylus: emerald - #35CE68, CSS: var(--emerald)
|
|
905
|
-
Stylus: malachite - #08b442, CSS: var(--malachite)
|
|
906
|
-
|
|
907
|
-
Styleguide Settings.colors.green
|
|
908
|
-
*/
|
|
909
|
-
--weirdGreen: #40de8e;
|
|
910
|
-
--emerald: #35ce68;
|
|
911
|
-
--malachite: #08b442;
|
|
912
|
-
/*
|
|
913
|
-
Orange
|
|
914
|
-
|
|
915
|
-
Stylus: mango - #FF962F, CSS: var(--mango)
|
|
916
|
-
|
|
917
|
-
Styleguide Settings.colors.orange
|
|
918
|
-
*/
|
|
919
|
-
--mango: #ff962f;
|
|
920
|
-
/*
|
|
921
|
-
Red
|
|
922
|
-
|
|
923
|
-
Stylus: chablis - #FFF2F2, CSS: var(--chablis)
|
|
924
|
-
Stylus: yourPink - #FDCBCB, CSS: var(--yourPink)
|
|
925
|
-
Stylus: fuchsia - #FC4C83, CSS: var(--fuchsia)
|
|
926
|
-
Stylus: pomegranate - #F52D2D, CSS: var(--pomegranate)
|
|
927
|
-
Stylus: monza - #DD0505, CSS: var(--monza)
|
|
928
|
-
|
|
929
|
-
Styleguide Settings.colors.red
|
|
930
|
-
*/
|
|
931
|
-
--chablis: #fff2f2;
|
|
932
|
-
--yourPink: #fdcbcb;
|
|
933
|
-
--fuchsia: #fc4c83;
|
|
934
|
-
--pomegranate: #f52d2d;
|
|
935
|
-
--monza: #dd0505;
|
|
936
|
-
}
|
|
937
|
-
html,
|
|
938
|
-
.share__CozyTheme--normal___qSFyr {
|
|
939
|
-
/*
|
|
940
|
-
Primary colors
|
|
941
|
-
|
|
942
|
-
Stylus: primaryColorLightest - #B3D3FF, CSS: var(--primaryColorLightest)
|
|
943
|
-
Stylus: primaryColorLight - #5C9DF5, CSS: var(--primaryColorLight)
|
|
944
|
-
Stylus: primaryColor - #297EF2, CSS: var(--primaryColor)
|
|
945
|
-
Stylus: primaryColorDark - #0B61D6, CSS: var(--primaryColorDark)
|
|
946
|
-
Stylus: primaryContrastTextColor - #FFF, CSS: var(--primaryContrastTextColor)
|
|
947
|
-
|
|
948
|
-
Styleguide Settings.theme.primary
|
|
949
|
-
*/
|
|
950
|
-
--primaryColorLightest: #b3d3ff;
|
|
951
|
-
--primaryColorLight: #579eff;
|
|
952
|
-
--primaryColor: #297ef2;
|
|
953
|
-
--primaryColorDark: #0f5cc7;
|
|
954
|
-
--primaryContrastTextColor: #fff;
|
|
955
|
-
/*
|
|
956
|
-
Secondary colors
|
|
957
|
-
|
|
958
|
-
Stylus: secondaryColorLightest - #FFD3D3, CSS: var(--secondaryColorLightest)
|
|
959
|
-
Stylus: secondaryColorLight - #F96B6B, CSS: var(--secondaryColorLight)
|
|
960
|
-
Stylus: secondaryColor - #EA3F3F, CSS: var(--secondaryColor)
|
|
961
|
-
Stylus: secondaryColorDark - #D31F1F, CSS: var(--secondaryColorDark)
|
|
962
|
-
Stylus: secondaryContrastTextColor - #FFF, CSS: var(--secondaryContrastTextColor)
|
|
963
|
-
|
|
964
|
-
Styleguide Settings.theme.secondary
|
|
965
|
-
*/
|
|
966
|
-
--secondaryColorLightest: #ffd3d3;
|
|
967
|
-
--secondaryColorLight: #f96b6b;
|
|
968
|
-
--secondaryColor: #ea3f3f;
|
|
969
|
-
--secondaryColorDark: #d31f1f;
|
|
970
|
-
--secondaryContrastTextColor: #fff;
|
|
971
|
-
/*
|
|
972
|
-
Background colors
|
|
973
|
-
|
|
974
|
-
Stylus: primaryBackgroundLight - #F7FAFF, CSS: var(--primaryBackgroundLight)
|
|
975
|
-
Stylus: paperBackgroundColor - #FFF, CSS: var(--paperBackgroundColor)
|
|
976
|
-
Stylus: defaultBackgroundColor - #F4F5F6, CSS: var(--defaultBackgroundColor)
|
|
977
|
-
Stylus: contrastBackgroundColor - #F5F5F6, CSS: var(--contrastBackgroundColor)
|
|
978
|
-
|
|
979
|
-
Styleguide Settings.theme.background
|
|
980
|
-
*/
|
|
981
|
-
--primaryBackgroundLight: #f7faff;
|
|
982
|
-
--paperBackgroundColor: #fff;
|
|
983
|
-
--defaultBackgroundColor: #f4f5f6;
|
|
984
|
-
--contrastBackgroundColor: rgba(29,33,42,0.048);
|
|
985
|
-
/*
|
|
986
|
-
Text colors
|
|
987
|
-
|
|
988
|
-
These colors use the alpha layer. Be careful to use the semantic variable.
|
|
989
|
-
Hexadecimal colors are here only as an example on a white background.
|
|
990
|
-
|
|
991
|
-
Stylus: primaryTextColor - #383B43, CSS: var(--primaryTextColor)
|
|
992
|
-
Stylus: secondaryTextColor - #6F7177, CSS: var(--secondaryTextColor)
|
|
993
|
-
Stylus: disabledTextColor - #BEBFC1, CSS: var(--disabledTextColor)
|
|
994
|
-
Stylus: hintTextColor - #BEBFC1, CSS: var(--hintTextColor)
|
|
995
|
-
Stylus: iconTextColor - #66686D, CSS: var(--iconTextColor)
|
|
996
|
-
|
|
997
|
-
Styleguide Settings.theme.text
|
|
998
|
-
*/
|
|
999
|
-
--primaryTextColor: rgba(29,33,42,0.9);
|
|
1000
|
-
--secondaryTextColor: rgba(29,33,42,0.64);
|
|
1001
|
-
--disabledTextColor: rgba(29,33,42,0.32);
|
|
1002
|
-
--hintTextColor: rgba(29,33,42,0.32);
|
|
1003
|
-
--iconTextColor: rgba(29,33,42,0.72);
|
|
1004
|
-
/*
|
|
1005
|
-
Action colors
|
|
1006
|
-
|
|
1007
|
-
These colors use the alpha layer. Be careful to use the semantic variable.
|
|
1008
|
-
Hexadecimal colors are here only as an example on a white background.
|
|
1009
|
-
|
|
1010
|
-
Stylus: actionColorActive - #8A8C90, CSS: var(--actionColorActive)
|
|
1011
|
-
Stylus: actionColorHover - #F7F7F7, CSS: var(--actionColorHover)
|
|
1012
|
-
Stylus: actionColorSelected - #EFEFF0, CSS: var(--actionColorSelected)
|
|
1013
|
-
Stylus: actionColorDisabled - #CFCFD1, CSS: var(--actionColorDisabled)
|
|
1014
|
-
Stylus: actionColorDisabledBackground - #E7E7E8, CSS: var(--actionColorDisabledBackground)
|
|
1015
|
-
Stylus: actionColorFocus - #E7E7E8, CSS: var(--actionColorFocus)
|
|
1016
|
-
Stylus: actionColorGhost - #EFEFF0, CSS: var(--actionColorGhost)
|
|
1017
|
-
Stylus: actionColorHoverGhost - #DFE0E0, CSS: var(--actionColorHoverGhost)
|
|
1018
|
-
|
|
1019
|
-
Styleguide Settings.theme.action
|
|
1020
|
-
*/
|
|
1021
|
-
--actionColorActive: rgba(29,33,42,0.56);
|
|
1022
|
-
--actionColorHover: rgba(29,33,42,0.04);
|
|
1023
|
-
--actionColorSelected: rgba(29,33,42,0.08);
|
|
1024
|
-
--actionColorDisabled: rgba(29,33,42,0.24);
|
|
1025
|
-
--actionColorDisabledBackground: rgba(29,33,42,0.12);
|
|
1026
|
-
--actionColorFocus: rgba(29,33,42,0.12);
|
|
1027
|
-
--actionColorGhost: rgba(29,33,42,0.08);
|
|
1028
|
-
--actionColorHoverGhost: rgba(29,33,42,0.16);
|
|
1029
|
-
/*
|
|
1030
|
-
Border colors
|
|
1031
|
-
|
|
1032
|
-
These colors use the alpha layer. Be careful to use the semantic variable.
|
|
1033
|
-
Hexadecimal colors are here only as an example on a white background.
|
|
1034
|
-
|
|
1035
|
-
Stylus: borderMainColor - #DFE0E0, CSS: var(--borderMainColor)
|
|
1036
|
-
Stylus: borderDisabledColor - #EFEFF0, CSS: var(--borderDisabledColor)
|
|
1037
|
-
Stylus: borderGhostColor - #9D9EA1, CSS: var(--borderGhostColor)
|
|
1038
|
-
Stylus: borderGhostDisabledColor - #DFE0E0, CSS: var(--borderGhostDisabledColor)
|
|
1039
|
-
|
|
1040
|
-
Styleguide Settings.theme.border
|
|
1041
|
-
*/
|
|
1042
|
-
--borderMainColor: rgba(29,33,42,0.16);
|
|
1043
|
-
--borderDisabledColor: rgba(29,33,42,0.08);
|
|
1044
|
-
--borderGhostColor: rgba(29,33,42,0.48);
|
|
1045
|
-
--borderGhostDisabledColor: rgba(29,33,42,0.16);
|
|
1046
|
-
/*
|
|
1047
|
-
Divider colors
|
|
1048
|
-
|
|
1049
|
-
These colors use the alpha layer. Be careful to use the semantic variable.
|
|
1050
|
-
Hexadecimal colors are here only as an example on a white background.
|
|
1051
|
-
|
|
1052
|
-
Stylus: dividerColor - #E3E4E5, CSS: var(--dividerColor)
|
|
1053
|
-
|
|
1054
|
-
Styleguide Settings.theme.divider
|
|
1055
|
-
*/
|
|
1056
|
-
--dividerColor: rgba(29,33,42,0.12);
|
|
1057
|
-
/*
|
|
1058
|
-
Success colors
|
|
1059
|
-
|
|
1060
|
-
Stylus: successColorLight - #38C949, CSS: var(--successColorLight)
|
|
1061
|
-
Stylus: successColor - #09AB1B, CSS: var(--successColor)
|
|
1062
|
-
Stylus: successColorDark - #018711, CSS: var(--successColorDark)
|
|
1063
|
-
Stylus: successColorContrastText - #FFF, CSS: var(--successColorContrastText)
|
|
1064
|
-
|
|
1065
|
-
Styleguide Settings.theme.success
|
|
1066
|
-
*/
|
|
1067
|
-
--successColorLight: #38c949;
|
|
1068
|
-
--successColor: #09ab1b;
|
|
1069
|
-
--successColorDark: #018711;
|
|
1070
|
-
--successColorContrastText: #fff;
|
|
1071
|
-
/*
|
|
1072
|
-
Warning colors
|
|
1073
|
-
|
|
1074
|
-
Stylus: warningColorLight - #EFA82F, CSS: var(--warningColorLight)
|
|
1075
|
-
Stylus: warningColor - #CB8100, CSS: var(--warningColor)
|
|
1076
|
-
Stylus: warningColorDark - #986100, CSS: var(--warningColorDark)
|
|
1077
|
-
Stylus: warningColorContrastText - #FFF, CSS: var(--warningColorContrastText)
|
|
1078
|
-
|
|
1079
|
-
Styleguide Settings.theme.warning
|
|
1080
|
-
*/
|
|
1081
|
-
--warningColorLight: #efa82d;
|
|
1082
|
-
--warningColor: #cb8100;
|
|
1083
|
-
--warningColorDark: #986100;
|
|
1084
|
-
--warningColorContrastText: #fff;
|
|
1085
|
-
/*
|
|
1086
|
-
Error colors
|
|
1087
|
-
|
|
1088
|
-
Stylus: errorColorLightest - #FFECEC, CSS: var(--errorColorLightest)
|
|
1089
|
-
Stylus: errorColorLight - #F96B6B, CSS: var(--errorColorLight)
|
|
1090
|
-
Stylus: errorColor - #EA3F3F, CSS: var(--errorColor)
|
|
1091
|
-
Stylus: errorColorDark - #D31F1F, CSS: var(--errorColorDark)
|
|
1092
|
-
Stylus: errorBackground - #FFECEC, CSS: var(--errorBackground)
|
|
1093
|
-
Stylus: errorColorContrastText - #FFF, CSS: var(--errorColorContrastText)
|
|
1094
|
-
|
|
1095
|
-
Styleguide Settings.theme.error
|
|
1096
|
-
*/
|
|
1097
|
-
--errorColorLightest: #ffecec;
|
|
1098
|
-
--errorColorLight: #f96b6b;
|
|
1099
|
-
--errorColor: #ea3f3f;
|
|
1100
|
-
--errorColorDark: #d31f1f;
|
|
1101
|
-
--errorBackground: #ffecec;
|
|
1102
|
-
--errorColorContrastText: #fff;
|
|
1103
|
-
/*
|
|
1104
|
-
Info colors
|
|
1105
|
-
|
|
1106
|
-
Stylus: infoColorLight - #0EC4C7, CSS: var(--infoColorLight)
|
|
1107
|
-
Stylus: infoColor - #009FA2, CSS: var(--infoColor)
|
|
1108
|
-
Stylus: infoColorDark - #007578, CSS: var(--infoColorDark)
|
|
1109
|
-
Stylus: infoColorContrastText - #FFF, CSS: var(--infoColorContrastText)
|
|
1110
|
-
|
|
1111
|
-
Styleguide Settings.theme.info
|
|
1112
|
-
*/
|
|
1113
|
-
--infoColorLight: #0ec4c7;
|
|
1114
|
-
--infoColor: #009fa2;
|
|
1115
|
-
--infoColorDark: #007578;
|
|
1116
|
-
--infoColorContrastText: #fff;
|
|
1117
|
-
/*
|
|
1118
|
-
Shadow colors
|
|
1119
|
-
*/
|
|
1120
|
-
--shadow0: none;
|
|
1121
|
-
--shadow1: 0px 2px 4px 0px rgba(29,33,42,0.08), 0px 4px 16px 0px rgba(29,33,42,0.06), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1122
|
-
--shadow2: 0px 3px 5px 0px rgba(29,33,42,0.09), 0px 4px 17px 0px rgba(29,33,42,0.07), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1123
|
-
--shadow3: 0px 3px 5px -1px rgba(29,33,42,0.09), 0px 5px 19px 1px rgba(29,33,42,0.08), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1124
|
-
--shadow4: 0px 3px 6px -1px rgba(29,33,42,0.1), 0px 5px 20px 1px rgba(29,33,42,0.08), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1125
|
-
--shadow5: 0px 4px 6px -1px rgba(29,33,42,0.11), 0px 5px 22px 1px rgba(29,33,42,0.09), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1126
|
-
--shadow6: 0px 4px 7px -2px rgba(29,33,42,0.11), 0px 6px 23px 2px rgba(29,33,42,0.1), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1127
|
-
--shadow7: 0px 5px 7px -2px rgba(29,33,42,0.12), 0px 6px 24px 2px rgba(29,33,42,0.11), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1128
|
-
--shadow8: 0px 5px 8px -2px rgba(29,33,42,0.13), 0px 6px 26px 2px rgba(29,33,42,0.11), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1129
|
-
--shadow9: 0px 5px 8px -3px rgba(29,33,42,0.14), 0px 7px 27px 3px rgba(29,33,42,0.12), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1130
|
-
--shadow10: 0px 6px 9px -3px rgba(29,33,42,0.14), 0px 7px 29px 3px rgba(29,33,42,0.13), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1131
|
-
--shadow11: 0px 6px 9px -3px rgba(29,33,42,0.15), 0px 7px 30px 3px rgba(29,33,42,0.14), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1132
|
-
--shadow12: 0px 7px 10px -4px rgba(29,33,42,0.16), 0px 8px 31px 4px rgba(29,33,42,0.15), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1133
|
-
--shadow13: 0px 7px 10px -4px rgba(29,33,42,0.16), 0px 8px 33px 4px rgba(29,33,42,0.15), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1134
|
-
--shadow14: 0px 8px 11px -5px rgba(29,33,42,0.17), 0px 9px 34px 5px rgba(29,33,42,0.16), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1135
|
-
--shadow15: 0px 8px 11px -5px rgba(29,33,42,0.18), 0px 9px 35px 5px rgba(29,33,42,0.17), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1136
|
-
--shadow16: 0px 9px 12px -5px rgba(29,33,42,0.18), 0px 9px 37px 5px rgba(29,33,42,0.18), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1137
|
-
--shadow17: 0px 9px 12px -6px rgba(29,33,42,0.19), 0px 10px 38px 6px rgba(29,33,42,0.19), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1138
|
-
--shadow18: 0px 9px 13px -6px rgba(29,33,42,0.2), 0px 10px 40px 6px rgba(29,33,42,0.19), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1139
|
-
--shadow19: 0px 10px 13px -6px rgba(29,33,42,0.21), 0px 10px 41px 6px rgba(29,33,42,0.2), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1140
|
-
--shadow20: 0px 10px 14px -7px rgba(29,33,42,0.21), 0px 11px 42px 7px rgba(29,33,42,0.21), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1141
|
-
--shadow21: 0px 11px 14px -7px rgba(29,33,42,0.22), 0px 11px 44px 7px rgba(29,33,42,0.22), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1142
|
-
--shadow22: 0px 11px 15px -7px rgba(29,33,42,0.23), 0px 11px 45px 7px rgba(29,33,42,0.22), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1143
|
-
--shadow23: 0px 12px 15px -8px rgba(29,33,42,0.23), 0px 12px 47px 8px rgba(29,33,42,0.23), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1144
|
-
--shadow24: 0px 12px 16px -8px rgba(29,33,42,0.24), 0px 12px 48px 8px rgba(29,33,42,0.24), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
1145
|
-
--shadow25: 0px 1px 4px rgba(29,33,42,0.04);
|
|
1146
|
-
/*
|
|
1147
|
-
---------------------------------------------------------------------
|
|
1148
|
-
*/
|
|
1149
|
-
/*
|
|
1150
|
-
The CSS variables below are historic and we should strive not to
|
|
1151
|
-
use them. Prefer to use directly semantic colors above.
|
|
1152
|
-
*/
|
|
1153
|
-
--spinnerColor: var(--primaryColor);
|
|
1154
|
-
--linkColor: var(--primaryColor);
|
|
1155
|
-
--linkTextDecoration: none;
|
|
1156
|
-
--linkColorActive: var(--primaryColorDark);
|
|
1157
|
-
--invertedTabsActiveTextColor: var(--primaryContrastTextColor);
|
|
1158
|
-
--invertedTabsInactiveTextColor: var(--primaryContrastTextColor);
|
|
1159
|
-
--invertedTabsIndicatorColor: var(--primaryContrastTextColor);
|
|
1160
|
-
--invertedTabsBackgroundColor: var(--primaryColor);
|
|
1161
|
-
--regularButtonPrimaryColor: var(--primaryColor);
|
|
1162
|
-
--regularButtonSecondaryColor: var(--primaryColor);
|
|
1163
|
-
--regularButtonActiveColor: var(--primaryColorDark);
|
|
1164
|
-
--regularButtonConstrastColor: var(--primaryContrastTextColor);
|
|
1165
|
-
--secondaryButtonPrimaryColor: #fff;
|
|
1166
|
-
--secondaryButtonSecondaryColor: var(--silver);
|
|
1167
|
-
--secondaryButtonActiveColor: var(--silver);
|
|
1168
|
-
--secondaryButtonContrastColor: var(--black);
|
|
1169
|
-
--dividerColor2: var(--coolGrey);
|
|
1170
|
-
--iconColor: currentColor;
|
|
1171
|
-
--textIconColor: var(--charcoalGrey);
|
|
1172
|
-
--actionMenuIconColor: var(--slateGrey);
|
|
1173
|
-
--neutralBackground: var(--paleGrey);
|
|
1174
|
-
--buttonTextTransform: uppercase;
|
|
1175
|
-
--buttonBorderRadius: 0.125rem;
|
|
1176
|
-
--navTextColor: var(--slateGrey);
|
|
1177
|
-
--navTextActiveColor: var(--slateGrey);
|
|
1178
|
-
--navTextHoverColor: var(--charcoalGrey);
|
|
1179
|
-
--alertErrorColor: #fff;
|
|
1180
|
-
--alertErrorBackgroundColor: var(--errorColor);
|
|
1181
|
-
--alertSuccessColor: #fff;
|
|
1182
|
-
--alertSuccessBackgroundColor: var(--successColor);
|
|
1183
|
-
--alertInfoColor: #fff;
|
|
1184
|
-
--alertInfoBackgroundColor: var(--slateGrey);
|
|
1185
|
-
}
|
|
1186
|
-
.share__share-byemail-onlybylink___C_7b_ {
|
|
297
|
+
.share__share-byemail-onlybylink___29W-t {
|
|
1187
298
|
background: var(--paleGrey);
|
|
1188
299
|
padding: 1rem 2rem;
|
|
1189
300
|
margin: -1.5rem -2rem 1rem;
|
|
1190
301
|
}
|
|
1191
302
|
@media (max-width: 48rem) {
|
|
1192
|
-
.share__share-byemail-
|
|
303
|
+
.share__share-byemail-onlybylink___29W-t {
|
|
1193
304
|
padding: 1rem;
|
|
1194
305
|
margin: -1.5rem -1rem 1rem;
|
|
1195
306
|
}
|
|
1196
307
|
}
|
|
1197
|
-
.share__share-modal-
|
|
308
|
+
.share__share-modal-content___1iqEq {
|
|
1198
309
|
min-height: 15.625rem;
|
|
1199
310
|
}
|
|
1200
|
-
.share__share-modal-
|
|
311
|
+
.share__share-modal-content___1iqEq .share__coz-form-group___VsQp7 {
|
|
1201
312
|
flex-shrink: 0;
|
|
1202
313
|
}
|
|
1203
|
-
.share__aligned-dropdown-
|
|
314
|
+
.share__aligned-dropdown-button___3crgG {
|
|
1204
315
|
margin-right: -1rem;
|
|
1205
316
|
}
|
|
1206
|
-
.share__coz-form-
|
|
317
|
+
.share__coz-form-group___VsQp7 {
|
|
1207
318
|
margin: 0;
|
|
1208
319
|
}
|
|
1209
|
-
.share__coz-form-
|
|
320
|
+
.share__coz-form-group___VsQp7 h3 {
|
|
1210
321
|
margin: 0.3rem 0 0;
|
|
1211
322
|
}
|
|
1212
|
-
.share__coz-form-
|
|
323
|
+
.share__coz-form-group___VsQp7 h4 {
|
|
1213
324
|
margin: 0 0 0.3rem 0;
|
|
1214
325
|
}
|
|
1215
|
-
.share__coz-form-
|
|
326
|
+
.share__coz-form-group___VsQp7 .share__coz-form___1ICST {
|
|
1216
327
|
margin: 0;
|
|
1217
328
|
}
|
|
1218
|
-
.share__coz-form-
|
|
329
|
+
.share__coz-form-group___VsQp7 .share__coz-form-desc___2mYN4 {
|
|
1219
330
|
color: var(--coolGrey);
|
|
1220
331
|
}
|
|
1221
|
-
.share__share-type-
|
|
332
|
+
.share__share-type-control___1YoRr {
|
|
1222
333
|
display: flex;
|
|
1223
334
|
flex-direction: row;
|
|
1224
335
|
justify-content: space-between;
|
|
1225
336
|
padding: 0.5rem 0 0;
|
|
1226
337
|
}
|
|
1227
|
-
.share__share-type-
|
|
338
|
+
.share__share-type-control___1YoRr .share__select-wrapper___3XBKC {
|
|
1228
339
|
flex: 0 0 49%;
|
|
1229
340
|
position: relative;
|
|
1230
341
|
}
|
|
1231
|
-
.share__share-type-
|
|
342
|
+
.share__share-type-control___1YoRr .share__select-wrapper___3XBKC .share__select-option___3Jp8_ {
|
|
1232
343
|
padding: 0.5rem 1.5rem 0.5rem 3rem;
|
|
1233
344
|
position: relative;
|
|
1234
345
|
}
|
|
1235
|
-
.share__share-type-
|
|
346
|
+
.share__share-type-control___1YoRr .share__select-wrapper___3XBKC .share__select-option___3Jp8_ svg {
|
|
1236
347
|
position: absolute;
|
|
1237
348
|
left: 1rem;
|
|
1238
349
|
top: 1rem;
|
|
1239
350
|
}
|
|
1240
|
-
.share__share-type-
|
|
351
|
+
.share__share-type-control___1YoRr .share__select-wrapper___3XBKC .share__select-option-label___1BWz_ {
|
|
1241
352
|
line-height: 2;
|
|
1242
353
|
}
|
|
1243
|
-
.share__share-type-
|
|
354
|
+
.share__share-type-control___1YoRr .share__select-wrapper___3XBKC .share__select-option-desc___3jOnr {
|
|
1244
355
|
line-height: 1.5;
|
|
1245
356
|
font-size: 0.8125rem;
|
|
1246
357
|
color: var(--coolGrey);
|
|
1247
358
|
}
|
|
1248
|
-
.share__share-type-
|
|
359
|
+
.share__share-type-control___1YoRr button {
|
|
1249
360
|
flex: 0 0 49%;
|
|
1250
361
|
margin: 0;
|
|
1251
362
|
}
|
|
@@ -1255,1609 +366,39 @@ html,
|
|
|
1255
366
|
input[type=text] {
|
|
1256
367
|
width: 100%;
|
|
1257
368
|
}
|
|
1258
|
-
.share__share-details-
|
|
1259
|
-
.share__share-details-
|
|
369
|
+
.share__share-details-created___z3nvO,
|
|
370
|
+
.share__share-details-perm___3HjxK {
|
|
1260
371
|
font-size: 1rem;
|
|
1261
372
|
margin: 0.5rem 0 0.5rem 3.5rem;
|
|
1262
373
|
padding-left: 1.5rem;
|
|
1263
374
|
background-position: 0 center;
|
|
1264
375
|
background-repeat: no-repeat;
|
|
1265
376
|
}
|
|
1266
|
-
.share__share-details-
|
|
377
|
+
.share__share-details-created___z3nvO {
|
|
1267
378
|
background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTZweCIgaGVpZ2h0PSIxNnB4IiB2aWV3Qm94PSIwIDAgMTYgMTYiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZGVmcz48L2RlZnM+CiAgICA8ZyBpZD0iMTZweCIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIyNC4wMDAwMDAsIC0xOTIuMDAwMDAwKSI+CiAgICAgICAgPGcgaWQ9InNsaWNlcyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzIuMDAwMDAwLCAzMi4wMDAwMDApIj48L2c+CiAgICAgICAgPHBhdGggZD0iTTIzNywxOTMgTDI0MCwxOTMgTDI0MCwxOTUgTDIyNCwxOTUgTDIyNCwxOTMgTDIyNywxOTMgTDIyNywxOTIgTDIyOSwxOTIgTDIyOSwxOTMgTDIzNSwxOTMgTDIzNSwxOTIgTDIzNywxOTIgTDIzNywxOTMgWiBNMjI0LDE5NiBMMjQwLDE5NiBMMjQwLDIwNi45OTc1MjcgQzI0MCwyMDcuNTUxMTc3IDIzOS41NTUzNjksMjA4IDIzOC45OTkxMjgsMjA4IEwyMjUuMDAwODcyLDIwOCBDMjI0LjQ0ODEwNiwyMDggMjI0LDIwNy41NDQyMzkgMjI0LDIwNi45OTc1MjcgTDIyNCwxOTYgWiBNMjI2LDE5OCBMMjI2LDIwNiBMMjM4LDIwNiBMMjM4LDE5OCBMMjI2LDE5OCBaIE0yMzIsMjAxIEwyMzcsMjAxIEwyMzcsMjA1IEwyMzIsMjA1IEwyMzIsMjAxIFoiIGlkPSJjYWxlbmRhciIgZmlsbD0iIzk1OTk5RCI+PC9wYXRoPgogICAgPC9nPgo8L3N2Zz4=");
|
|
1268
379
|
}
|
|
1269
|
-
.share__share-details-
|
|
380
|
+
.share__share-details-perm___3HjxK {
|
|
1270
381
|
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8cGF0aCBmaWxsPSIjOTU5OTlEIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMDEuNSw5OS41IEwxOTIsMTA5LjAyNTM5MSBMMTkyLDExMiBMMTk1LjAzNzcyLDExMiBMMjA0LjUsMTAyLjUgTDIwMS41LDk5LjUgWiBNMjA2LjkxMjE1NCw5Ni45MTIxNTQxIEMyMDYuMTMyMjQzLDk2LjEzMjI0MjkgMjA0Ljg2OTE0NCw5Ni4xMzA4NTU2IDIwNC4wODkyNjQsOTYuOTEwNzM2MSBMMjAzLDk4IEwyMDYuMDMwNzYyLDEwMSBMMjA3LjA5MjI3MSw5OS45MjUyNjYzIEMyMDcuODY5NzM4LDk5LjEzODExMzQgMjA3Ljg2Mzc3Nyw5Ny44NjM3NzcyIDIwNy4wODc4NDYsOTcuMDg3ODQ1OSBMMjA2LjkxMjE1NCw5Ni45MTIxNTQxIFogTTE5OSwxMTAgTDIwNC45OTcwNzEsMTEwIEMyMDUuNTUwOTczLDExMCAyMDYsMTEwLjQ0Mzg2NSAyMDYsMTExIEMyMDYsMTExLjU1MjI4NSAyMDUuNTUzNjg5LDExMiAyMDUuMDAyNDU1LDExMiBMMTk3LDExMiBMMTk5LDExMCBaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTkyIC05NikiLz4KPC9zdmc+Cg==");
|
|
1271
382
|
margin-bottom: 0.2rem;
|
|
1272
383
|
}
|
|
1273
|
-
.share__share-details-perm-
|
|
384
|
+
.share__share-details-perm-desc___3HyHu {
|
|
1274
385
|
font-size: 0.875rem;
|
|
1275
386
|
margin: 0 0 0.5rem 3.5rem;
|
|
1276
387
|
padding-left: 1.5rem;
|
|
1277
388
|
line-height: 1.5;
|
|
1278
389
|
color: var(--coolGrey);
|
|
1279
390
|
}
|
|
1280
|
-
/* imported from
|
|
1281
|
-
|
|
1282
|
-
.CozyPassFingerprintDialogContent__cozy-pass-fingerprint-modal__fingerprint___2O7dO {
|
|
1283
|
-
padding: 16px;
|
|
1284
|
-
margin: 24px 0;
|
|
1285
|
-
text-align: center;
|
|
1286
|
-
}
|
|
1287
|
-
.CozyPassFingerprintDialogContent__cozy-pass-fingerprint-modal__fingerprint___2O7dO p {
|
|
1288
|
-
color: var(--secondaryColor);
|
|
1289
|
-
}
|
|
1290
|
-
/*
|
|
1291
|
-
imported from recipient.styl
|
|
1292
|
-
*/
|
|
1293
|
-
|
|
1294
|
-
@-moz-keyframes recipient__spin___3_Uja {
|
|
1295
|
-
from {
|
|
1296
|
-
transform: rotate(0deg);
|
|
1297
|
-
}
|
|
1298
|
-
to {
|
|
1299
|
-
transform: rotate(359deg);
|
|
1300
|
-
}
|
|
1301
|
-
}
|
|
1302
|
-
@-webkit-keyframes recipient__spin___3_Uja {
|
|
1303
|
-
from {
|
|
1304
|
-
transform: rotate(0deg);
|
|
1305
|
-
}
|
|
1306
|
-
to {
|
|
1307
|
-
transform: rotate(359deg);
|
|
1308
|
-
}
|
|
1309
|
-
}
|
|
1310
|
-
@-o-keyframes recipient__spin___3_Uja {
|
|
1311
|
-
from {
|
|
1312
|
-
transform: rotate(0deg);
|
|
1313
|
-
}
|
|
1314
|
-
to {
|
|
1315
|
-
transform: rotate(359deg);
|
|
1316
|
-
}
|
|
1317
|
-
}
|
|
1318
|
-
@keyframes recipient__spin___3_Uja {
|
|
1319
|
-
from {
|
|
1320
|
-
transform: rotate(0deg);
|
|
1321
|
-
}
|
|
1322
|
-
to {
|
|
1323
|
-
transform: rotate(359deg);
|
|
1324
|
-
}
|
|
1325
|
-
}
|
|
1326
|
-
@-moz-keyframes recipient__shake___TrWC0 {
|
|
1327
|
-
10%, 90% {
|
|
1328
|
-
transform: translate3d(-1px, 0, 0);
|
|
1329
|
-
}
|
|
1330
|
-
20%, 80% {
|
|
1331
|
-
transform: translate3d(2px, 0, 0);
|
|
1332
|
-
}
|
|
1333
|
-
30%, 50%, 70% {
|
|
1334
|
-
transform: translate3d(-4px, 0, 0);
|
|
1335
|
-
}
|
|
1336
|
-
40%, 60% {
|
|
1337
|
-
transform: translate3d(4px, 0, 0);
|
|
1338
|
-
}
|
|
1339
|
-
}
|
|
1340
|
-
@-webkit-keyframes recipient__shake___TrWC0 {
|
|
1341
|
-
10%, 90% {
|
|
1342
|
-
transform: translate3d(-1px, 0, 0);
|
|
1343
|
-
}
|
|
1344
|
-
20%, 80% {
|
|
1345
|
-
transform: translate3d(2px, 0, 0);
|
|
1346
|
-
}
|
|
1347
|
-
30%, 50%, 70% {
|
|
1348
|
-
transform: translate3d(-4px, 0, 0);
|
|
1349
|
-
}
|
|
1350
|
-
40%, 60% {
|
|
1351
|
-
transform: translate3d(4px, 0, 0);
|
|
1352
|
-
}
|
|
1353
|
-
}
|
|
1354
|
-
@-o-keyframes recipient__shake___TrWC0 {
|
|
1355
|
-
10%, 90% {
|
|
1356
|
-
transform: translate3d(-1px, 0, 0);
|
|
1357
|
-
}
|
|
1358
|
-
20%, 80% {
|
|
1359
|
-
transform: translate3d(2px, 0, 0);
|
|
1360
|
-
}
|
|
1361
|
-
30%, 50%, 70% {
|
|
1362
|
-
transform: translate3d(-4px, 0, 0);
|
|
1363
|
-
}
|
|
1364
|
-
40%, 60% {
|
|
1365
|
-
transform: translate3d(4px, 0, 0);
|
|
1366
|
-
}
|
|
1367
|
-
}
|
|
1368
|
-
@keyframes recipient__shake___TrWC0 {
|
|
1369
|
-
10%, 90% {
|
|
1370
|
-
transform: translate3d(-1px, 0, 0);
|
|
1371
|
-
}
|
|
1372
|
-
20%, 80% {
|
|
1373
|
-
transform: translate3d(2px, 0, 0);
|
|
1374
|
-
}
|
|
1375
|
-
30%, 50%, 70% {
|
|
1376
|
-
transform: translate3d(-4px, 0, 0);
|
|
1377
|
-
}
|
|
1378
|
-
40%, 60% {
|
|
1379
|
-
transform: translate3d(4px, 0, 0);
|
|
1380
|
-
}
|
|
1381
|
-
}
|
|
1382
|
-
.u-visuallyhidden {
|
|
1383
|
-
position: absolute !important;
|
|
1384
|
-
border: 0 !important;
|
|
1385
|
-
width: 0.063rem !important;
|
|
1386
|
-
height: 0.063rem !important;
|
|
1387
|
-
overflow: hidden !important;
|
|
1388
|
-
padding: 0 !important;
|
|
1389
|
-
white-space: nowrap !important;
|
|
1390
|
-
clip: rect(0.063rem, 0.063rem, 0.063rem, 0.063rem) !important;
|
|
1391
|
-
clip-path: inset(50%) !important;
|
|
1392
|
-
}
|
|
1393
|
-
.u-hide {
|
|
1394
|
-
display: none !important;
|
|
1395
|
-
visibility: hidden !important;
|
|
1396
|
-
}
|
|
1397
|
-
@media (max-width: 63.938rem) {
|
|
1398
|
-
.u-hide--mob {
|
|
1399
|
-
display: none !important;
|
|
1400
|
-
}
|
|
1401
|
-
}
|
|
1402
|
-
@media (min-width: 64rem) {
|
|
1403
|
-
.u-hide--tablet {
|
|
1404
|
-
display: none !important;
|
|
1405
|
-
}
|
|
1406
|
-
}
|
|
1407
|
-
@media (min-width: 48.063rem) {
|
|
1408
|
-
.u-hide--desk {
|
|
1409
|
-
display: none !important;
|
|
1410
|
-
}
|
|
1411
|
-
}
|
|
1412
|
-
.u-dn {
|
|
1413
|
-
display: none;
|
|
1414
|
-
}
|
|
1415
|
-
.u-di {
|
|
1416
|
-
display: inline;
|
|
1417
|
-
}
|
|
1418
|
-
.u-db {
|
|
1419
|
-
display: block;
|
|
1420
|
-
}
|
|
1421
|
-
.u-dib {
|
|
1422
|
-
display: inline-block;
|
|
1423
|
-
}
|
|
1424
|
-
.u-dit {
|
|
1425
|
-
display: inline-table;
|
|
1426
|
-
}
|
|
1427
|
-
.u-dt {
|
|
1428
|
-
display: table;
|
|
1429
|
-
}
|
|
1430
|
-
.u-dtc {
|
|
1431
|
-
display: table-cell;
|
|
1432
|
-
}
|
|
1433
|
-
.u-dt-row {
|
|
1434
|
-
display: table-row;
|
|
1435
|
-
}
|
|
1436
|
-
.u-dt-row-group {
|
|
1437
|
-
display: table-row-group;
|
|
1438
|
-
}
|
|
1439
|
-
.u-dt-column {
|
|
1440
|
-
display: table-column;
|
|
1441
|
-
}
|
|
1442
|
-
.u-dt-column-group {
|
|
1443
|
-
display: table-column-group;
|
|
1444
|
-
}
|
|
1445
|
-
@media (max-width: 30rem) {
|
|
1446
|
-
.u-dn-t {
|
|
1447
|
-
display: none;
|
|
1448
|
-
}
|
|
1449
|
-
.u-di-t {
|
|
1450
|
-
display: inline;
|
|
1451
|
-
}
|
|
1452
|
-
.u-db-t {
|
|
1453
|
-
display: block;
|
|
1454
|
-
}
|
|
1455
|
-
.u-dib-t {
|
|
1456
|
-
display: inline-block;
|
|
1457
|
-
}
|
|
1458
|
-
.u-dit-t {
|
|
1459
|
-
display: inline-table;
|
|
1460
|
-
}
|
|
1461
|
-
.u-dt-t {
|
|
1462
|
-
display: table;
|
|
1463
|
-
}
|
|
1464
|
-
.u-dtc-t {
|
|
1465
|
-
display: table-cell;
|
|
1466
|
-
}
|
|
1467
|
-
.u-dt-row-t {
|
|
1468
|
-
display: table-row;
|
|
1469
|
-
}
|
|
1470
|
-
.u-dt-row-group-t {
|
|
1471
|
-
display: table-row-group;
|
|
1472
|
-
}
|
|
1473
|
-
.u-dt-column-t {
|
|
1474
|
-
display: table-column;
|
|
1475
|
-
}
|
|
1476
|
-
.u-dt-column-group-t {
|
|
1477
|
-
display: table-column-group;
|
|
1478
|
-
}
|
|
1479
|
-
}
|
|
1480
|
-
@media (max-width: 48rem) {
|
|
1481
|
-
.u-dn-s {
|
|
1482
|
-
display: none;
|
|
1483
|
-
}
|
|
1484
|
-
.u-di-s {
|
|
1485
|
-
display: inline;
|
|
1486
|
-
}
|
|
1487
|
-
.u-db-s {
|
|
1488
|
-
display: block;
|
|
1489
|
-
}
|
|
1490
|
-
.u-dib-s {
|
|
1491
|
-
display: inline-block;
|
|
1492
|
-
}
|
|
1493
|
-
.u-dit-s {
|
|
1494
|
-
display: inline-table;
|
|
1495
|
-
}
|
|
1496
|
-
.u-dt-s {
|
|
1497
|
-
display: table;
|
|
1498
|
-
}
|
|
1499
|
-
.u-dtc-s {
|
|
1500
|
-
display: table-cell;
|
|
1501
|
-
}
|
|
1502
|
-
.u-dt-row-s {
|
|
1503
|
-
display: table-row;
|
|
1504
|
-
}
|
|
1505
|
-
.u-dt-row-group-s {
|
|
1506
|
-
display: table-row-group;
|
|
1507
|
-
}
|
|
1508
|
-
.u-dt-column-s {
|
|
1509
|
-
display: table-column;
|
|
1510
|
-
}
|
|
1511
|
-
.u-dt-column-group-s {
|
|
1512
|
-
display: table-column-group;
|
|
1513
|
-
}
|
|
1514
|
-
}
|
|
1515
|
-
@media (max-width: 63.938rem) {
|
|
1516
|
-
.u-dn-m {
|
|
1517
|
-
display: none;
|
|
1518
|
-
}
|
|
1519
|
-
.u-di-m {
|
|
1520
|
-
display: inline;
|
|
1521
|
-
}
|
|
1522
|
-
.u-db-m {
|
|
1523
|
-
display: block;
|
|
1524
|
-
}
|
|
1525
|
-
.u-dib-m {
|
|
1526
|
-
display: inline-block;
|
|
1527
|
-
}
|
|
1528
|
-
.u-dit-m {
|
|
1529
|
-
display: inline-table;
|
|
1530
|
-
}
|
|
1531
|
-
.u-dt-m {
|
|
1532
|
-
display: table;
|
|
1533
|
-
}
|
|
1534
|
-
.u-dtc-m {
|
|
1535
|
-
display: table-cell;
|
|
1536
|
-
}
|
|
1537
|
-
.u-dt-row-m {
|
|
1538
|
-
display: table-row;
|
|
1539
|
-
}
|
|
1540
|
-
.u-dt-row-group-m {
|
|
1541
|
-
display: table-row-group;
|
|
1542
|
-
}
|
|
1543
|
-
.u-dt-column-m {
|
|
1544
|
-
display: table-column;
|
|
1545
|
-
}
|
|
1546
|
-
.u-dt-column-group-m {
|
|
1547
|
-
display: table-column-group;
|
|
1548
|
-
}
|
|
1549
|
-
}
|
|
1550
|
-
.u-black {
|
|
1551
|
-
color: var(--black) !important;
|
|
1552
|
-
}
|
|
1553
|
-
.u-charcoalGrey {
|
|
1554
|
-
color: var(--charcoalGrey) !important;
|
|
1555
|
-
}
|
|
1556
|
-
.u-coolGrey {
|
|
1557
|
-
color: var(--coolGrey) !important;
|
|
1558
|
-
}
|
|
1559
|
-
.u-silver {
|
|
1560
|
-
color: var(--silver) !important;
|
|
1561
|
-
}
|
|
1562
|
-
.u-slateGrey {
|
|
1563
|
-
color: var(--slateGrey) !important;
|
|
1564
|
-
}
|
|
1565
|
-
.u-lightishPurple {
|
|
1566
|
-
color: #b449e7 !important;
|
|
1567
|
-
}
|
|
1568
|
-
.u-dodgerBlue {
|
|
1569
|
-
color: #297ef2 !important;
|
|
1570
|
-
}
|
|
1571
|
-
.u-overlay {
|
|
1572
|
-
color: var(--overlay) !important;
|
|
1573
|
-
}
|
|
1574
|
-
.u-paleGrey {
|
|
1575
|
-
color: var(--paleGrey) !important;
|
|
1576
|
-
}
|
|
1577
|
-
.u-monza {
|
|
1578
|
-
color: #dd0505 !important;
|
|
1579
|
-
}
|
|
1580
|
-
.u-pomegranate {
|
|
1581
|
-
color: #f52d2d !important;
|
|
1582
|
-
}
|
|
1583
|
-
.u-primaryBackgroundLight {
|
|
1584
|
-
color: var(--primaryBackgroundLight) !important;
|
|
1585
|
-
}
|
|
1586
|
-
.u-primaryColor {
|
|
1587
|
-
color: var(--primaryColor) !important;
|
|
1588
|
-
}
|
|
1589
|
-
.u-primaryColorLight {
|
|
1590
|
-
color: var(--primaryColorLight) !important;
|
|
1591
|
-
}
|
|
1592
|
-
.u-primaryContrastTextColor {
|
|
1593
|
-
color: var(--primaryContrastTextColor) !important;
|
|
1594
|
-
}
|
|
1595
|
-
.u-error {
|
|
1596
|
-
color: var(--errorColor) !important;
|
|
1597
|
-
}
|
|
1598
|
-
.u-errorBackground {
|
|
1599
|
-
color: var(--errorBackground) !important;
|
|
1600
|
-
}
|
|
1601
|
-
.u-success {
|
|
1602
|
-
color: var(--successColor) !important;
|
|
1603
|
-
}
|
|
1604
|
-
.u-warning {
|
|
1605
|
-
color: var(--warningColor) !important;
|
|
1606
|
-
}
|
|
1607
|
-
.u-info {
|
|
1608
|
-
color: var(--infoColor) !important;
|
|
1609
|
-
}
|
|
1610
|
-
.u-weirdGreen {
|
|
1611
|
-
color: #40de8e !important;
|
|
1612
|
-
}
|
|
1613
|
-
.u-white {
|
|
1614
|
-
color: var(--white) !important;
|
|
1615
|
-
}
|
|
1616
|
-
.u-breakword {
|
|
1617
|
-
word-break: break-word;
|
|
1618
|
-
}
|
|
1619
|
-
.u-ellipsis {
|
|
1620
|
-
white-space: nowrap;
|
|
1621
|
-
overflow: hidden;
|
|
1622
|
-
text-overflow: ellipsis;
|
|
1623
|
-
}
|
|
1624
|
-
.u-spacellipsis {
|
|
1625
|
-
overflow: hidden;
|
|
1626
|
-
text-overflow: ellipsis;
|
|
1627
|
-
white-space: break-spaces;
|
|
1628
|
-
}
|
|
1629
|
-
@media (max-width: 30rem) {
|
|
1630
|
-
.u-spacellipsis-t {
|
|
1631
|
-
overflow: hidden;
|
|
1632
|
-
text-overflow: ellipsis;
|
|
1633
|
-
white-space: break-spaces;
|
|
1634
|
-
}
|
|
1635
|
-
}
|
|
1636
|
-
@media (max-width: 48rem) {
|
|
1637
|
-
.u-spacellipsis-s {
|
|
1638
|
-
overflow: hidden;
|
|
1639
|
-
text-overflow: ellipsis;
|
|
1640
|
-
white-space: break-spaces;
|
|
1641
|
-
}
|
|
1642
|
-
}
|
|
1643
|
-
@media (max-width: 63.938rem) {
|
|
1644
|
-
.u-spacellipsis-m {
|
|
1645
|
-
overflow: hidden;
|
|
1646
|
-
text-overflow: ellipsis;
|
|
1647
|
-
white-space: break-spaces;
|
|
1648
|
-
}
|
|
1649
|
-
}
|
|
1650
|
-
.u-midellipsis {
|
|
1651
|
-
display: flex;
|
|
1652
|
-
flex-wrap: nowrap;
|
|
1653
|
-
}
|
|
1654
|
-
.u-midellipsis > * {
|
|
1655
|
-
display: inline-block;
|
|
1656
|
-
max-width: 50%;
|
|
1657
|
-
overflow: hidden;
|
|
1658
|
-
white-space: pre;
|
|
1659
|
-
}
|
|
1660
|
-
.u-midellipsis > :first-child {
|
|
1661
|
-
text-overflow: ellipsis;
|
|
1662
|
-
}
|
|
1663
|
-
.u-midellipsis > :last-child {
|
|
1664
|
-
text-overflow: clip;
|
|
1665
|
-
direction: rtl;
|
|
1666
|
-
}
|
|
1667
|
-
@supports (text-overflow: '[...]') {
|
|
1668
|
-
.u-midellipsis > :first-child {
|
|
1669
|
-
text-overflow: '[...]';
|
|
1670
|
-
}
|
|
1671
|
-
}
|
|
1672
|
-
.u-link:link {
|
|
1673
|
-
color: var(--linkColor) !important;
|
|
1674
|
-
text-decoration: var(--linkTextDecoration) !important;
|
|
1675
|
-
}
|
|
1676
|
-
.u-link:visited,
|
|
1677
|
-
.u-link:active,
|
|
1678
|
-
.u-link:hover,
|
|
1679
|
-
.u-link:focus {
|
|
1680
|
-
color: var(--linkColorActive) !important;
|
|
1681
|
-
}
|
|
1682
|
-
.u-lh-tiny {
|
|
1683
|
-
line-height: 1 !important;
|
|
1684
|
-
}
|
|
1685
|
-
.u-lh-xsmall {
|
|
1686
|
-
line-height: 1.1 !important;
|
|
1687
|
-
}
|
|
1688
|
-
.u-lh-small {
|
|
1689
|
-
line-height: 1.2 !important;
|
|
1690
|
-
}
|
|
1691
|
-
.u-lh-medium {
|
|
1692
|
-
line-height: 1.3 !important;
|
|
1693
|
-
}
|
|
1694
|
-
.u-lh-large {
|
|
1695
|
-
line-height: 1.4 !important;
|
|
1696
|
-
}
|
|
1697
|
-
.u-lh-xlarge {
|
|
1698
|
-
line-height: 1.5 !important;
|
|
1699
|
-
}
|
|
1700
|
-
.u-fz-tiny {
|
|
1701
|
-
font-size: 0.75rem !important;
|
|
1702
|
-
line-height: 1.3 !important;
|
|
1703
|
-
}
|
|
1704
|
-
.u-fz-xsmall {
|
|
1705
|
-
font-size: 0.813rem !important;
|
|
1706
|
-
line-height: 1.4 !important;
|
|
1707
|
-
}
|
|
1708
|
-
.u-fz-small {
|
|
1709
|
-
font-size: 0.875rem !important;
|
|
1710
|
-
line-height: 1.4 !important;
|
|
1711
|
-
}
|
|
1712
|
-
.u-fz-medium {
|
|
1713
|
-
font-size: 1rem !important;
|
|
1714
|
-
line-height: 1.5 !important;
|
|
1715
|
-
}
|
|
1716
|
-
.u-fz-large {
|
|
1717
|
-
font-size: 1.125rem !important;
|
|
1718
|
-
line-height: 1.5 !important;
|
|
1719
|
-
}
|
|
1720
|
-
@media (max-width: 30rem) {
|
|
1721
|
-
.u-fz-tiny-t {
|
|
1722
|
-
font-size: 0.75rem !important;
|
|
1723
|
-
line-height: 1.3 !important;
|
|
1724
|
-
}
|
|
1725
|
-
.u-fz-xsmall-t {
|
|
1726
|
-
font-size: 0.813rem !important;
|
|
1727
|
-
line-height: 1.4 !important;
|
|
1728
|
-
}
|
|
1729
|
-
.u-fz-small-t {
|
|
1730
|
-
font-size: 0.875rem !important;
|
|
1731
|
-
line-height: 1.4 !important;
|
|
1732
|
-
}
|
|
1733
|
-
.u-fz-medium-t {
|
|
1734
|
-
font-size: 1rem !important;
|
|
1735
|
-
line-height: 1.5 !important;
|
|
1736
|
-
}
|
|
1737
|
-
.u-fz-large-t {
|
|
1738
|
-
font-size: 1.125rem !important;
|
|
1739
|
-
line-height: 1.5 !important;
|
|
1740
|
-
}
|
|
1741
|
-
}
|
|
1742
|
-
@media (max-width: 48rem) {
|
|
1743
|
-
.u-fz-tiny-s {
|
|
1744
|
-
font-size: 0.75rem !important;
|
|
1745
|
-
line-height: 1.3 !important;
|
|
1746
|
-
}
|
|
1747
|
-
.u-fz-xsmall-s {
|
|
1748
|
-
font-size: 0.813rem !important;
|
|
1749
|
-
line-height: 1.4 !important;
|
|
1750
|
-
}
|
|
1751
|
-
.u-fz-small-s {
|
|
1752
|
-
font-size: 0.875rem !important;
|
|
1753
|
-
line-height: 1.4 !important;
|
|
1754
|
-
}
|
|
1755
|
-
.u-fz-medium-s {
|
|
1756
|
-
font-size: 1rem !important;
|
|
1757
|
-
line-height: 1.5 !important;
|
|
1758
|
-
}
|
|
1759
|
-
.u-fz-large-s {
|
|
1760
|
-
font-size: 1.125rem !important;
|
|
1761
|
-
line-height: 1.5 !important;
|
|
1762
|
-
}
|
|
1763
|
-
}
|
|
1764
|
-
@media (max-width: 63.938rem) {
|
|
1765
|
-
.u-fz-tiny-m {
|
|
1766
|
-
font-size: 0.75rem !important;
|
|
1767
|
-
line-height: 1.3 !important;
|
|
1768
|
-
}
|
|
1769
|
-
.u-fz-xsmall-m {
|
|
1770
|
-
font-size: 0.813rem !important;
|
|
1771
|
-
line-height: 1.4 !important;
|
|
1772
|
-
}
|
|
1773
|
-
.u-fz-small-m {
|
|
1774
|
-
font-size: 0.875rem !important;
|
|
1775
|
-
line-height: 1.4 !important;
|
|
1776
|
-
}
|
|
1777
|
-
.u-fz-medium-m {
|
|
1778
|
-
font-size: 1rem !important;
|
|
1779
|
-
line-height: 1.5 !important;
|
|
1780
|
-
}
|
|
1781
|
-
.u-fz-large-m {
|
|
1782
|
-
font-size: 1.125rem !important;
|
|
1783
|
-
line-height: 1.5 !important;
|
|
1784
|
-
}
|
|
1785
|
-
}
|
|
1786
|
-
.u-ta-left {
|
|
1787
|
-
text-align: left !important;
|
|
1788
|
-
}
|
|
1789
|
-
.u-ta-right {
|
|
1790
|
-
text-align: right !important;
|
|
1791
|
-
}
|
|
1792
|
-
.u-ta-center {
|
|
1793
|
-
text-align: center !important;
|
|
1794
|
-
}
|
|
1795
|
-
.u-ta-justify {
|
|
1796
|
-
text-align: justify !important;
|
|
1797
|
-
}
|
|
1798
|
-
@media (max-width: 30rem) {
|
|
1799
|
-
.u-ta-left-t {
|
|
1800
|
-
text-align: left !important;
|
|
1801
|
-
}
|
|
1802
|
-
.u-ta-right-t {
|
|
1803
|
-
text-align: right !important;
|
|
1804
|
-
}
|
|
1805
|
-
.u-ta-center-t {
|
|
1806
|
-
text-align: center !important;
|
|
1807
|
-
}
|
|
1808
|
-
.u-ta-justify-t {
|
|
1809
|
-
text-align: justify !important;
|
|
1810
|
-
}
|
|
1811
|
-
}
|
|
1812
|
-
@media (max-width: 48rem) {
|
|
1813
|
-
.u-ta-left-s {
|
|
1814
|
-
text-align: left !important;
|
|
1815
|
-
}
|
|
1816
|
-
.u-ta-right-s {
|
|
1817
|
-
text-align: right !important;
|
|
1818
|
-
}
|
|
1819
|
-
.u-ta-center-s {
|
|
1820
|
-
text-align: center !important;
|
|
1821
|
-
}
|
|
1822
|
-
.u-ta-justify-s {
|
|
1823
|
-
text-align: justify !important;
|
|
1824
|
-
}
|
|
1825
|
-
}
|
|
1826
|
-
@media (max-width: 63.938rem) {
|
|
1827
|
-
.u-ta-left-m {
|
|
1828
|
-
text-align: left !important;
|
|
1829
|
-
}
|
|
1830
|
-
.u-ta-right-m {
|
|
1831
|
-
text-align: right !important;
|
|
1832
|
-
}
|
|
1833
|
-
.u-ta-center-m {
|
|
1834
|
-
text-align: center !important;
|
|
1835
|
-
}
|
|
1836
|
-
.u-ta-justify-m {
|
|
1837
|
-
text-align: justify !important;
|
|
1838
|
-
}
|
|
1839
|
-
}
|
|
1840
|
-
.u-fs-normal {
|
|
1841
|
-
font-style: normal !important;
|
|
1842
|
-
}
|
|
1843
|
-
.u-fs-italic {
|
|
1844
|
-
font-style: italic !important;
|
|
1845
|
-
}
|
|
1846
|
-
@media (max-width: 30rem) {
|
|
1847
|
-
.u-fs-normal-t {
|
|
1848
|
-
font-style: normal !important;
|
|
1849
|
-
}
|
|
1850
|
-
.u-fs-italic-t {
|
|
1851
|
-
font-style: italic !important;
|
|
1852
|
-
}
|
|
1853
|
-
}
|
|
1854
|
-
@media (max-width: 48rem) {
|
|
1855
|
-
.u-fs-normal-s {
|
|
1856
|
-
font-style: normal !important;
|
|
1857
|
-
}
|
|
1858
|
-
.u-fs-italic-s {
|
|
1859
|
-
font-style: italic !important;
|
|
1860
|
-
}
|
|
1861
|
-
}
|
|
1862
|
-
@media (max-width: 63.938rem) {
|
|
1863
|
-
.u-fs-normal-m {
|
|
1864
|
-
font-style: normal !important;
|
|
1865
|
-
}
|
|
1866
|
-
.u-fs-italic-m {
|
|
1867
|
-
font-style: italic !important;
|
|
1868
|
-
}
|
|
1869
|
-
}
|
|
1870
|
-
.u-fw-normal {
|
|
1871
|
-
font-weight: normal;
|
|
1872
|
-
}
|
|
1873
|
-
.u-fw-bold {
|
|
1874
|
-
font-weight: bold;
|
|
1875
|
-
}
|
|
1876
|
-
@media (max-width: 30rem) {
|
|
1877
|
-
.u-fw-normal-t {
|
|
1878
|
-
font-weight: normal;
|
|
1879
|
-
}
|
|
1880
|
-
.u-fw-bold-t {
|
|
1881
|
-
font-weight: bold;
|
|
1882
|
-
}
|
|
1883
|
-
}
|
|
1884
|
-
@media (max-width: 48rem) {
|
|
1885
|
-
.u-fw-normal-s {
|
|
1886
|
-
font-weight: normal;
|
|
1887
|
-
}
|
|
1888
|
-
.u-fw-bold-s {
|
|
1889
|
-
font-weight: bold;
|
|
1890
|
-
}
|
|
1891
|
-
}
|
|
1892
|
-
@media (max-width: 63.938rem) {
|
|
1893
|
-
.u-fw-normal-m {
|
|
1894
|
-
font-weight: normal;
|
|
1895
|
-
}
|
|
1896
|
-
.u-fw-bold-m {
|
|
1897
|
-
font-weight: bold;
|
|
1898
|
-
}
|
|
1899
|
-
}
|
|
1900
|
-
@media (pointer: coarse) {
|
|
1901
|
-
}
|
|
1902
|
-
:root {
|
|
1903
|
-
--invertedBackgroundColor: #297ef2;
|
|
1904
|
-
--invertedContrastTextColor: #fff;
|
|
1905
|
-
}
|
|
1906
|
-
.recipient__CozyTheme--inverted___2Hb9c {
|
|
1907
|
-
--primaryTextColor: #fff;
|
|
1908
|
-
--secondaryTextColor: rgba(255,255,255,0.64);
|
|
1909
|
-
--disabledTextColor: rgba(255,255,255,0.4);
|
|
1910
|
-
--hintTextColor: rgba(255,255,255,0.4);
|
|
1911
|
-
--iconTextColor: #fff;
|
|
1912
|
-
--actionColorActive: #fff;
|
|
1913
|
-
--actionColorHover: rgba(255,255,255,0.08);
|
|
1914
|
-
--actionColorSelected: rgba(255,255,255,0.16);
|
|
1915
|
-
--actionColorDisabled: rgba(255,255,255,0.32);
|
|
1916
|
-
--actionColorDisabledBackground: rgba(255,255,255,0.12);
|
|
1917
|
-
--actionColorFocus: rgba(255,255,255,0.24);
|
|
1918
|
-
--actionColorGhost: rgba(255,255,255,0.08);
|
|
1919
|
-
--actionColorHoverGhost: rgba(255,255,255,0.16);
|
|
1920
|
-
--dividerColor: rgba(255,255,255,0.16);
|
|
1921
|
-
--borderMainColor: rgba(255,255,255,0.24);
|
|
1922
|
-
--borderDisabledColor: rgba(255,255,255,0.12);
|
|
1923
|
-
--borderGhostColor: rgba(255,255,255,0.48);
|
|
1924
|
-
--borderGhostDisabledColor: rgba(255,255,255,0.24);
|
|
1925
|
-
--paperBackgroundColor: #297ef2;
|
|
1926
|
-
--defaultBackgroundColor: #579eff;
|
|
1927
|
-
--contrastBackgroundColor: rgba(255,255,255,0.12);
|
|
1928
|
-
--primaryColorLight: #fff;
|
|
1929
|
-
--primaryColor: #fff;
|
|
1930
|
-
--primaryColorDark: #eaf3ff;
|
|
1931
|
-
--primaryContrastTextColor: #297ef2;
|
|
1932
|
-
--secondaryColorLight: #f8eefd;
|
|
1933
|
-
--secondaryColor: #ecd7f7;
|
|
1934
|
-
--secondaryColorDark: #deb8f0;
|
|
1935
|
-
--secondaryContrastTextColor: rgba(29,33,42,0.9);
|
|
1936
|
-
--errorColorLight: #ffecec;
|
|
1937
|
-
--errorColor: #ffd3d3;
|
|
1938
|
-
--errorColorDark: #ffb9b9;
|
|
1939
|
-
--errorColorContrastText: rgba(29,33,42,0.9);
|
|
1940
|
-
--errorBackground: #d31f1f;
|
|
1941
|
-
--warningColorLight: #fff3dd;
|
|
1942
|
-
--warningColor: #ffe4b5;
|
|
1943
|
-
--warningColorDark: #ffd58b;
|
|
1944
|
-
--warningColorContrastText: rgba(29,33,42,0.9);
|
|
1945
|
-
--successColorLight: #e3ffe7;
|
|
1946
|
-
--successColor: #c0f4c6;
|
|
1947
|
-
--successColorDark: #97eca1;
|
|
1948
|
-
--successColorContrastText: rgba(29,33,42,0.9);
|
|
1949
|
-
--infoColorLight: #d4feff;
|
|
1950
|
-
--infoColor: #affdff;
|
|
1951
|
-
--infoColorDark: #86f5f7;
|
|
1952
|
-
--infoColorContrastText: rgba(29,33,42,0.9);
|
|
1953
|
-
/*
|
|
1954
|
-
The CSS variables below are historic and we should strive not to
|
|
1955
|
-
use them. Prefer to use directly semantic colors above.
|
|
1956
|
-
*/
|
|
1957
|
-
--iconColor: currentColor;
|
|
1958
|
-
--textIconColor: #fff;
|
|
1959
|
-
--actionMenuIconColor: #fff;
|
|
1960
|
-
--barIconColor: #fff;
|
|
1961
|
-
--barIconColorDisabled: rgba(255,255,255,0.88);
|
|
1962
|
-
--spinnerColor: #fff;
|
|
1963
|
-
--linkColor: #fff;
|
|
1964
|
-
--linkColorActive: #fff;
|
|
1965
|
-
--linkTextDecoration: underline;
|
|
1966
|
-
--regularButtonPrimaryColor: #fff;
|
|
1967
|
-
--regularButtonSecondaryColor: #fff;
|
|
1968
|
-
--regularButtonActiveColor: rgba(255,255,255,0.88);
|
|
1969
|
-
--regularButtonConstrastColor: #297ef2;
|
|
1970
|
-
--secondaryButtonPrimaryColor: #297ef2;
|
|
1971
|
-
--secondaryButtonSecondaryColor: #fff;
|
|
1972
|
-
--secondaryButtonActiveColor: rgba(255,255,255,0.24);
|
|
1973
|
-
--secondaryButtonContrastColor: #fff;
|
|
1974
|
-
--dividerColor2: rgba(255,255,255,0.16);
|
|
1975
|
-
}
|
|
1976
|
-
html {
|
|
1977
|
-
/*
|
|
1978
|
-
Grey
|
|
1979
|
-
|
|
1980
|
-
Stylus: grey0 - #FFFFFF, CSS: var(--grey0)
|
|
1981
|
-
Stylus: grey50 - #f9fafb, CSS: var(--grey50)
|
|
1982
|
-
Stylus: grey100 - #f4f5f6, CSS: var(--grey100)
|
|
1983
|
-
Stylus: grey200 - #eceff1, CSS: var(--grey200)
|
|
1984
|
-
Stylus: grey300 - #dde0e3, CSS: var(--grey300)
|
|
1985
|
-
Stylus: grey400 - #bfc3c7, CSS: var(--grey400)
|
|
1986
|
-
Stylus: grey500 - #9da2a6, CSS: var(--grey500)
|
|
1987
|
-
Stylus: grey600 - #7c8086, CSS: var(--grey600)
|
|
1988
|
-
Stylus: grey700 - #5d6169, CSS: var(--grey700)
|
|
1989
|
-
Stylus: grey800 - #3e424a, CSS: var(--grey800)
|
|
1990
|
-
Stylus: grey900 - #1d212a, CSS: var(--grey900)
|
|
1991
|
-
Stylus: greyA100 - #d3d6d8, CSS: var(--greyA100)
|
|
1992
|
-
Stylus: greyA200 - #a7abaf, CSS: var(--greyA200)
|
|
1993
|
-
Stylus: greyA400 - #2c3039, CSS: var(--greyA400)
|
|
1994
|
-
Stylus: greyA700 - #5d6169, CSS: var(--greyA700)
|
|
1995
|
-
Stylus: white - #FFFFFF, CSS: var(--white)
|
|
1996
|
-
Stylus: paleGrey - #F5F6F7, CSS: var(--paleGrey)
|
|
1997
|
-
Stylus: silver - #D6D8Da, CSS: var(--silver)
|
|
1998
|
-
Stylus: coolGrey - #95999D, CSS: var(--coolGrey)
|
|
1999
|
-
Stylus: slateGrey - #5D6165, CSS: var(--slateGrey)
|
|
2000
|
-
Stylus: charcoalGrey - #32363F, CSS: var(--charcoalGrey)
|
|
2001
|
-
Stylus: black - #000000, CSS: var(--black)
|
|
2002
|
-
|
|
2003
|
-
Styleguide Settings.colors.grey
|
|
2004
|
-
*/
|
|
2005
|
-
--grey0: #fff;
|
|
2006
|
-
--grey50: #f9fafb;
|
|
2007
|
-
--grey100: #f4f5f6;
|
|
2008
|
-
--grey200: #eceff1;
|
|
2009
|
-
--grey300: #dde0e3;
|
|
2010
|
-
--grey400: #bfc3c7;
|
|
2011
|
-
--grey500: #9da2a6;
|
|
2012
|
-
--grey600: #7c8086;
|
|
2013
|
-
--grey700: #5d6169;
|
|
2014
|
-
--grey800: #3e424a;
|
|
2015
|
-
--grey900: #1d212a;
|
|
2016
|
-
--greyA100: #d3d6d8;
|
|
2017
|
-
--greyA200: #a7abaf;
|
|
2018
|
-
--greyA400: #2c3039;
|
|
2019
|
-
--greyA700: #5d6169;
|
|
2020
|
-
--white: #fff;
|
|
2021
|
-
--paleGrey: #f5f6f7;
|
|
2022
|
-
--silver: #d6d8da;
|
|
2023
|
-
--coolGrey: #95999d;
|
|
2024
|
-
--slateGrey: #5d6165;
|
|
2025
|
-
--charcoalGrey: #32363f;
|
|
2026
|
-
--black: #000;
|
|
2027
|
-
--overlay: rgba(50,54,63,0.5);
|
|
2028
|
-
/*
|
|
2029
|
-
Blue
|
|
2030
|
-
|
|
2031
|
-
Stylus: zircon - #F5FAFF, CSS: var(--zircon)
|
|
2032
|
-
Stylus: dodgerBlue - #297EF2, CSS: var(--dodgerBlue)
|
|
2033
|
-
Stylus: scienceBlue - #0B61D6, CSS: var(--scienceBlue)
|
|
2034
|
-
|
|
2035
|
-
Styleguide Settings.colors.blue
|
|
2036
|
-
*/
|
|
2037
|
-
--zircon: #f5faff;
|
|
2038
|
-
--dodgerBlue: #297ef2;
|
|
2039
|
-
--scienceBlue: #0b61d6;
|
|
2040
|
-
/*
|
|
2041
|
-
Green
|
|
2042
|
-
|
|
2043
|
-
Stylus: weirdGreen - #40DE8E, CSS: var(--weirdGreen)
|
|
2044
|
-
Stylus: emerald - #35CE68, CSS: var(--emerald)
|
|
2045
|
-
Stylus: malachite - #08b442, CSS: var(--malachite)
|
|
2046
|
-
|
|
2047
|
-
Styleguide Settings.colors.green
|
|
2048
|
-
*/
|
|
2049
|
-
--weirdGreen: #40de8e;
|
|
2050
|
-
--emerald: #35ce68;
|
|
2051
|
-
--malachite: #08b442;
|
|
2052
|
-
/*
|
|
2053
|
-
Orange
|
|
2054
|
-
|
|
2055
|
-
Stylus: mango - #FF962F, CSS: var(--mango)
|
|
2056
|
-
|
|
2057
|
-
Styleguide Settings.colors.orange
|
|
2058
|
-
*/
|
|
2059
|
-
--mango: #ff962f;
|
|
2060
|
-
/*
|
|
2061
|
-
Red
|
|
2062
|
-
|
|
2063
|
-
Stylus: chablis - #FFF2F2, CSS: var(--chablis)
|
|
2064
|
-
Stylus: yourPink - #FDCBCB, CSS: var(--yourPink)
|
|
2065
|
-
Stylus: fuchsia - #FC4C83, CSS: var(--fuchsia)
|
|
2066
|
-
Stylus: pomegranate - #F52D2D, CSS: var(--pomegranate)
|
|
2067
|
-
Stylus: monza - #DD0505, CSS: var(--monza)
|
|
2068
|
-
|
|
2069
|
-
Styleguide Settings.colors.red
|
|
2070
|
-
*/
|
|
2071
|
-
--chablis: #fff2f2;
|
|
2072
|
-
--yourPink: #fdcbcb;
|
|
2073
|
-
--fuchsia: #fc4c83;
|
|
2074
|
-
--pomegranate: #f52d2d;
|
|
2075
|
-
--monza: #dd0505;
|
|
2076
|
-
}
|
|
2077
|
-
html,
|
|
2078
|
-
.recipient__CozyTheme--normal___3WdEw {
|
|
2079
|
-
/*
|
|
2080
|
-
Primary colors
|
|
2081
|
-
|
|
2082
|
-
Stylus: primaryColorLightest - #B3D3FF, CSS: var(--primaryColorLightest)
|
|
2083
|
-
Stylus: primaryColorLight - #5C9DF5, CSS: var(--primaryColorLight)
|
|
2084
|
-
Stylus: primaryColor - #297EF2, CSS: var(--primaryColor)
|
|
2085
|
-
Stylus: primaryColorDark - #0B61D6, CSS: var(--primaryColorDark)
|
|
2086
|
-
Stylus: primaryContrastTextColor - #FFF, CSS: var(--primaryContrastTextColor)
|
|
2087
|
-
|
|
2088
|
-
Styleguide Settings.theme.primary
|
|
2089
|
-
*/
|
|
2090
|
-
--primaryColorLightest: #b3d3ff;
|
|
2091
|
-
--primaryColorLight: #579eff;
|
|
2092
|
-
--primaryColor: #297ef2;
|
|
2093
|
-
--primaryColorDark: #0f5cc7;
|
|
2094
|
-
--primaryContrastTextColor: #fff;
|
|
2095
|
-
/*
|
|
2096
|
-
Secondary colors
|
|
2097
|
-
|
|
2098
|
-
Stylus: secondaryColorLightest - #FFD3D3, CSS: var(--secondaryColorLightest)
|
|
2099
|
-
Stylus: secondaryColorLight - #F96B6B, CSS: var(--secondaryColorLight)
|
|
2100
|
-
Stylus: secondaryColor - #EA3F3F, CSS: var(--secondaryColor)
|
|
2101
|
-
Stylus: secondaryColorDark - #D31F1F, CSS: var(--secondaryColorDark)
|
|
2102
|
-
Stylus: secondaryContrastTextColor - #FFF, CSS: var(--secondaryContrastTextColor)
|
|
2103
|
-
|
|
2104
|
-
Styleguide Settings.theme.secondary
|
|
2105
|
-
*/
|
|
2106
|
-
--secondaryColorLightest: #ffd3d3;
|
|
2107
|
-
--secondaryColorLight: #f96b6b;
|
|
2108
|
-
--secondaryColor: #ea3f3f;
|
|
2109
|
-
--secondaryColorDark: #d31f1f;
|
|
2110
|
-
--secondaryContrastTextColor: #fff;
|
|
2111
|
-
/*
|
|
2112
|
-
Background colors
|
|
2113
|
-
|
|
2114
|
-
Stylus: primaryBackgroundLight - #F7FAFF, CSS: var(--primaryBackgroundLight)
|
|
2115
|
-
Stylus: paperBackgroundColor - #FFF, CSS: var(--paperBackgroundColor)
|
|
2116
|
-
Stylus: defaultBackgroundColor - #F4F5F6, CSS: var(--defaultBackgroundColor)
|
|
2117
|
-
Stylus: contrastBackgroundColor - #F5F5F6, CSS: var(--contrastBackgroundColor)
|
|
2118
|
-
|
|
2119
|
-
Styleguide Settings.theme.background
|
|
2120
|
-
*/
|
|
2121
|
-
--primaryBackgroundLight: #f7faff;
|
|
2122
|
-
--paperBackgroundColor: #fff;
|
|
2123
|
-
--defaultBackgroundColor: #f4f5f6;
|
|
2124
|
-
--contrastBackgroundColor: rgba(29,33,42,0.048);
|
|
2125
|
-
/*
|
|
2126
|
-
Text colors
|
|
2127
|
-
|
|
2128
|
-
These colors use the alpha layer. Be careful to use the semantic variable.
|
|
2129
|
-
Hexadecimal colors are here only as an example on a white background.
|
|
2130
|
-
|
|
2131
|
-
Stylus: primaryTextColor - #383B43, CSS: var(--primaryTextColor)
|
|
2132
|
-
Stylus: secondaryTextColor - #6F7177, CSS: var(--secondaryTextColor)
|
|
2133
|
-
Stylus: disabledTextColor - #BEBFC1, CSS: var(--disabledTextColor)
|
|
2134
|
-
Stylus: hintTextColor - #BEBFC1, CSS: var(--hintTextColor)
|
|
2135
|
-
Stylus: iconTextColor - #66686D, CSS: var(--iconTextColor)
|
|
2136
|
-
|
|
2137
|
-
Styleguide Settings.theme.text
|
|
2138
|
-
*/
|
|
2139
|
-
--primaryTextColor: rgba(29,33,42,0.9);
|
|
2140
|
-
--secondaryTextColor: rgba(29,33,42,0.64);
|
|
2141
|
-
--disabledTextColor: rgba(29,33,42,0.32);
|
|
2142
|
-
--hintTextColor: rgba(29,33,42,0.32);
|
|
2143
|
-
--iconTextColor: rgba(29,33,42,0.72);
|
|
2144
|
-
/*
|
|
2145
|
-
Action colors
|
|
2146
|
-
|
|
2147
|
-
These colors use the alpha layer. Be careful to use the semantic variable.
|
|
2148
|
-
Hexadecimal colors are here only as an example on a white background.
|
|
2149
|
-
|
|
2150
|
-
Stylus: actionColorActive - #8A8C90, CSS: var(--actionColorActive)
|
|
2151
|
-
Stylus: actionColorHover - #F7F7F7, CSS: var(--actionColorHover)
|
|
2152
|
-
Stylus: actionColorSelected - #EFEFF0, CSS: var(--actionColorSelected)
|
|
2153
|
-
Stylus: actionColorDisabled - #CFCFD1, CSS: var(--actionColorDisabled)
|
|
2154
|
-
Stylus: actionColorDisabledBackground - #E7E7E8, CSS: var(--actionColorDisabledBackground)
|
|
2155
|
-
Stylus: actionColorFocus - #E7E7E8, CSS: var(--actionColorFocus)
|
|
2156
|
-
Stylus: actionColorGhost - #EFEFF0, CSS: var(--actionColorGhost)
|
|
2157
|
-
Stylus: actionColorHoverGhost - #DFE0E0, CSS: var(--actionColorHoverGhost)
|
|
2158
|
-
|
|
2159
|
-
Styleguide Settings.theme.action
|
|
2160
|
-
*/
|
|
2161
|
-
--actionColorActive: rgba(29,33,42,0.56);
|
|
2162
|
-
--actionColorHover: rgba(29,33,42,0.04);
|
|
2163
|
-
--actionColorSelected: rgba(29,33,42,0.08);
|
|
2164
|
-
--actionColorDisabled: rgba(29,33,42,0.24);
|
|
2165
|
-
--actionColorDisabledBackground: rgba(29,33,42,0.12);
|
|
2166
|
-
--actionColorFocus: rgba(29,33,42,0.12);
|
|
2167
|
-
--actionColorGhost: rgba(29,33,42,0.08);
|
|
2168
|
-
--actionColorHoverGhost: rgba(29,33,42,0.16);
|
|
2169
|
-
/*
|
|
2170
|
-
Border colors
|
|
2171
|
-
|
|
2172
|
-
These colors use the alpha layer. Be careful to use the semantic variable.
|
|
2173
|
-
Hexadecimal colors are here only as an example on a white background.
|
|
2174
|
-
|
|
2175
|
-
Stylus: borderMainColor - #DFE0E0, CSS: var(--borderMainColor)
|
|
2176
|
-
Stylus: borderDisabledColor - #EFEFF0, CSS: var(--borderDisabledColor)
|
|
2177
|
-
Stylus: borderGhostColor - #9D9EA1, CSS: var(--borderGhostColor)
|
|
2178
|
-
Stylus: borderGhostDisabledColor - #DFE0E0, CSS: var(--borderGhostDisabledColor)
|
|
2179
|
-
|
|
2180
|
-
Styleguide Settings.theme.border
|
|
2181
|
-
*/
|
|
2182
|
-
--borderMainColor: rgba(29,33,42,0.16);
|
|
2183
|
-
--borderDisabledColor: rgba(29,33,42,0.08);
|
|
2184
|
-
--borderGhostColor: rgba(29,33,42,0.48);
|
|
2185
|
-
--borderGhostDisabledColor: rgba(29,33,42,0.16);
|
|
2186
|
-
/*
|
|
2187
|
-
Divider colors
|
|
2188
|
-
|
|
2189
|
-
These colors use the alpha layer. Be careful to use the semantic variable.
|
|
2190
|
-
Hexadecimal colors are here only as an example on a white background.
|
|
2191
|
-
|
|
2192
|
-
Stylus: dividerColor - #E3E4E5, CSS: var(--dividerColor)
|
|
2193
|
-
|
|
2194
|
-
Styleguide Settings.theme.divider
|
|
2195
|
-
*/
|
|
2196
|
-
--dividerColor: rgba(29,33,42,0.12);
|
|
2197
|
-
/*
|
|
2198
|
-
Success colors
|
|
2199
|
-
|
|
2200
|
-
Stylus: successColorLight - #38C949, CSS: var(--successColorLight)
|
|
2201
|
-
Stylus: successColor - #09AB1B, CSS: var(--successColor)
|
|
2202
|
-
Stylus: successColorDark - #018711, CSS: var(--successColorDark)
|
|
2203
|
-
Stylus: successColorContrastText - #FFF, CSS: var(--successColorContrastText)
|
|
2204
|
-
|
|
2205
|
-
Styleguide Settings.theme.success
|
|
2206
|
-
*/
|
|
2207
|
-
--successColorLight: #38c949;
|
|
2208
|
-
--successColor: #09ab1b;
|
|
2209
|
-
--successColorDark: #018711;
|
|
2210
|
-
--successColorContrastText: #fff;
|
|
2211
|
-
/*
|
|
2212
|
-
Warning colors
|
|
2213
|
-
|
|
2214
|
-
Stylus: warningColorLight - #EFA82F, CSS: var(--warningColorLight)
|
|
2215
|
-
Stylus: warningColor - #CB8100, CSS: var(--warningColor)
|
|
2216
|
-
Stylus: warningColorDark - #986100, CSS: var(--warningColorDark)
|
|
2217
|
-
Stylus: warningColorContrastText - #FFF, CSS: var(--warningColorContrastText)
|
|
2218
|
-
|
|
2219
|
-
Styleguide Settings.theme.warning
|
|
2220
|
-
*/
|
|
2221
|
-
--warningColorLight: #efa82d;
|
|
2222
|
-
--warningColor: #cb8100;
|
|
2223
|
-
--warningColorDark: #986100;
|
|
2224
|
-
--warningColorContrastText: #fff;
|
|
2225
|
-
/*
|
|
2226
|
-
Error colors
|
|
2227
|
-
|
|
2228
|
-
Stylus: errorColorLightest - #FFECEC, CSS: var(--errorColorLightest)
|
|
2229
|
-
Stylus: errorColorLight - #F96B6B, CSS: var(--errorColorLight)
|
|
2230
|
-
Stylus: errorColor - #EA3F3F, CSS: var(--errorColor)
|
|
2231
|
-
Stylus: errorColorDark - #D31F1F, CSS: var(--errorColorDark)
|
|
2232
|
-
Stylus: errorBackground - #FFECEC, CSS: var(--errorBackground)
|
|
2233
|
-
Stylus: errorColorContrastText - #FFF, CSS: var(--errorColorContrastText)
|
|
2234
|
-
|
|
2235
|
-
Styleguide Settings.theme.error
|
|
2236
|
-
*/
|
|
2237
|
-
--errorColorLightest: #ffecec;
|
|
2238
|
-
--errorColorLight: #f96b6b;
|
|
2239
|
-
--errorColor: #ea3f3f;
|
|
2240
|
-
--errorColorDark: #d31f1f;
|
|
2241
|
-
--errorBackground: #ffecec;
|
|
2242
|
-
--errorColorContrastText: #fff;
|
|
2243
|
-
/*
|
|
2244
|
-
Info colors
|
|
2245
|
-
|
|
2246
|
-
Stylus: infoColorLight - #0EC4C7, CSS: var(--infoColorLight)
|
|
2247
|
-
Stylus: infoColor - #009FA2, CSS: var(--infoColor)
|
|
2248
|
-
Stylus: infoColorDark - #007578, CSS: var(--infoColorDark)
|
|
2249
|
-
Stylus: infoColorContrastText - #FFF, CSS: var(--infoColorContrastText)
|
|
2250
|
-
|
|
2251
|
-
Styleguide Settings.theme.info
|
|
2252
|
-
*/
|
|
2253
|
-
--infoColorLight: #0ec4c7;
|
|
2254
|
-
--infoColor: #009fa2;
|
|
2255
|
-
--infoColorDark: #007578;
|
|
2256
|
-
--infoColorContrastText: #fff;
|
|
2257
|
-
/*
|
|
2258
|
-
Shadow colors
|
|
2259
|
-
*/
|
|
2260
|
-
--shadow0: none;
|
|
2261
|
-
--shadow1: 0px 2px 4px 0px rgba(29,33,42,0.08), 0px 4px 16px 0px rgba(29,33,42,0.06), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2262
|
-
--shadow2: 0px 3px 5px 0px rgba(29,33,42,0.09), 0px 4px 17px 0px rgba(29,33,42,0.07), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2263
|
-
--shadow3: 0px 3px 5px -1px rgba(29,33,42,0.09), 0px 5px 19px 1px rgba(29,33,42,0.08), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2264
|
-
--shadow4: 0px 3px 6px -1px rgba(29,33,42,0.1), 0px 5px 20px 1px rgba(29,33,42,0.08), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2265
|
-
--shadow5: 0px 4px 6px -1px rgba(29,33,42,0.11), 0px 5px 22px 1px rgba(29,33,42,0.09), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2266
|
-
--shadow6: 0px 4px 7px -2px rgba(29,33,42,0.11), 0px 6px 23px 2px rgba(29,33,42,0.1), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2267
|
-
--shadow7: 0px 5px 7px -2px rgba(29,33,42,0.12), 0px 6px 24px 2px rgba(29,33,42,0.11), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2268
|
-
--shadow8: 0px 5px 8px -2px rgba(29,33,42,0.13), 0px 6px 26px 2px rgba(29,33,42,0.11), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2269
|
-
--shadow9: 0px 5px 8px -3px rgba(29,33,42,0.14), 0px 7px 27px 3px rgba(29,33,42,0.12), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2270
|
-
--shadow10: 0px 6px 9px -3px rgba(29,33,42,0.14), 0px 7px 29px 3px rgba(29,33,42,0.13), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2271
|
-
--shadow11: 0px 6px 9px -3px rgba(29,33,42,0.15), 0px 7px 30px 3px rgba(29,33,42,0.14), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2272
|
-
--shadow12: 0px 7px 10px -4px rgba(29,33,42,0.16), 0px 8px 31px 4px rgba(29,33,42,0.15), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2273
|
-
--shadow13: 0px 7px 10px -4px rgba(29,33,42,0.16), 0px 8px 33px 4px rgba(29,33,42,0.15), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2274
|
-
--shadow14: 0px 8px 11px -5px rgba(29,33,42,0.17), 0px 9px 34px 5px rgba(29,33,42,0.16), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2275
|
-
--shadow15: 0px 8px 11px -5px rgba(29,33,42,0.18), 0px 9px 35px 5px rgba(29,33,42,0.17), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2276
|
-
--shadow16: 0px 9px 12px -5px rgba(29,33,42,0.18), 0px 9px 37px 5px rgba(29,33,42,0.18), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2277
|
-
--shadow17: 0px 9px 12px -6px rgba(29,33,42,0.19), 0px 10px 38px 6px rgba(29,33,42,0.19), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2278
|
-
--shadow18: 0px 9px 13px -6px rgba(29,33,42,0.2), 0px 10px 40px 6px rgba(29,33,42,0.19), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2279
|
-
--shadow19: 0px 10px 13px -6px rgba(29,33,42,0.21), 0px 10px 41px 6px rgba(29,33,42,0.2), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2280
|
-
--shadow20: 0px 10px 14px -7px rgba(29,33,42,0.21), 0px 11px 42px 7px rgba(29,33,42,0.21), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2281
|
-
--shadow21: 0px 11px 14px -7px rgba(29,33,42,0.22), 0px 11px 44px 7px rgba(29,33,42,0.22), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2282
|
-
--shadow22: 0px 11px 15px -7px rgba(29,33,42,0.23), 0px 11px 45px 7px rgba(29,33,42,0.22), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2283
|
-
--shadow23: 0px 12px 15px -8px rgba(29,33,42,0.23), 0px 12px 47px 8px rgba(29,33,42,0.23), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2284
|
-
--shadow24: 0px 12px 16px -8px rgba(29,33,42,0.24), 0px 12px 48px 8px rgba(29,33,42,0.24), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2285
|
-
--shadow25: 0px 1px 4px rgba(29,33,42,0.04);
|
|
2286
|
-
/*
|
|
2287
|
-
---------------------------------------------------------------------
|
|
2288
|
-
*/
|
|
2289
|
-
/*
|
|
2290
|
-
The CSS variables below are historic and we should strive not to
|
|
2291
|
-
use them. Prefer to use directly semantic colors above.
|
|
2292
|
-
*/
|
|
2293
|
-
--spinnerColor: var(--primaryColor);
|
|
2294
|
-
--linkColor: var(--primaryColor);
|
|
2295
|
-
--linkTextDecoration: none;
|
|
2296
|
-
--linkColorActive: var(--primaryColorDark);
|
|
2297
|
-
--invertedTabsActiveTextColor: var(--primaryContrastTextColor);
|
|
2298
|
-
--invertedTabsInactiveTextColor: var(--primaryContrastTextColor);
|
|
2299
|
-
--invertedTabsIndicatorColor: var(--primaryContrastTextColor);
|
|
2300
|
-
--invertedTabsBackgroundColor: var(--primaryColor);
|
|
2301
|
-
--regularButtonPrimaryColor: var(--primaryColor);
|
|
2302
|
-
--regularButtonSecondaryColor: var(--primaryColor);
|
|
2303
|
-
--regularButtonActiveColor: var(--primaryColorDark);
|
|
2304
|
-
--regularButtonConstrastColor: var(--primaryContrastTextColor);
|
|
2305
|
-
--secondaryButtonPrimaryColor: #fff;
|
|
2306
|
-
--secondaryButtonSecondaryColor: var(--silver);
|
|
2307
|
-
--secondaryButtonActiveColor: var(--silver);
|
|
2308
|
-
--secondaryButtonContrastColor: var(--black);
|
|
2309
|
-
--dividerColor2: var(--coolGrey);
|
|
2310
|
-
--iconColor: currentColor;
|
|
2311
|
-
--textIconColor: var(--charcoalGrey);
|
|
2312
|
-
--actionMenuIconColor: var(--slateGrey);
|
|
2313
|
-
--neutralBackground: var(--paleGrey);
|
|
2314
|
-
--buttonTextTransform: uppercase;
|
|
2315
|
-
--buttonBorderRadius: 0.125rem;
|
|
2316
|
-
--navTextColor: var(--slateGrey);
|
|
2317
|
-
--navTextActiveColor: var(--slateGrey);
|
|
2318
|
-
--navTextHoverColor: var(--charcoalGrey);
|
|
2319
|
-
--alertErrorColor: #fff;
|
|
2320
|
-
--alertErrorBackgroundColor: var(--errorColor);
|
|
2321
|
-
--alertSuccessColor: #fff;
|
|
2322
|
-
--alertSuccessBackgroundColor: var(--successColor);
|
|
2323
|
-
--alertInfoColor: #fff;
|
|
2324
|
-
--alertInfoBackgroundColor: var(--slateGrey);
|
|
2325
|
-
}
|
|
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;
|
|
2334
|
-
}
|
|
2335
|
-
@media (max-width: 48rem) {
|
|
2336
|
-
.recipient__recipient___2zWmH {
|
|
2337
|
-
align-items: flex-start;
|
|
2338
|
-
}
|
|
2339
|
-
}
|
|
2340
|
-
.recipient__recipients-list-light___1-dkI .recipient__recipient___2zWmH {
|
|
2341
|
-
margin: 1rem 0;
|
|
2342
|
-
}
|
|
2343
|
-
.recipient__recipients-list-light___1-dkI + .recipient__recipient___2zWmH {
|
|
2344
|
-
margin-top: 1rem;
|
|
2345
|
-
}
|
|
2346
|
-
.recipient__recipient-idents___3F3zL {
|
|
2347
|
-
flex: 1 1 auto;
|
|
2348
|
-
overflow: hidden;
|
|
2349
|
-
text-overflow: ellipsis;
|
|
2350
|
-
}
|
|
2351
|
-
.recipient__recipient-status-icon___1GvS9 {
|
|
2352
|
-
margin-right: 0.25rem;
|
|
2353
|
-
}
|
|
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;
|
|
2360
|
-
}
|
|
2361
|
-
.recipient__recipient-user___3hOyK {
|
|
2362
|
-
font-size: 1rem;
|
|
2363
|
-
font-weight: bold;
|
|
2364
|
-
}
|
|
2365
|
-
.recipient__recipient-details___3fmFE {
|
|
2366
|
-
font-size: 0.875rem;
|
|
2367
|
-
color: var(--coolGrey);
|
|
2368
|
-
}
|
|
2369
|
-
.recipient__avatar___2NIEb {
|
|
2370
|
-
display: flex;
|
|
2371
|
-
flex-direction: row;
|
|
2372
|
-
align-items: center;
|
|
2373
|
-
}
|
|
2374
|
-
.recipient__avatar___2NIEb .recipient__recipient-user___3hOyK {
|
|
2375
|
-
font-size: 1.125rem;
|
|
2376
|
-
}
|
|
2377
|
-
.recipient__link-recipient-icon-circle___3gmgy {
|
|
2378
|
-
border: 1px solid var(--borderMainColor);
|
|
2379
|
-
background-color: unset;
|
|
2380
|
-
color: unset;
|
|
2381
|
-
}
|
|
2382
|
-
.recipient__recipients-avatars___MXhiL {
|
|
2383
|
-
display: inline-flex;
|
|
2384
|
-
flex-direction: row-reverse;
|
|
2385
|
-
margin-right: 0.5rem;
|
|
2386
|
-
}
|
|
2387
|
-
.recipient__recipients-avatars___MXhiL.recipient__--interactive___1gDjM {
|
|
2388
|
-
cursor: pointer;
|
|
2389
|
-
}
|
|
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);
|
|
2396
|
-
}
|
|
2397
|
-
.recipient__recipients-avatars--link___2s02h {
|
|
2398
|
-
background-color: var(--genericRecipientBackground);
|
|
2399
|
-
}
|
|
2400
|
-
.recipient__recipients-avatars--link___2s02h svg {
|
|
2401
|
-
fill: var(--genericRecipientColor);
|
|
2402
|
-
}
|
|
2403
|
-
.recipient__recipients-avatars--plusX___WRllr,
|
|
2404
|
-
.recipient__recipients-avatars--avatar___3j3_A {
|
|
2405
|
-
margin-right: -0.6rem;
|
|
2406
|
-
}
|
|
2407
|
-
/*
|
|
2408
|
-
imported from autosuggest.styl
|
|
2409
|
-
*/
|
|
2410
|
-
|
|
2411
|
-
:root {
|
|
2412
|
-
--invertedBackgroundColor: #297ef2;
|
|
2413
|
-
--invertedContrastTextColor: #fff;
|
|
2414
|
-
}
|
|
2415
|
-
.autosuggest__CozyTheme--inverted___QJCUa {
|
|
2416
|
-
--primaryTextColor: #fff;
|
|
2417
|
-
--secondaryTextColor: rgba(255,255,255,0.64);
|
|
2418
|
-
--disabledTextColor: rgba(255,255,255,0.4);
|
|
2419
|
-
--hintTextColor: rgba(255,255,255,0.4);
|
|
2420
|
-
--iconTextColor: #fff;
|
|
2421
|
-
--actionColorActive: #fff;
|
|
2422
|
-
--actionColorHover: rgba(255,255,255,0.08);
|
|
2423
|
-
--actionColorSelected: rgba(255,255,255,0.16);
|
|
2424
|
-
--actionColorDisabled: rgba(255,255,255,0.32);
|
|
2425
|
-
--actionColorDisabledBackground: rgba(255,255,255,0.12);
|
|
2426
|
-
--actionColorFocus: rgba(255,255,255,0.24);
|
|
2427
|
-
--actionColorGhost: rgba(255,255,255,0.08);
|
|
2428
|
-
--actionColorHoverGhost: rgba(255,255,255,0.16);
|
|
2429
|
-
--dividerColor: rgba(255,255,255,0.16);
|
|
2430
|
-
--borderMainColor: rgba(255,255,255,0.24);
|
|
2431
|
-
--borderDisabledColor: rgba(255,255,255,0.12);
|
|
2432
|
-
--borderGhostColor: rgba(255,255,255,0.48);
|
|
2433
|
-
--borderGhostDisabledColor: rgba(255,255,255,0.24);
|
|
2434
|
-
--paperBackgroundColor: #297ef2;
|
|
2435
|
-
--defaultBackgroundColor: #579eff;
|
|
2436
|
-
--contrastBackgroundColor: rgba(255,255,255,0.12);
|
|
2437
|
-
--primaryColorLight: #fff;
|
|
2438
|
-
--primaryColor: #fff;
|
|
2439
|
-
--primaryColorDark: #eaf3ff;
|
|
2440
|
-
--primaryContrastTextColor: #297ef2;
|
|
2441
|
-
--secondaryColorLight: #f8eefd;
|
|
2442
|
-
--secondaryColor: #ecd7f7;
|
|
2443
|
-
--secondaryColorDark: #deb8f0;
|
|
2444
|
-
--secondaryContrastTextColor: rgba(29,33,42,0.9);
|
|
2445
|
-
--errorColorLight: #ffecec;
|
|
2446
|
-
--errorColor: #ffd3d3;
|
|
2447
|
-
--errorColorDark: #ffb9b9;
|
|
2448
|
-
--errorColorContrastText: rgba(29,33,42,0.9);
|
|
2449
|
-
--errorBackground: #d31f1f;
|
|
2450
|
-
--warningColorLight: #fff3dd;
|
|
2451
|
-
--warningColor: #ffe4b5;
|
|
2452
|
-
--warningColorDark: #ffd58b;
|
|
2453
|
-
--warningColorContrastText: rgba(29,33,42,0.9);
|
|
2454
|
-
--successColorLight: #e3ffe7;
|
|
2455
|
-
--successColor: #c0f4c6;
|
|
2456
|
-
--successColorDark: #97eca1;
|
|
2457
|
-
--successColorContrastText: rgba(29,33,42,0.9);
|
|
2458
|
-
--infoColorLight: #d4feff;
|
|
2459
|
-
--infoColor: #affdff;
|
|
2460
|
-
--infoColorDark: #86f5f7;
|
|
2461
|
-
--infoColorContrastText: rgba(29,33,42,0.9);
|
|
2462
|
-
/*
|
|
2463
|
-
The CSS variables below are historic and we should strive not to
|
|
2464
|
-
use them. Prefer to use directly semantic colors above.
|
|
2465
|
-
*/
|
|
2466
|
-
--iconColor: currentColor;
|
|
2467
|
-
--textIconColor: #fff;
|
|
2468
|
-
--actionMenuIconColor: #fff;
|
|
2469
|
-
--barIconColor: #fff;
|
|
2470
|
-
--barIconColorDisabled: rgba(255,255,255,0.88);
|
|
2471
|
-
--spinnerColor: #fff;
|
|
2472
|
-
--linkColor: #fff;
|
|
2473
|
-
--linkColorActive: #fff;
|
|
2474
|
-
--linkTextDecoration: underline;
|
|
2475
|
-
--regularButtonPrimaryColor: #fff;
|
|
2476
|
-
--regularButtonSecondaryColor: #fff;
|
|
2477
|
-
--regularButtonActiveColor: rgba(255,255,255,0.88);
|
|
2478
|
-
--regularButtonConstrastColor: #297ef2;
|
|
2479
|
-
--secondaryButtonPrimaryColor: #297ef2;
|
|
2480
|
-
--secondaryButtonSecondaryColor: #fff;
|
|
2481
|
-
--secondaryButtonActiveColor: rgba(255,255,255,0.24);
|
|
2482
|
-
--secondaryButtonContrastColor: #fff;
|
|
2483
|
-
--dividerColor2: rgba(255,255,255,0.16);
|
|
2484
|
-
}
|
|
2485
|
-
html {
|
|
2486
|
-
/*
|
|
2487
|
-
Grey
|
|
2488
|
-
|
|
2489
|
-
Stylus: grey0 - #FFFFFF, CSS: var(--grey0)
|
|
2490
|
-
Stylus: grey50 - #f9fafb, CSS: var(--grey50)
|
|
2491
|
-
Stylus: grey100 - #f4f5f6, CSS: var(--grey100)
|
|
2492
|
-
Stylus: grey200 - #eceff1, CSS: var(--grey200)
|
|
2493
|
-
Stylus: grey300 - #dde0e3, CSS: var(--grey300)
|
|
2494
|
-
Stylus: grey400 - #bfc3c7, CSS: var(--grey400)
|
|
2495
|
-
Stylus: grey500 - #9da2a6, CSS: var(--grey500)
|
|
2496
|
-
Stylus: grey600 - #7c8086, CSS: var(--grey600)
|
|
2497
|
-
Stylus: grey700 - #5d6169, CSS: var(--grey700)
|
|
2498
|
-
Stylus: grey800 - #3e424a, CSS: var(--grey800)
|
|
2499
|
-
Stylus: grey900 - #1d212a, CSS: var(--grey900)
|
|
2500
|
-
Stylus: greyA100 - #d3d6d8, CSS: var(--greyA100)
|
|
2501
|
-
Stylus: greyA200 - #a7abaf, CSS: var(--greyA200)
|
|
2502
|
-
Stylus: greyA400 - #2c3039, CSS: var(--greyA400)
|
|
2503
|
-
Stylus: greyA700 - #5d6169, CSS: var(--greyA700)
|
|
2504
|
-
Stylus: white - #FFFFFF, CSS: var(--white)
|
|
2505
|
-
Stylus: paleGrey - #F5F6F7, CSS: var(--paleGrey)
|
|
2506
|
-
Stylus: silver - #D6D8Da, CSS: var(--silver)
|
|
2507
|
-
Stylus: coolGrey - #95999D, CSS: var(--coolGrey)
|
|
2508
|
-
Stylus: slateGrey - #5D6165, CSS: var(--slateGrey)
|
|
2509
|
-
Stylus: charcoalGrey - #32363F, CSS: var(--charcoalGrey)
|
|
2510
|
-
Stylus: black - #000000, CSS: var(--black)
|
|
2511
|
-
|
|
2512
|
-
Styleguide Settings.colors.grey
|
|
2513
|
-
*/
|
|
2514
|
-
--grey0: #fff;
|
|
2515
|
-
--grey50: #f9fafb;
|
|
2516
|
-
--grey100: #f4f5f6;
|
|
2517
|
-
--grey200: #eceff1;
|
|
2518
|
-
--grey300: #dde0e3;
|
|
2519
|
-
--grey400: #bfc3c7;
|
|
2520
|
-
--grey500: #9da2a6;
|
|
2521
|
-
--grey600: #7c8086;
|
|
2522
|
-
--grey700: #5d6169;
|
|
2523
|
-
--grey800: #3e424a;
|
|
2524
|
-
--grey900: #1d212a;
|
|
2525
|
-
--greyA100: #d3d6d8;
|
|
2526
|
-
--greyA200: #a7abaf;
|
|
2527
|
-
--greyA400: #2c3039;
|
|
2528
|
-
--greyA700: #5d6169;
|
|
2529
|
-
--white: #fff;
|
|
2530
|
-
--paleGrey: #f5f6f7;
|
|
2531
|
-
--silver: #d6d8da;
|
|
2532
|
-
--coolGrey: #95999d;
|
|
2533
|
-
--slateGrey: #5d6165;
|
|
2534
|
-
--charcoalGrey: #32363f;
|
|
2535
|
-
--black: #000;
|
|
2536
|
-
--overlay: rgba(50,54,63,0.5);
|
|
2537
|
-
/*
|
|
2538
|
-
Blue
|
|
2539
|
-
|
|
2540
|
-
Stylus: zircon - #F5FAFF, CSS: var(--zircon)
|
|
2541
|
-
Stylus: dodgerBlue - #297EF2, CSS: var(--dodgerBlue)
|
|
2542
|
-
Stylus: scienceBlue - #0B61D6, CSS: var(--scienceBlue)
|
|
2543
|
-
|
|
2544
|
-
Styleguide Settings.colors.blue
|
|
2545
|
-
*/
|
|
2546
|
-
--zircon: #f5faff;
|
|
2547
|
-
--dodgerBlue: #297ef2;
|
|
2548
|
-
--scienceBlue: #0b61d6;
|
|
2549
|
-
/*
|
|
2550
|
-
Green
|
|
2551
|
-
|
|
2552
|
-
Stylus: weirdGreen - #40DE8E, CSS: var(--weirdGreen)
|
|
2553
|
-
Stylus: emerald - #35CE68, CSS: var(--emerald)
|
|
2554
|
-
Stylus: malachite - #08b442, CSS: var(--malachite)
|
|
2555
|
-
|
|
2556
|
-
Styleguide Settings.colors.green
|
|
2557
|
-
*/
|
|
2558
|
-
--weirdGreen: #40de8e;
|
|
2559
|
-
--emerald: #35ce68;
|
|
2560
|
-
--malachite: #08b442;
|
|
2561
|
-
/*
|
|
2562
|
-
Orange
|
|
2563
|
-
|
|
2564
|
-
Stylus: mango - #FF962F, CSS: var(--mango)
|
|
2565
|
-
|
|
2566
|
-
Styleguide Settings.colors.orange
|
|
2567
|
-
*/
|
|
2568
|
-
--mango: #ff962f;
|
|
2569
|
-
/*
|
|
2570
|
-
Red
|
|
2571
|
-
|
|
2572
|
-
Stylus: chablis - #FFF2F2, CSS: var(--chablis)
|
|
2573
|
-
Stylus: yourPink - #FDCBCB, CSS: var(--yourPink)
|
|
2574
|
-
Stylus: fuchsia - #FC4C83, CSS: var(--fuchsia)
|
|
2575
|
-
Stylus: pomegranate - #F52D2D, CSS: var(--pomegranate)
|
|
2576
|
-
Stylus: monza - #DD0505, CSS: var(--monza)
|
|
2577
|
-
|
|
2578
|
-
Styleguide Settings.colors.red
|
|
2579
|
-
*/
|
|
2580
|
-
--chablis: #fff2f2;
|
|
2581
|
-
--yourPink: #fdcbcb;
|
|
2582
|
-
--fuchsia: #fc4c83;
|
|
2583
|
-
--pomegranate: #f52d2d;
|
|
2584
|
-
--monza: #dd0505;
|
|
2585
|
-
}
|
|
2586
|
-
html,
|
|
2587
|
-
.autosuggest__CozyTheme--normal___1-_dN {
|
|
2588
|
-
/*
|
|
2589
|
-
Primary colors
|
|
2590
|
-
|
|
2591
|
-
Stylus: primaryColorLightest - #B3D3FF, CSS: var(--primaryColorLightest)
|
|
2592
|
-
Stylus: primaryColorLight - #5C9DF5, CSS: var(--primaryColorLight)
|
|
2593
|
-
Stylus: primaryColor - #297EF2, CSS: var(--primaryColor)
|
|
2594
|
-
Stylus: primaryColorDark - #0B61D6, CSS: var(--primaryColorDark)
|
|
2595
|
-
Stylus: primaryContrastTextColor - #FFF, CSS: var(--primaryContrastTextColor)
|
|
2596
|
-
|
|
2597
|
-
Styleguide Settings.theme.primary
|
|
2598
|
-
*/
|
|
2599
|
-
--primaryColorLightest: #b3d3ff;
|
|
2600
|
-
--primaryColorLight: #579eff;
|
|
2601
|
-
--primaryColor: #297ef2;
|
|
2602
|
-
--primaryColorDark: #0f5cc7;
|
|
2603
|
-
--primaryContrastTextColor: #fff;
|
|
2604
|
-
/*
|
|
2605
|
-
Secondary colors
|
|
391
|
+
/* imported from autosuggest.styl */
|
|
2606
392
|
|
|
2607
|
-
|
|
2608
|
-
Stylus: secondaryColorLight - #F96B6B, CSS: var(--secondaryColorLight)
|
|
2609
|
-
Stylus: secondaryColor - #EA3F3F, CSS: var(--secondaryColor)
|
|
2610
|
-
Stylus: secondaryColorDark - #D31F1F, CSS: var(--secondaryColorDark)
|
|
2611
|
-
Stylus: secondaryContrastTextColor - #FFF, CSS: var(--secondaryContrastTextColor)
|
|
2612
|
-
|
|
2613
|
-
Styleguide Settings.theme.secondary
|
|
2614
|
-
*/
|
|
2615
|
-
--secondaryColorLightest: #ffd3d3;
|
|
2616
|
-
--secondaryColorLight: #f96b6b;
|
|
2617
|
-
--secondaryColor: #ea3f3f;
|
|
2618
|
-
--secondaryColorDark: #d31f1f;
|
|
2619
|
-
--secondaryContrastTextColor: #fff;
|
|
2620
|
-
/*
|
|
2621
|
-
Background colors
|
|
2622
|
-
|
|
2623
|
-
Stylus: primaryBackgroundLight - #F7FAFF, CSS: var(--primaryBackgroundLight)
|
|
2624
|
-
Stylus: paperBackgroundColor - #FFF, CSS: var(--paperBackgroundColor)
|
|
2625
|
-
Stylus: defaultBackgroundColor - #F4F5F6, CSS: var(--defaultBackgroundColor)
|
|
2626
|
-
Stylus: contrastBackgroundColor - #F5F5F6, CSS: var(--contrastBackgroundColor)
|
|
2627
|
-
|
|
2628
|
-
Styleguide Settings.theme.background
|
|
2629
|
-
*/
|
|
2630
|
-
--primaryBackgroundLight: #f7faff;
|
|
2631
|
-
--paperBackgroundColor: #fff;
|
|
2632
|
-
--defaultBackgroundColor: #f4f5f6;
|
|
2633
|
-
--contrastBackgroundColor: rgba(29,33,42,0.048);
|
|
2634
|
-
/*
|
|
2635
|
-
Text colors
|
|
2636
|
-
|
|
2637
|
-
These colors use the alpha layer. Be careful to use the semantic variable.
|
|
2638
|
-
Hexadecimal colors are here only as an example on a white background.
|
|
2639
|
-
|
|
2640
|
-
Stylus: primaryTextColor - #383B43, CSS: var(--primaryTextColor)
|
|
2641
|
-
Stylus: secondaryTextColor - #6F7177, CSS: var(--secondaryTextColor)
|
|
2642
|
-
Stylus: disabledTextColor - #BEBFC1, CSS: var(--disabledTextColor)
|
|
2643
|
-
Stylus: hintTextColor - #BEBFC1, CSS: var(--hintTextColor)
|
|
2644
|
-
Stylus: iconTextColor - #66686D, CSS: var(--iconTextColor)
|
|
2645
|
-
|
|
2646
|
-
Styleguide Settings.theme.text
|
|
2647
|
-
*/
|
|
2648
|
-
--primaryTextColor: rgba(29,33,42,0.9);
|
|
2649
|
-
--secondaryTextColor: rgba(29,33,42,0.64);
|
|
2650
|
-
--disabledTextColor: rgba(29,33,42,0.32);
|
|
2651
|
-
--hintTextColor: rgba(29,33,42,0.32);
|
|
2652
|
-
--iconTextColor: rgba(29,33,42,0.72);
|
|
2653
|
-
/*
|
|
2654
|
-
Action colors
|
|
2655
|
-
|
|
2656
|
-
These colors use the alpha layer. Be careful to use the semantic variable.
|
|
2657
|
-
Hexadecimal colors are here only as an example on a white background.
|
|
2658
|
-
|
|
2659
|
-
Stylus: actionColorActive - #8A8C90, CSS: var(--actionColorActive)
|
|
2660
|
-
Stylus: actionColorHover - #F7F7F7, CSS: var(--actionColorHover)
|
|
2661
|
-
Stylus: actionColorSelected - #EFEFF0, CSS: var(--actionColorSelected)
|
|
2662
|
-
Stylus: actionColorDisabled - #CFCFD1, CSS: var(--actionColorDisabled)
|
|
2663
|
-
Stylus: actionColorDisabledBackground - #E7E7E8, CSS: var(--actionColorDisabledBackground)
|
|
2664
|
-
Stylus: actionColorFocus - #E7E7E8, CSS: var(--actionColorFocus)
|
|
2665
|
-
Stylus: actionColorGhost - #EFEFF0, CSS: var(--actionColorGhost)
|
|
2666
|
-
Stylus: actionColorHoverGhost - #DFE0E0, CSS: var(--actionColorHoverGhost)
|
|
2667
|
-
|
|
2668
|
-
Styleguide Settings.theme.action
|
|
2669
|
-
*/
|
|
2670
|
-
--actionColorActive: rgba(29,33,42,0.56);
|
|
2671
|
-
--actionColorHover: rgba(29,33,42,0.04);
|
|
2672
|
-
--actionColorSelected: rgba(29,33,42,0.08);
|
|
2673
|
-
--actionColorDisabled: rgba(29,33,42,0.24);
|
|
2674
|
-
--actionColorDisabledBackground: rgba(29,33,42,0.12);
|
|
2675
|
-
--actionColorFocus: rgba(29,33,42,0.12);
|
|
2676
|
-
--actionColorGhost: rgba(29,33,42,0.08);
|
|
2677
|
-
--actionColorHoverGhost: rgba(29,33,42,0.16);
|
|
2678
|
-
/*
|
|
2679
|
-
Border colors
|
|
2680
|
-
|
|
2681
|
-
These colors use the alpha layer. Be careful to use the semantic variable.
|
|
2682
|
-
Hexadecimal colors are here only as an example on a white background.
|
|
2683
|
-
|
|
2684
|
-
Stylus: borderMainColor - #DFE0E0, CSS: var(--borderMainColor)
|
|
2685
|
-
Stylus: borderDisabledColor - #EFEFF0, CSS: var(--borderDisabledColor)
|
|
2686
|
-
Stylus: borderGhostColor - #9D9EA1, CSS: var(--borderGhostColor)
|
|
2687
|
-
Stylus: borderGhostDisabledColor - #DFE0E0, CSS: var(--borderGhostDisabledColor)
|
|
2688
|
-
|
|
2689
|
-
Styleguide Settings.theme.border
|
|
2690
|
-
*/
|
|
2691
|
-
--borderMainColor: rgba(29,33,42,0.16);
|
|
2692
|
-
--borderDisabledColor: rgba(29,33,42,0.08);
|
|
2693
|
-
--borderGhostColor: rgba(29,33,42,0.48);
|
|
2694
|
-
--borderGhostDisabledColor: rgba(29,33,42,0.16);
|
|
2695
|
-
/*
|
|
2696
|
-
Divider colors
|
|
2697
|
-
|
|
2698
|
-
These colors use the alpha layer. Be careful to use the semantic variable.
|
|
2699
|
-
Hexadecimal colors are here only as an example on a white background.
|
|
2700
|
-
|
|
2701
|
-
Stylus: dividerColor - #E3E4E5, CSS: var(--dividerColor)
|
|
2702
|
-
|
|
2703
|
-
Styleguide Settings.theme.divider
|
|
2704
|
-
*/
|
|
2705
|
-
--dividerColor: rgba(29,33,42,0.12);
|
|
2706
|
-
/*
|
|
2707
|
-
Success colors
|
|
2708
|
-
|
|
2709
|
-
Stylus: successColorLight - #38C949, CSS: var(--successColorLight)
|
|
2710
|
-
Stylus: successColor - #09AB1B, CSS: var(--successColor)
|
|
2711
|
-
Stylus: successColorDark - #018711, CSS: var(--successColorDark)
|
|
2712
|
-
Stylus: successColorContrastText - #FFF, CSS: var(--successColorContrastText)
|
|
2713
|
-
|
|
2714
|
-
Styleguide Settings.theme.success
|
|
2715
|
-
*/
|
|
2716
|
-
--successColorLight: #38c949;
|
|
2717
|
-
--successColor: #09ab1b;
|
|
2718
|
-
--successColorDark: #018711;
|
|
2719
|
-
--successColorContrastText: #fff;
|
|
2720
|
-
/*
|
|
2721
|
-
Warning colors
|
|
2722
|
-
|
|
2723
|
-
Stylus: warningColorLight - #EFA82F, CSS: var(--warningColorLight)
|
|
2724
|
-
Stylus: warningColor - #CB8100, CSS: var(--warningColor)
|
|
2725
|
-
Stylus: warningColorDark - #986100, CSS: var(--warningColorDark)
|
|
2726
|
-
Stylus: warningColorContrastText - #FFF, CSS: var(--warningColorContrastText)
|
|
2727
|
-
|
|
2728
|
-
Styleguide Settings.theme.warning
|
|
2729
|
-
*/
|
|
2730
|
-
--warningColorLight: #efa82d;
|
|
2731
|
-
--warningColor: #cb8100;
|
|
2732
|
-
--warningColorDark: #986100;
|
|
2733
|
-
--warningColorContrastText: #fff;
|
|
2734
|
-
/*
|
|
2735
|
-
Error colors
|
|
2736
|
-
|
|
2737
|
-
Stylus: errorColorLightest - #FFECEC, CSS: var(--errorColorLightest)
|
|
2738
|
-
Stylus: errorColorLight - #F96B6B, CSS: var(--errorColorLight)
|
|
2739
|
-
Stylus: errorColor - #EA3F3F, CSS: var(--errorColor)
|
|
2740
|
-
Stylus: errorColorDark - #D31F1F, CSS: var(--errorColorDark)
|
|
2741
|
-
Stylus: errorBackground - #FFECEC, CSS: var(--errorBackground)
|
|
2742
|
-
Stylus: errorColorContrastText - #FFF, CSS: var(--errorColorContrastText)
|
|
2743
|
-
|
|
2744
|
-
Styleguide Settings.theme.error
|
|
2745
|
-
*/
|
|
2746
|
-
--errorColorLightest: #ffecec;
|
|
2747
|
-
--errorColorLight: #f96b6b;
|
|
2748
|
-
--errorColor: #ea3f3f;
|
|
2749
|
-
--errorColorDark: #d31f1f;
|
|
2750
|
-
--errorBackground: #ffecec;
|
|
2751
|
-
--errorColorContrastText: #fff;
|
|
2752
|
-
/*
|
|
2753
|
-
Info colors
|
|
2754
|
-
|
|
2755
|
-
Stylus: infoColorLight - #0EC4C7, CSS: var(--infoColorLight)
|
|
2756
|
-
Stylus: infoColor - #009FA2, CSS: var(--infoColor)
|
|
2757
|
-
Stylus: infoColorDark - #007578, CSS: var(--infoColorDark)
|
|
2758
|
-
Stylus: infoColorContrastText - #FFF, CSS: var(--infoColorContrastText)
|
|
2759
|
-
|
|
2760
|
-
Styleguide Settings.theme.info
|
|
2761
|
-
*/
|
|
2762
|
-
--infoColorLight: #0ec4c7;
|
|
2763
|
-
--infoColor: #009fa2;
|
|
2764
|
-
--infoColorDark: #007578;
|
|
2765
|
-
--infoColorContrastText: #fff;
|
|
2766
|
-
/*
|
|
2767
|
-
Shadow colors
|
|
2768
|
-
*/
|
|
2769
|
-
--shadow0: none;
|
|
2770
|
-
--shadow1: 0px 2px 4px 0px rgba(29,33,42,0.08), 0px 4px 16px 0px rgba(29,33,42,0.06), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2771
|
-
--shadow2: 0px 3px 5px 0px rgba(29,33,42,0.09), 0px 4px 17px 0px rgba(29,33,42,0.07), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2772
|
-
--shadow3: 0px 3px 5px -1px rgba(29,33,42,0.09), 0px 5px 19px 1px rgba(29,33,42,0.08), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2773
|
-
--shadow4: 0px 3px 6px -1px rgba(29,33,42,0.1), 0px 5px 20px 1px rgba(29,33,42,0.08), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2774
|
-
--shadow5: 0px 4px 6px -1px rgba(29,33,42,0.11), 0px 5px 22px 1px rgba(29,33,42,0.09), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2775
|
-
--shadow6: 0px 4px 7px -2px rgba(29,33,42,0.11), 0px 6px 23px 2px rgba(29,33,42,0.1), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2776
|
-
--shadow7: 0px 5px 7px -2px rgba(29,33,42,0.12), 0px 6px 24px 2px rgba(29,33,42,0.11), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2777
|
-
--shadow8: 0px 5px 8px -2px rgba(29,33,42,0.13), 0px 6px 26px 2px rgba(29,33,42,0.11), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2778
|
-
--shadow9: 0px 5px 8px -3px rgba(29,33,42,0.14), 0px 7px 27px 3px rgba(29,33,42,0.12), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2779
|
-
--shadow10: 0px 6px 9px -3px rgba(29,33,42,0.14), 0px 7px 29px 3px rgba(29,33,42,0.13), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2780
|
-
--shadow11: 0px 6px 9px -3px rgba(29,33,42,0.15), 0px 7px 30px 3px rgba(29,33,42,0.14), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2781
|
-
--shadow12: 0px 7px 10px -4px rgba(29,33,42,0.16), 0px 8px 31px 4px rgba(29,33,42,0.15), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2782
|
-
--shadow13: 0px 7px 10px -4px rgba(29,33,42,0.16), 0px 8px 33px 4px rgba(29,33,42,0.15), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2783
|
-
--shadow14: 0px 8px 11px -5px rgba(29,33,42,0.17), 0px 9px 34px 5px rgba(29,33,42,0.16), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2784
|
-
--shadow15: 0px 8px 11px -5px rgba(29,33,42,0.18), 0px 9px 35px 5px rgba(29,33,42,0.17), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2785
|
-
--shadow16: 0px 9px 12px -5px rgba(29,33,42,0.18), 0px 9px 37px 5px rgba(29,33,42,0.18), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2786
|
-
--shadow17: 0px 9px 12px -6px rgba(29,33,42,0.19), 0px 10px 38px 6px rgba(29,33,42,0.19), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2787
|
-
--shadow18: 0px 9px 13px -6px rgba(29,33,42,0.2), 0px 10px 40px 6px rgba(29,33,42,0.19), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2788
|
-
--shadow19: 0px 10px 13px -6px rgba(29,33,42,0.21), 0px 10px 41px 6px rgba(29,33,42,0.2), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2789
|
-
--shadow20: 0px 10px 14px -7px rgba(29,33,42,0.21), 0px 11px 42px 7px rgba(29,33,42,0.21), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2790
|
-
--shadow21: 0px 11px 14px -7px rgba(29,33,42,0.22), 0px 11px 44px 7px rgba(29,33,42,0.22), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2791
|
-
--shadow22: 0px 11px 15px -7px rgba(29,33,42,0.23), 0px 11px 45px 7px rgba(29,33,42,0.22), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2792
|
-
--shadow23: 0px 12px 15px -8px rgba(29,33,42,0.23), 0px 12px 47px 8px rgba(29,33,42,0.23), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2793
|
-
--shadow24: 0px 12px 16px -8px rgba(29,33,42,0.24), 0px 12px 48px 8px rgba(29,33,42,0.24), 0px 0px 0px 0.5px rgba(29,33,42,0.12);
|
|
2794
|
-
--shadow25: 0px 1px 4px rgba(29,33,42,0.04);
|
|
2795
|
-
/*
|
|
2796
|
-
---------------------------------------------------------------------
|
|
2797
|
-
*/
|
|
2798
|
-
/*
|
|
2799
|
-
The CSS variables below are historic and we should strive not to
|
|
2800
|
-
use them. Prefer to use directly semantic colors above.
|
|
2801
|
-
*/
|
|
2802
|
-
--spinnerColor: var(--primaryColor);
|
|
2803
|
-
--linkColor: var(--primaryColor);
|
|
2804
|
-
--linkTextDecoration: none;
|
|
2805
|
-
--linkColorActive: var(--primaryColorDark);
|
|
2806
|
-
--invertedTabsActiveTextColor: var(--primaryContrastTextColor);
|
|
2807
|
-
--invertedTabsInactiveTextColor: var(--primaryContrastTextColor);
|
|
2808
|
-
--invertedTabsIndicatorColor: var(--primaryContrastTextColor);
|
|
2809
|
-
--invertedTabsBackgroundColor: var(--primaryColor);
|
|
2810
|
-
--regularButtonPrimaryColor: var(--primaryColor);
|
|
2811
|
-
--regularButtonSecondaryColor: var(--primaryColor);
|
|
2812
|
-
--regularButtonActiveColor: var(--primaryColorDark);
|
|
2813
|
-
--regularButtonConstrastColor: var(--primaryContrastTextColor);
|
|
2814
|
-
--secondaryButtonPrimaryColor: #fff;
|
|
2815
|
-
--secondaryButtonSecondaryColor: var(--silver);
|
|
2816
|
-
--secondaryButtonActiveColor: var(--silver);
|
|
2817
|
-
--secondaryButtonContrastColor: var(--black);
|
|
2818
|
-
--dividerColor2: var(--coolGrey);
|
|
2819
|
-
--iconColor: currentColor;
|
|
2820
|
-
--textIconColor: var(--charcoalGrey);
|
|
2821
|
-
--actionMenuIconColor: var(--slateGrey);
|
|
2822
|
-
--neutralBackground: var(--paleGrey);
|
|
2823
|
-
--buttonTextTransform: uppercase;
|
|
2824
|
-
--buttonBorderRadius: 0.125rem;
|
|
2825
|
-
--navTextColor: var(--slateGrey);
|
|
2826
|
-
--navTextActiveColor: var(--slateGrey);
|
|
2827
|
-
--navTextHoverColor: var(--charcoalGrey);
|
|
2828
|
-
--alertErrorColor: #fff;
|
|
2829
|
-
--alertErrorBackgroundColor: var(--errorColor);
|
|
2830
|
-
--alertSuccessColor: #fff;
|
|
2831
|
-
--alertSuccessBackgroundColor: var(--successColor);
|
|
2832
|
-
--alertInfoColor: #fff;
|
|
2833
|
-
--alertInfoBackgroundColor: var(--slateGrey);
|
|
2834
|
-
}
|
|
2835
|
-
html {
|
|
2836
|
-
--zIndex-below: -1;
|
|
2837
|
-
--zIndex-app: 0;
|
|
2838
|
-
--zIndex-low: 1;
|
|
2839
|
-
--zIndex-alertMobile: 10;
|
|
2840
|
-
--zIndex-nav: 20;
|
|
2841
|
-
--zIndex-bar: 31;
|
|
2842
|
-
--zIndex-selection: 40;
|
|
2843
|
-
--zIndex-popover: 30;
|
|
2844
|
-
--zIndex-overlay: 50;
|
|
2845
|
-
--zIndex-fileActionMenu: 60;
|
|
2846
|
-
--zIndex-drawer: 60;
|
|
2847
|
-
--zIndex-modal: 70;
|
|
2848
|
-
--zIndex-modal-footer: 71;
|
|
2849
|
-
--zIndex-modal-toolbar: 72;
|
|
2850
|
-
--zIndex-alert: 80;
|
|
2851
|
-
}
|
|
2852
|
-
.autosuggest__container___1dbB4 {
|
|
393
|
+
.autosuggest__container___1Yro7 {
|
|
2853
394
|
position: relative;
|
|
2854
395
|
}
|
|
2855
|
-
.
|
|
396
|
+
.autosuggest__suggestionsContainer___3EDuG {
|
|
2856
397
|
box-sizing: border-box;
|
|
2857
398
|
position: absolute;
|
|
2858
399
|
top: 100%;
|
|
2859
400
|
margin-top: 0.25rem;
|
|
2860
|
-
z-index:
|
|
401
|
+
z-index: var(--zIndex-alertMobile);
|
|
2861
402
|
width: 100%;
|
|
2862
403
|
overflow: hidden;
|
|
2863
404
|
box-shadow: 0px 0px 0px 0.5px rgba(29,33,42,0.12), 0px 2px 4px rgba(29,33,42,0.079), 0px 4px 16px rgba(29,33,42,0.06);
|
|
@@ -2865,23 +406,23 @@ html {
|
|
|
2865
406
|
background: var(--white);
|
|
2866
407
|
display: none;
|
|
2867
408
|
}
|
|
2868
|
-
.
|
|
409
|
+
.autosuggest__suggestionsContainerOpen___35OCI {
|
|
2869
410
|
display: block;
|
|
2870
411
|
}
|
|
2871
|
-
.
|
|
412
|
+
.autosuggest__input___1Ea-3 {
|
|
2872
413
|
width: 100%;
|
|
2873
414
|
}
|
|
2874
|
-
.
|
|
415
|
+
.autosuggest__suggestionsList___3uRpV {
|
|
2875
416
|
max-height: 9rem;
|
|
2876
417
|
overflow: auto;
|
|
2877
418
|
margin: 0 -1px 0 0;
|
|
2878
419
|
padding: 0.5rem 0;
|
|
2879
420
|
list-style: none;
|
|
2880
421
|
}
|
|
2881
|
-
.
|
|
422
|
+
.autosuggest__suggestionHighlighted___1vpXJ {
|
|
2882
423
|
background: var(--actionColorSelected);
|
|
2883
424
|
}
|
|
2884
|
-
.
|
|
425
|
+
.autosuggest__recipientsContainer___1JYxA {
|
|
2885
426
|
display: flex;
|
|
2886
427
|
flex-wrap: wrap;
|
|
2887
428
|
padding: 0.25rem 0.5rem;
|
|
@@ -2891,103 +432,141 @@ html {
|
|
|
2891
432
|
max-height: 6.75rem;
|
|
2892
433
|
overflow: auto;
|
|
2893
434
|
}
|
|
2894
|
-
.
|
|
435
|
+
.autosuggest__recipientsContainer___1JYxA:hover {
|
|
2895
436
|
border: 1px solid var(--coolGrey);
|
|
2896
437
|
}
|
|
2897
|
-
.
|
|
438
|
+
.autosuggest__recipientsContainer___1JYxA:focus-within {
|
|
2898
439
|
border: 1px solid var(--primaryColor);
|
|
2899
440
|
}
|
|
2900
|
-
.
|
|
441
|
+
.autosuggest__recipientsContainer___1JYxA input[type=email] {
|
|
2901
442
|
width: auto;
|
|
2902
443
|
flex-grow: 1;
|
|
2903
444
|
padding: 0.5rem 0;
|
|
2904
445
|
margin: auto;
|
|
2905
446
|
border: none;
|
|
2906
447
|
}
|
|
2907
|
-
.
|
|
2908
|
-
.
|
|
448
|
+
.autosuggest__recipientsContainer___1JYxA input[type=email]:hover,
|
|
449
|
+
.autosuggest__recipientsContainer___1JYxA input[type=email]:focus {
|
|
2909
450
|
border: none;
|
|
2910
451
|
}
|
|
2911
|
-
.
|
|
452
|
+
.autosuggest__recipientsContainer___1JYxA input[type=email]:only-child {
|
|
2912
453
|
padding: 0.25rem 0.5rem;
|
|
2913
454
|
}
|
|
2914
|
-
.
|
|
455
|
+
.autosuggest__recipientChip___d5I3R {
|
|
2915
456
|
margin: 0.25rem 0.5rem 0.25rem 0;
|
|
2916
457
|
}
|
|
2917
458
|
/* imported from button.styl */
|
|
2918
459
|
|
|
2919
|
-
.button__coz-btn-
|
|
460
|
+
.button__coz-btn-shared___9MFbY {
|
|
2920
461
|
border-color: #35ce68;
|
|
2921
462
|
background-color: #35ce68;
|
|
2922
463
|
color: var(--white);
|
|
2923
464
|
transition: all 0.2s ease-out;
|
|
2924
465
|
}
|
|
2925
|
-
.button__coz-btn-
|
|
2926
|
-
.button__coz-btn-
|
|
466
|
+
.button__coz-btn-shared___9MFbY:focus,
|
|
467
|
+
.button__coz-btn-shared___9MFbY:not([disabled]):not([aria-disabled=true]):hover {
|
|
2927
468
|
border-color: #08b442;
|
|
2928
469
|
background-color: #08b442;
|
|
2929
470
|
}
|
|
2930
|
-
.button__coz-btn-
|
|
471
|
+
.button__coz-btn-sharedWithMe___25PBh {
|
|
2931
472
|
border-color: #b449e7;
|
|
2932
473
|
background-color: #b449e7;
|
|
2933
474
|
color: var(--white);
|
|
2934
475
|
transition: all 0.2s ease-out;
|
|
2935
476
|
}
|
|
2936
|
-
.button__coz-btn-
|
|
2937
|
-
.button__coz-btn-
|
|
477
|
+
.button__coz-btn-sharedWithMe___25PBh:focus,
|
|
478
|
+
.button__coz-btn-sharedWithMe___25PBh:not([disabled]):not([aria-disabled=true]):hover {
|
|
2938
479
|
border-color: #922bc2;
|
|
2939
480
|
background-color: #922bc2;
|
|
2940
481
|
}
|
|
2941
482
|
/* imported from badge.styl */
|
|
2942
483
|
|
|
2943
|
-
.badge__shared-
|
|
484
|
+
.badge__shared-badge___2jGsy {
|
|
2944
485
|
display: flex;
|
|
2945
486
|
align-items: center;
|
|
2946
487
|
justify-content: center;
|
|
2947
488
|
border-radius: 50%;
|
|
2948
489
|
background-clip: padding-box;
|
|
2949
490
|
}
|
|
2950
|
-
.badge__shared-
|
|
491
|
+
.badge__shared-badge___2jGsy.badge__--small___2VMyY {
|
|
2951
492
|
border: 0.125rem solid;
|
|
2952
493
|
border-color: var(--white);
|
|
2953
494
|
width: 1.5rem;
|
|
2954
495
|
height: 1.5rem;
|
|
2955
496
|
}
|
|
2956
|
-
.badge__shared-
|
|
497
|
+
.badge__shared-badge___2jGsy.badge__--small___2VMyY .badge__shared-badge-icon___3s9t1 {
|
|
2957
498
|
width: 0.75rem;
|
|
2958
499
|
height: 0.75rem;
|
|
2959
500
|
}
|
|
2960
|
-
.badge__shared-
|
|
501
|
+
.badge__shared-badge___2jGsy.badge__--xsmall___2cEGG {
|
|
2961
502
|
border: 0.0625rem solid;
|
|
2962
503
|
border-color: var(--white);
|
|
2963
504
|
width: 0.75rem;
|
|
2964
505
|
height: 0.75rem;
|
|
2965
506
|
}
|
|
2966
|
-
.badge__shared-
|
|
507
|
+
.badge__shared-badge___2jGsy.badge__--xsmall___2cEGG .badge__shared-badge-icon___3s9t1 {
|
|
2967
508
|
width: 0.375rem;
|
|
2968
509
|
height: 0.375rem;
|
|
2969
510
|
}
|
|
2970
|
-
.badge__shared-
|
|
511
|
+
.badge__shared-badge___2jGsy.badge__--by-me___3aTHb {
|
|
2971
512
|
background-color: #35ce68;
|
|
2972
513
|
}
|
|
2973
|
-
.badge__shared-
|
|
514
|
+
.badge__shared-badge___2jGsy.badge__--with-me___3jW7R {
|
|
2974
515
|
background-color: #9169f2;
|
|
2975
516
|
}
|
|
2976
517
|
/* imported from status.styl */
|
|
2977
518
|
|
|
2978
|
-
.status__shared-
|
|
519
|
+
.status__shared-status___2HpyL {
|
|
2979
520
|
display: flex;
|
|
2980
521
|
}
|
|
2981
|
-
.status__shared-status-
|
|
522
|
+
.status__shared-status-label___1-jvS {
|
|
2982
523
|
margin-right: 0.5rem;
|
|
2983
524
|
}
|
|
525
|
+
/* imported from publicBanner.styl */
|
|
526
|
+
|
|
527
|
+
.publicBanner__bannermarkdown___1dR1E img {
|
|
528
|
+
background-color: var(--paleGrey);
|
|
529
|
+
color: var(--silver);
|
|
530
|
+
position: relative;
|
|
531
|
+
}
|
|
532
|
+
.publicBanner__bannermarkdown___1dR1E img svg {
|
|
533
|
+
width: 50%;
|
|
534
|
+
height: 50%;
|
|
535
|
+
}
|
|
536
|
+
.publicBanner__bannermarkdown___1dR1E img {
|
|
537
|
+
--circleSize: 2.5rem;
|
|
538
|
+
width: var(--circleSize);
|
|
539
|
+
height: var(--circleSize);
|
|
540
|
+
min-width: var(--circleSize);
|
|
541
|
+
min-height: var(--circleSize);
|
|
542
|
+
font-size: calc(var(--circleSize) / 2.28);
|
|
543
|
+
display: inline-flex;
|
|
544
|
+
align-items: center;
|
|
545
|
+
justify-content: center;
|
|
546
|
+
border-radius: 50%;
|
|
547
|
+
overflow: hidden;
|
|
548
|
+
background-color: var(--dodgerBlue);
|
|
549
|
+
color: var(--white);
|
|
550
|
+
}
|
|
551
|
+
.publicBanner__bannermarkdown___1dR1E {
|
|
552
|
+
font-weight: bold;
|
|
553
|
+
display: inline-block;
|
|
554
|
+
}
|
|
555
|
+
.publicBanner__bannermarkdown___1dR1E img {
|
|
556
|
+
width: 1rem;
|
|
557
|
+
height: 1rem;
|
|
558
|
+
min-width: 1rem;
|
|
559
|
+
min-height: 1rem;
|
|
560
|
+
font-size: 0.438rem;
|
|
561
|
+
vertical-align: text-bottom;
|
|
562
|
+
}
|
|
2984
563
|
/* imported from tooltip.styl */
|
|
2985
564
|
|
|
2986
|
-
.tooltip__shared-
|
|
565
|
+
.tooltip__shared-tooltip___7Dys3 {
|
|
2987
566
|
padding: 0.5rem;
|
|
2988
567
|
font-weight: bold;
|
|
2989
568
|
}
|
|
2990
|
-
.tooltip__shared-tooltip-
|
|
569
|
+
.tooltip__shared-tooltip-list___jD5hi {
|
|
2991
570
|
list-style: none;
|
|
2992
571
|
padding: 0;
|
|
2993
572
|
margin: 0;
|