solid-panes 4.4.0 → 4.4.1
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/README.md +4 -2
- package/dist/RDFXMLPane.css +70 -0
- package/dist/RDFXMLPane.d.ts +13 -0
- package/dist/RDFXMLPane.d.ts.map +1 -0
- package/dist/RDFXMLPane.js +46 -5
- package/dist/dataContentPane.css +271 -0
- package/dist/dataContentPane.d.ts +14 -0
- package/dist/dataContentPane.d.ts.map +1 -0
- package/dist/dataContentPane.js +68 -101
- package/dist/defaultPane.css +97 -0
- package/dist/defaultPane.d.ts +14 -0
- package/dist/defaultPane.d.ts.map +1 -0
- package/dist/defaultPane.js +9 -2
- package/dist/form/formPane.css +120 -0
- package/dist/form/pane.d.ts +4 -0
- package/dist/form/pane.d.ts.map +1 -0
- package/dist/form/pane.js +120 -54
- package/dist/humanReadablePane.css +129 -0
- package/dist/humanReadablePane.d.ts +13 -0
- package/dist/humanReadablePane.d.ts.map +1 -0
- package/dist/humanReadablePane.js +29 -18
- package/dist/icons/signUp.svg +9 -0
- package/dist/imagePane.css +4 -0
- package/dist/imagePane.d.ts +12 -0
- package/dist/imagePane.d.ts.map +1 -0
- package/dist/imagePane.js +19 -21
- package/dist/internal/internalPane.css +14 -0
- package/dist/internal/internalPane.d.ts +1 -0
- package/dist/internal/internalPane.d.ts.map +1 -1
- package/dist/internal/internalPane.js +5 -6
- package/dist/mainPage/header.js +2 -2
- package/dist/mainPage/index.d.ts +2 -1
- package/dist/mainPage/index.d.ts.map +1 -1
- package/dist/mainPage/index.js +23 -0
- package/dist/mainPage/menu.d.ts.map +1 -1
- package/dist/mainPage/menu.js +29 -2
- package/dist/n3Pane.css +49 -0
- package/dist/n3Pane.d.ts +13 -0
- package/dist/n3Pane.d.ts.map +1 -0
- package/dist/n3Pane.js +36 -5
- package/dist/outline/manager.js +20 -1
- package/dist/pad/padPane.css +6 -2
- package/dist/pad/padPane.js +1 -1
- package/dist/registerPanes.js +8 -8
- package/dist/schedule/schedulePane.css +294 -0
- package/dist/schedule/schedulePane.d.ts +23 -0
- package/dist/schedule/schedulePane.d.ts.map +1 -0
- package/dist/schedule/schedulePane.js +161 -61
- package/dist/social/editProfileDetails.d.ts +3 -3
- package/dist/social/editProfileDetails.d.ts.map +1 -1
- package/dist/social/editProfileDetails.js +222 -127
- package/dist/social/icons.d.ts +2 -0
- package/dist/social/icons.d.ts.map +1 -1
- package/dist/social/icons.js +39 -4
- package/dist/social/socialPane.css +838 -178
- package/dist/social/socialPane.d.ts.map +1 -1
- package/dist/social/socialPane.js +136 -43
- package/dist/social/socialSections.d.ts +11 -0
- package/dist/social/socialSections.d.ts.map +1 -1
- package/dist/social/socialSections.js +138 -62
- package/dist/social/spinner.d.ts +3 -0
- package/dist/social/spinner.d.ts.map +1 -0
- package/dist/social/spinner.js +13 -0
- package/dist/social/triage.d.ts +17 -0
- package/dist/social/triage.d.ts.map +1 -0
- package/dist/social/triage.js +79 -0
- package/dist/solid-panes.js +25772 -9576
- package/dist/solid-panes.js.map +1 -1
- package/dist/solid-panes.min.js +2583 -927
- package/dist/solid-panes.min.js.map +1 -1
- package/dist/{style → styles}/tabbedtab.css +0 -157
- package/dist/styles/utilities.css +5 -0
- package/dist/versionInfo.js +14 -14
- package/package.json +26 -25
- package/dist/icons/signup.png +0 -0
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
.social-pane-host,
|
|
1
2
|
.social-pane {
|
|
3
|
+
--profile-interactive-cursor: pointer;
|
|
2
4
|
display: block;
|
|
3
5
|
background: var(--color-background, #F8F9FB);
|
|
4
6
|
border-radius: var(--border-radius-base, 0.3125rem);
|
|
@@ -10,45 +12,59 @@
|
|
|
10
12
|
margin: 0;
|
|
11
13
|
}
|
|
12
14
|
|
|
13
|
-
.social-pane__header-section {
|
|
14
|
-
background:white;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.social-pane__header {
|
|
18
|
-
position: relative;
|
|
19
|
-
width: 100%;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
15
|
.social-pane__header-content {
|
|
23
|
-
display:
|
|
16
|
+
display: grid;
|
|
17
|
+
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
24
18
|
align-items: flex-start;
|
|
25
|
-
gap: var(--spacing-
|
|
26
|
-
|
|
19
|
+
column-gap: var(--spacing-md, 1.25rem);
|
|
20
|
+
row-gap: var(--spacing-xxs, 0.3125rem);
|
|
21
|
+
min-width: 0;
|
|
22
|
+
width: 100%;
|
|
27
23
|
}
|
|
28
24
|
|
|
29
25
|
.social-pane__header-media {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
flex-direction: column;
|
|
33
|
-
align-items: flex-start;
|
|
34
|
-
width: 180px;
|
|
35
|
-
gap: var(--spacing-base, 0.5rem);
|
|
36
|
-
overflow: visible;
|
|
37
|
-
border-radius: var(--border-radius-full, 0.625rem);
|
|
26
|
+
grid-column: 1;
|
|
27
|
+
grid-row: 1;
|
|
38
28
|
}
|
|
39
29
|
|
|
40
30
|
.social-pane__header-details {
|
|
31
|
+
grid-column: 2;
|
|
32
|
+
grid-row: 1;
|
|
41
33
|
display: flex;
|
|
42
|
-
flex: 1 1 auto;
|
|
43
34
|
flex-direction: column;
|
|
44
35
|
align-items: flex-start;
|
|
45
|
-
gap: var(--spacing-xs, 0.75rem);
|
|
46
36
|
min-width: 0;
|
|
47
37
|
}
|
|
48
38
|
|
|
39
|
+
.social-pane__header-actions {
|
|
40
|
+
grid-column: 3;
|
|
41
|
+
grid-row: 1;
|
|
42
|
+
margin-left: auto;
|
|
43
|
+
align-self: flex-start;
|
|
44
|
+
justify-self: end;
|
|
45
|
+
display: flex;
|
|
46
|
+
align-items: flex-start;
|
|
47
|
+
gap: var(--spacing-xs, 0.5rem);
|
|
48
|
+
flex-wrap: wrap;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.social-pane__header-actions--friend {
|
|
52
|
+
justify-content: center;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.social-pane__header-actions--friend > solid-ui-button {
|
|
56
|
+
margin-inline: auto;
|
|
57
|
+
--button-border-radius: var(--border-radius-md, 0.5rem);
|
|
58
|
+
--button-hover-text: var(--color-primary, #7C4DFF);
|
|
59
|
+
--button-hover-border: var(--color-primary, #7C4DFF);
|
|
60
|
+
}
|
|
61
|
+
|
|
49
62
|
.social-pane__header-summary {
|
|
50
|
-
|
|
51
|
-
|
|
63
|
+
display: flex;
|
|
64
|
+
flex-direction: column;
|
|
65
|
+
align-items: flex-start;
|
|
66
|
+
gap: var(--spacing-xxs, 0.125rem);
|
|
67
|
+
width: 100%;
|
|
52
68
|
max-width: 100%;
|
|
53
69
|
}
|
|
54
70
|
|
|
@@ -58,13 +74,14 @@
|
|
|
58
74
|
gap: var(--spacing-xs, 0.75rem);
|
|
59
75
|
justify-content: flex-start;
|
|
60
76
|
align-self: flex-start;
|
|
77
|
+
margin-top: var(--spacing-xxs, 0.3125rem);
|
|
61
78
|
}
|
|
62
79
|
|
|
63
80
|
.social-pane__header-stat {
|
|
64
81
|
appearance: none;
|
|
65
82
|
border: 0;
|
|
66
83
|
background: transparent;
|
|
67
|
-
cursor: pointer;
|
|
84
|
+
cursor: var(--profile-interactive-cursor, pointer);
|
|
68
85
|
color: var(--slate-700, #314158);
|
|
69
86
|
font-size: var(--font-size-sm, 0.875rem);
|
|
70
87
|
font-weight: var(--font-weight-bold, 600);
|
|
@@ -91,76 +108,62 @@
|
|
|
91
108
|
}
|
|
92
109
|
|
|
93
110
|
.social-pane__edit-button {
|
|
94
|
-
position:
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
border:
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
111
|
+
position: static;
|
|
112
|
+
display: inline-block;
|
|
113
|
+
min-width: 0;
|
|
114
|
+
width: auto;
|
|
115
|
+
max-width: none;
|
|
116
|
+
--button-height-sm: 0;
|
|
117
|
+
--button-padding-sm: var(--spacing-xxs, 0.3125rem);
|
|
118
|
+
--button-background: transparent;
|
|
119
|
+
--button-border: transparent;
|
|
120
|
+
--button-border-width: 0;
|
|
121
|
+
--button-hover-background: transparent;
|
|
122
|
+
--button-hover-border: transparent;
|
|
123
|
+
--button-text: var(--color-primary, #7C4DFF);
|
|
124
|
+
--button-hover-text: var(--color-primary, #7C4DFF);
|
|
125
|
+
--button-font-size-sm: var(--font-size-sm, 0.875rem);
|
|
126
|
+
--button-font-weight: var(--font-weight-regular, 400);
|
|
127
|
+
--button-line-height: var(--line-height-base, 1.5);
|
|
128
|
+
--button-icon-size-sm: 0.875rem;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.social-pane__edit-button::part(button):hover {
|
|
113
132
|
text-decoration: underline;
|
|
114
133
|
}
|
|
115
134
|
|
|
116
|
-
.social-pane__edit-button:focus-visible {
|
|
135
|
+
.social-pane__edit-button::part(button):focus-visible {
|
|
117
136
|
outline: var(--border-width-medium, 2px) solid var(--color-primary, #7C4DFF);
|
|
118
137
|
outline-offset: 2px;
|
|
119
138
|
}
|
|
120
139
|
|
|
121
|
-
.social-pane__edit-button-
|
|
140
|
+
.social-pane__edit-button-label {
|
|
122
141
|
display: inline-flex;
|
|
123
142
|
align-items: center;
|
|
124
|
-
|
|
125
|
-
line-height: 0;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.social-pane__edit-button-icon svg {
|
|
129
|
-
width: var(--icon-xxs, 1rem);
|
|
130
|
-
height: var(--icon-xs, 1rem);
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.social-pane__edit-button-icon svg path {
|
|
134
|
-
fill: currentColor;
|
|
135
|
-
stroke: currentColor;
|
|
143
|
+
gap: var(--spacing-xxs, 0.3125rem);
|
|
136
144
|
}
|
|
137
145
|
|
|
138
|
-
.social-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
z-index: 1;
|
|
143
|
-
width: auto;
|
|
144
|
-
min-width: 0;
|
|
145
|
-
max-width: none;
|
|
146
|
-
padding: var(--spacing-xxs, 0.3125rem) var(--spacing-xs, 0.75rem);
|
|
147
|
-
gap: var(--spacing-xxs, 0.3125rem);
|
|
148
|
-
border-radius: var(--border-radius-md, 0.5rem);
|
|
149
|
-
border: 1px solid var(--color-primary, #7C4DFF);
|
|
150
|
-
background: transparent;
|
|
151
|
-
color: var(--color-primary, #7C4DFF);
|
|
152
|
-
cursor: pointer;
|
|
153
|
-
font: inherit;
|
|
154
|
-
font-weight: var(--font-weight-bold, 600);
|
|
146
|
+
.social-pane__edit-button .profile-section-collapsible__edit-icon,
|
|
147
|
+
.social-pane__edit-button-icon {
|
|
148
|
+
display: none;
|
|
149
|
+
line-height: 0;
|
|
155
150
|
}
|
|
156
151
|
|
|
157
|
-
.social-
|
|
158
|
-
|
|
152
|
+
.social-pane__edit-button-label svg,
|
|
153
|
+
.social-pane__edit-button-icon svg,
|
|
154
|
+
.social-pane__edit-button .profile-section-collapsible__edit-icon svg {
|
|
155
|
+
width: 0.875rem;
|
|
156
|
+
height: 0.875rem;
|
|
157
|
+
display: inline-block;
|
|
158
|
+
flex: 0 0 auto;
|
|
159
|
+
vertical-align: middle;
|
|
159
160
|
}
|
|
160
161
|
|
|
161
|
-
.social-
|
|
162
|
-
|
|
163
|
-
|
|
162
|
+
.social-pane__edit-button-label svg path,
|
|
163
|
+
.social-pane__edit-button-icon svg path,
|
|
164
|
+
.social-pane__edit-button .profile-section-collapsible__edit-icon svg path {
|
|
165
|
+
fill: var(--color-primary, #7C4DFF);
|
|
166
|
+
stroke: none;
|
|
164
167
|
}
|
|
165
168
|
|
|
166
169
|
.social-pane__dialog-backdrop {
|
|
@@ -172,6 +175,7 @@
|
|
|
172
175
|
}
|
|
173
176
|
|
|
174
177
|
.social-pane__dialog {
|
|
178
|
+
position: relative;
|
|
175
179
|
width: min(32rem, 100%);
|
|
176
180
|
max-height: calc(100vh - 2rem);
|
|
177
181
|
overflow: auto;
|
|
@@ -187,6 +191,9 @@
|
|
|
187
191
|
align-items: flex-start;
|
|
188
192
|
justify-content: space-between;
|
|
189
193
|
gap: var(--spacing-md, 1rem);
|
|
194
|
+
padding-bottom: var(--spacing-base, 0.5rem);
|
|
195
|
+
margin-bottom: var(--spacing-sm, 0.938rem);
|
|
196
|
+
border-bottom: var(--border-width-sm, 0.1rem) solid var(--slate-200, #E2E8F0);
|
|
190
197
|
}
|
|
191
198
|
|
|
192
199
|
.social-pane__dialog-title {
|
|
@@ -195,11 +202,11 @@
|
|
|
195
202
|
|
|
196
203
|
.social-pane__dialog-close {
|
|
197
204
|
flex: 0 0 auto;
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
205
|
+
--button-background: transparent;
|
|
206
|
+
--button-border: transparent;
|
|
207
|
+
--button-border-width: 0;
|
|
208
|
+
--button-hover-background: transparent;
|
|
209
|
+
--button-hover-border: transparent;
|
|
203
210
|
color: var(--color-text-subheading, #6b7280);
|
|
204
211
|
cursor: pointer;
|
|
205
212
|
padding: 0;
|
|
@@ -224,21 +231,46 @@
|
|
|
224
231
|
fill: currentColor;
|
|
225
232
|
}
|
|
226
233
|
|
|
227
|
-
.social-pane__dialog-
|
|
228
|
-
|
|
229
|
-
color: var(--color-text-secondary, #4A5565);
|
|
234
|
+
.social-pane__dialog-form {
|
|
235
|
+
gap: var(--spacing-sm, 0.938rem);
|
|
230
236
|
}
|
|
231
237
|
|
|
232
|
-
.social-pane__dialog-
|
|
238
|
+
.social-pane__dialog-fields {
|
|
239
|
+
display: flex;
|
|
240
|
+
flex-direction: column;
|
|
233
241
|
gap: var(--spacing-sm, 0.938rem);
|
|
234
242
|
}
|
|
235
243
|
|
|
236
244
|
.social-pane__dialog-field {
|
|
237
|
-
gap:
|
|
245
|
+
gap: 0.2rem;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.social-pane__dialog-field-header {
|
|
249
|
+
display: flex;
|
|
250
|
+
align-items: center;
|
|
251
|
+
justify-content: space-between;
|
|
252
|
+
gap: var(--spacing-xs, 0.75rem);
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.social-pane__dialog-row-list {
|
|
256
|
+
display: flex;
|
|
257
|
+
flex-direction: column;
|
|
258
|
+
gap: 0.2rem;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.social-pane__dialog-row {
|
|
262
|
+
display: grid;
|
|
263
|
+
grid-template-columns: minmax(0, 1fr) auto;
|
|
264
|
+
align-items: center;
|
|
265
|
+
gap: 0.45rem;
|
|
238
266
|
}
|
|
239
267
|
|
|
240
268
|
.social-pane__dialog-label {
|
|
241
|
-
|
|
269
|
+
margin: 0;
|
|
270
|
+
color: var(--gray-700, #364153);
|
|
271
|
+
font-size: var(--font-size-md, 1rem); /* 16px */
|
|
272
|
+
font-weight: var(--font-weight-md, 500);
|
|
273
|
+
line-height: normal;
|
|
242
274
|
}
|
|
243
275
|
|
|
244
276
|
.social-pane__dialog-input {
|
|
@@ -254,23 +286,178 @@
|
|
|
254
286
|
color: var(--color-warning, red);
|
|
255
287
|
}
|
|
256
288
|
|
|
289
|
+
.social-pane__dialog-saving-overlay {
|
|
290
|
+
position: absolute;
|
|
291
|
+
inset: 0;
|
|
292
|
+
display: grid;
|
|
293
|
+
place-items: center;
|
|
294
|
+
background: rgba(255, 255, 255, 0.78);
|
|
295
|
+
z-index: 10;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.social-pane__dialog-saving-overlay[hidden] {
|
|
299
|
+
display: none;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.social-pane__dialog.modal--saving .social-pane__dialog-form {
|
|
303
|
+
opacity: 0.45;
|
|
304
|
+
pointer-events: none;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.social-pane__dialog .modal__saving-indicator {
|
|
308
|
+
gap: 0;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.social-pane__dialog-row-button-icon {
|
|
312
|
+
display: inline-flex;
|
|
313
|
+
align-items: center;
|
|
314
|
+
justify-content: center;
|
|
315
|
+
line-height: 0;
|
|
316
|
+
flex: 0 0 auto;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.social-pane__dialog-row-button-icon svg {
|
|
320
|
+
display: block;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.social-pane__dialog-field-header solid-ui-button.social-pane__dialog-row-button--add {
|
|
324
|
+
justify-self: flex-start;
|
|
325
|
+
width: auto;
|
|
326
|
+
min-width: 0;
|
|
327
|
+
max-width: none;
|
|
328
|
+
margin-left: auto;
|
|
329
|
+
flex: 0 0 auto;
|
|
330
|
+
box-sizing: border-box;
|
|
331
|
+
--button-min-height: auto;
|
|
332
|
+
--button-padding-sm: var(--spacing-xxs, 0.3125rem);
|
|
333
|
+
--button-background: transparent;
|
|
334
|
+
--button-border: transparent;
|
|
335
|
+
--button-border-width: 0;
|
|
336
|
+
--button-hover-background: transparent;
|
|
337
|
+
--button-hover-border: transparent;
|
|
338
|
+
--button-text: var(--color-primary, #7C4DFF);
|
|
339
|
+
--button-hover-text: var(--color-primary, #7C4DFF);
|
|
340
|
+
--button-height-sm: auto;
|
|
341
|
+
--button-font-weight: var(--font-weight-md, 500);
|
|
342
|
+
--button-font-size-sm: var(--font-size-sm, 0.875rem);
|
|
343
|
+
--button-line-height: var(--line-height-base, 1.5);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.social-pane__dialog-field-header solid-ui-button.social-pane__dialog-row-button--add::part(button) {
|
|
347
|
+
min-height: auto;
|
|
348
|
+
padding: var(--spacing-xxs, 0.3125rem);
|
|
349
|
+
border: none;
|
|
350
|
+
background: none;
|
|
351
|
+
color: var(--color-primary, #7C4DFF);
|
|
352
|
+
font-weight: var(--font-weight-md, 500);
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.social-pane__dialog-field-header solid-ui-button.social-pane__dialog-row-button--add:hover::part(button) {
|
|
356
|
+
text-decoration: underline;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.social-pane__add-more-content {
|
|
360
|
+
display: inline;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.social-pane__add-more-inline {
|
|
364
|
+
display: inline;
|
|
365
|
+
white-space: normal;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.social-pane__add-more-icon {
|
|
369
|
+
display: inline-block;
|
|
370
|
+
width: var(--icon-xxxs, 0.75rem);
|
|
371
|
+
height: var(--icon-xxxs, 0.75rem);
|
|
372
|
+
margin-right: var(--spacing-xxs, 0.3125rem);
|
|
373
|
+
line-height: 0;
|
|
374
|
+
vertical-align: text-top;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.social-pane__add-more-icon svg {
|
|
378
|
+
width: 100%;
|
|
379
|
+
height: 100%;
|
|
380
|
+
display: block;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.social-pane__dialog-row-list solid-ui-button.social-pane__dialog-row-button--remove {
|
|
384
|
+
min-height: var(--min-touch-target, 44px);
|
|
385
|
+
min-width: var(--min-touch-target, 44px);
|
|
386
|
+
color: var(--gray-300, #D1D5DC);
|
|
387
|
+
--button-background: transparent;
|
|
388
|
+
--button-box-shadow: none;
|
|
389
|
+
--button-active-box-shadow: none;
|
|
390
|
+
--button-active-transform: none;
|
|
391
|
+
--button-border: transparent;
|
|
392
|
+
--button-border-width: 0;
|
|
393
|
+
--button-border-radius: var(--border-radius-base, 0.3125rem);
|
|
394
|
+
--button-hover-background: var(--lavender-300, #e6dcff);
|
|
395
|
+
--button-hover-border: transparent;
|
|
396
|
+
--button-hover-text: var(--color-primary, #7C4DFF);
|
|
397
|
+
--button-hover-box-shadow: none;
|
|
398
|
+
--button-text: currentColor;
|
|
399
|
+
--button-height-md: var(--min-touch-target, 44px);
|
|
400
|
+
--button-padding-md: 0;
|
|
401
|
+
--button-padding-x-sm: 0;
|
|
402
|
+
--button-icon-size-md: var(--icon-xxs, 1rem);
|
|
403
|
+
--button-icon-size-lg: var(--icon-xxs, 1rem);
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.social-pane__dialog-row-list solid-ui-button.social-pane__dialog-row-button--remove:hover,
|
|
407
|
+
.social-pane__dialog-row-list solid-ui-button.social-pane__dialog-row-button--remove:focus-within {
|
|
408
|
+
color: var(--gray-300, #D1D5DC);
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.social-pane__dialog-row-button-icon--remove svg {
|
|
412
|
+
width: 1rem;
|
|
413
|
+
height: 1rem;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.social-pane__dialog-row-button-icon--remove svg path {
|
|
417
|
+
stroke: currentColor;
|
|
418
|
+
}
|
|
419
|
+
|
|
257
420
|
.social-pane__dialog-actions {
|
|
258
421
|
display: flex;
|
|
259
422
|
justify-content: flex-end;
|
|
260
423
|
gap: var(--spacing-xs, 0.75rem);
|
|
424
|
+
padding-top: var(--spacing-base, 0.5rem);
|
|
425
|
+
margin-top: 0;
|
|
426
|
+
border-top: var(--border-width-sm, 0.1rem) solid var(--slate-200, #E2E8F0);
|
|
261
427
|
}
|
|
262
428
|
|
|
263
|
-
.social-pane__dialog-button {
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
429
|
+
.social-pane__dialog-actions > solid-ui-button {
|
|
430
|
+
width: 10.8rem;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.social-pane__dialog-actions > solid-ui-button {
|
|
434
|
+
--button-border-width: 1px;
|
|
435
|
+
--button-border-radius: var(--border-radius-base, 0.3125rem);
|
|
436
|
+
--button-box-shadow: none;
|
|
437
|
+
--button-hover-box-shadow: none;
|
|
438
|
+
--button-active-box-shadow: none;
|
|
439
|
+
--button-active-transform: none;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.social-pane__dialog-actions solid-ui-button.social-pane__dialog-button--save {
|
|
443
|
+
--button-font-size-md: var(--font-size-lg, 1.125rem);
|
|
444
|
+
--button-background: var(--color-primary, #7C4DFF);
|
|
445
|
+
--button-border: var(--color-primary, #7C4DFF);
|
|
446
|
+
--button-text: var(--white, #FFF);
|
|
447
|
+
--button-hover-background: color-mix(in srgb, var(--color-primary, #7C4DFF) 90%, black);
|
|
448
|
+
--button-hover-border: color-mix(in srgb, var(--color-primary, #7C4DFF) 90%, black);
|
|
449
|
+
--button-hover-text: var(--white, #FFF);
|
|
269
450
|
}
|
|
270
451
|
|
|
271
|
-
.social-pane__dialog-button
|
|
272
|
-
|
|
273
|
-
|
|
452
|
+
.social-pane__dialog-actions solid-ui-button.social-pane__dialog-button--cancel {
|
|
453
|
+
--button-background: var(--white, #FFF);
|
|
454
|
+
--button-border: var(--gray-300, #D1D5DC);
|
|
455
|
+
--button-font-weight: var(--font-weight-normal, normal);
|
|
456
|
+
--button-text: var(--gray-800, #1E2939);
|
|
457
|
+
--button-hover-background: var(--blue-900, #083575);
|
|
458
|
+
--button-hover-border: var(--blue-900, #083575);
|
|
459
|
+
--button-hover-text: var(--white, #FFF);
|
|
460
|
+
--button-font-size-md: var(--font-size-sm, 0.875rem);
|
|
274
461
|
}
|
|
275
462
|
|
|
276
463
|
.social-pane__header-name {
|
|
@@ -282,24 +469,27 @@
|
|
|
282
469
|
text-indent: 0;
|
|
283
470
|
line-height: 1.2;
|
|
284
471
|
text-align: left;
|
|
285
|
-
|
|
472
|
+
overflow-wrap: anywhere;
|
|
473
|
+
transform: translateX(-4px);
|
|
286
474
|
}
|
|
287
475
|
|
|
288
476
|
.social-pane__header-location {
|
|
289
477
|
display: inline-flex;
|
|
290
478
|
align-items: center;
|
|
291
|
-
gap: 0.
|
|
292
|
-
color: var(--
|
|
293
|
-
font-size: var(--font-size-
|
|
479
|
+
gap: var(--spacing-2xs, 0.625rem);
|
|
480
|
+
color: var(--color-text-secondary, #4A5565);
|
|
481
|
+
font-size: var(--font-size-sm, 0.875rem);
|
|
294
482
|
font-weight: var(--font-weight-normal, 400);
|
|
295
|
-
line-height: 1.
|
|
483
|
+
line-height: 1.2;
|
|
296
484
|
}
|
|
297
485
|
|
|
298
486
|
.social-pane__header-job-org {
|
|
299
487
|
margin: 0;
|
|
300
488
|
color: var(--color-text-subheading, #101828);
|
|
301
|
-
|
|
302
|
-
|
|
489
|
+
width: 100%;
|
|
490
|
+
white-space: normal;
|
|
491
|
+
font-size: var(--font-size-lg, 1.125rem);
|
|
492
|
+
font-weight: var(--font-weight-md, 500);
|
|
303
493
|
line-height: 1.25;
|
|
304
494
|
text-align: left;
|
|
305
495
|
}
|
|
@@ -403,7 +593,8 @@
|
|
|
403
593
|
box-shadow: none !important;
|
|
404
594
|
}
|
|
405
595
|
|
|
406
|
-
.social-pane .social-primary__tab[aria-selected='true']
|
|
596
|
+
.social-pane .social-primary__tab[aria-selected='true'],
|
|
597
|
+
.social-pane .social-primary__tab--active {
|
|
407
598
|
background: transparent;
|
|
408
599
|
color: var(--grey-purple-900, #332746);
|
|
409
600
|
box-shadow: none !important;
|
|
@@ -416,16 +607,10 @@
|
|
|
416
607
|
box-shadow: none !important;
|
|
417
608
|
}
|
|
418
609
|
|
|
419
|
-
.social-pane .social-primary__tab--active {
|
|
420
|
-
background: transparent;
|
|
421
|
-
color: var(--grey-purple-900, #332746);
|
|
422
|
-
border-bottom-color: var(--color-primary, #7C4DFF);
|
|
423
|
-
box-shadow: none !important;
|
|
424
|
-
}
|
|
425
|
-
|
|
426
610
|
.social-pane .social-primary__panel {
|
|
427
611
|
grid-column: 1;
|
|
428
612
|
grid-row: 2;
|
|
613
|
+
display: none;
|
|
429
614
|
opacity: 0;
|
|
430
615
|
visibility: hidden;
|
|
431
616
|
pointer-events: none;
|
|
@@ -434,9 +619,11 @@
|
|
|
434
619
|
}
|
|
435
620
|
|
|
436
621
|
.social-pane .social-primary__panel--active {
|
|
622
|
+
display: block;
|
|
437
623
|
opacity: 1;
|
|
438
624
|
visibility: visible;
|
|
439
625
|
pointer-events: auto;
|
|
626
|
+
transform: translateY(0);
|
|
440
627
|
border: 0;
|
|
441
628
|
border-bottom: var(--border-width-sm, 0.1rem) solid transparent;
|
|
442
629
|
transition: opacity 180ms ease, transform 180ms ease;
|
|
@@ -448,30 +635,6 @@
|
|
|
448
635
|
padding-top: var(--spacing-xxxs, 0.2rem);
|
|
449
636
|
}
|
|
450
637
|
|
|
451
|
-
.social-pane .social-nav {
|
|
452
|
-
display: block;
|
|
453
|
-
width: 100%;
|
|
454
|
-
background-color: var(--gray-200, #E5E7EB);
|
|
455
|
-
background: transparent;
|
|
456
|
-
padding: var(--spacing-base, 0.5rem);
|
|
457
|
-
box-sizing: border-box;
|
|
458
|
-
border-bottom-color: var(--color-primary, #7C4DFF);
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
.social-pane .social-toolbar {
|
|
462
|
-
flex: 0 0 30%;
|
|
463
|
-
min-width: 14rem;
|
|
464
|
-
background-color: var(--gray-200, #E5E7EB);
|
|
465
|
-
border: 0;
|
|
466
|
-
padding: var(--spacing-base, 0.5rem);
|
|
467
|
-
box-sizing: border-box;
|
|
468
|
-
background: transparent;
|
|
469
|
-
border-bottom-color: var(--color-primary, #7C4DFF);
|
|
470
|
-
display: block;
|
|
471
|
-
width: 100%;
|
|
472
|
-
padding-top: 0;
|
|
473
|
-
}
|
|
474
|
-
|
|
475
638
|
.social-pane .social-main {
|
|
476
639
|
display: table;
|
|
477
640
|
background-color: var(--color-card-bg, #fff);
|
|
@@ -491,6 +654,52 @@
|
|
|
491
654
|
border-radius: var(--border-radius-lg, 0.75rem);
|
|
492
655
|
}
|
|
493
656
|
|
|
657
|
+
.social-pane .social-main--requests {
|
|
658
|
+
display: flex;
|
|
659
|
+
flex-direction: column;
|
|
660
|
+
gap: var(--spacing-md, 1rem);
|
|
661
|
+
margin-top: 0.75rem;
|
|
662
|
+
margin-bottom: 1rem;
|
|
663
|
+
padding: 1rem;
|
|
664
|
+
border-radius: var(--border-radius-lg, 0.75rem);
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.social-requests__note {
|
|
668
|
+
margin: 0;
|
|
669
|
+
color: var(--color-text-subheading, #475467);
|
|
670
|
+
font-size: var(--font-size-sm, 0.875rem);
|
|
671
|
+
line-height: 1.5;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.social-requests__group {
|
|
675
|
+
gap: var(--spacing-sm, 0.938rem);
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.social-requests__group-header {
|
|
679
|
+
display: flex;
|
|
680
|
+
flex-direction: column;
|
|
681
|
+
gap: 0.125rem;
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
.social-requests__group-title {
|
|
685
|
+
margin: 0;
|
|
686
|
+
color: var(--color-text-heading, #101828);
|
|
687
|
+
font-size: var(--font-size-lg, 1.125rem);
|
|
688
|
+
line-height: 1.25;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
.social-requests__group-description,
|
|
692
|
+
.social-requests__empty {
|
|
693
|
+
margin: 0;
|
|
694
|
+
color: var(--color-text-subheading, #667085);
|
|
695
|
+
font-size: var(--font-size-sm, 0.875rem);
|
|
696
|
+
line-height: 1.5;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.social-requests__table {
|
|
700
|
+
margin-top: 0;
|
|
701
|
+
}
|
|
702
|
+
|
|
494
703
|
.social-pane .social-mutual-summary {
|
|
495
704
|
gap: var(--spacing-base, 0.5rem);
|
|
496
705
|
}
|
|
@@ -527,11 +736,13 @@
|
|
|
527
736
|
.social-pane .social-mutual-checkbox-form {
|
|
528
737
|
display: block;
|
|
529
738
|
margin: 0;
|
|
739
|
+
padding: 0 1rem 1rem;
|
|
530
740
|
}
|
|
531
741
|
|
|
532
742
|
.social-pane .social-mutual-checkbox-form label {
|
|
533
743
|
display: inline-flex;
|
|
534
744
|
align-items: center;
|
|
745
|
+
flex-wrap: wrap;
|
|
535
746
|
gap: var(--spacing-2xs, 0.65rem);
|
|
536
747
|
color: var(--slate-700, #374151);
|
|
537
748
|
font-size: var(--font-size-sm, 0.875rem);
|
|
@@ -566,7 +777,16 @@
|
|
|
566
777
|
gap: var(--spacing-xs, 0.75rem);
|
|
567
778
|
}
|
|
568
779
|
|
|
569
|
-
.social-pane .social-friends-grid >
|
|
780
|
+
.social-pane .social-friends-grid > tbody {
|
|
781
|
+
display: flex;
|
|
782
|
+
flex-wrap: wrap;
|
|
783
|
+
align-items: stretch;
|
|
784
|
+
width: 100%;
|
|
785
|
+
gap: var(--spacing-xs, 0.75rem);
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.social-pane .social-friends-grid > tr,
|
|
789
|
+
.social-pane .social-friends-grid > tbody > tr {
|
|
570
790
|
display: inline-table;
|
|
571
791
|
width: calc(50% - 0.375rem);
|
|
572
792
|
table-layout: fixed;
|
|
@@ -574,6 +794,7 @@
|
|
|
574
794
|
}
|
|
575
795
|
|
|
576
796
|
.social-pane .social-friends-grid > tr,
|
|
797
|
+
.social-pane .social-friends-grid > tbody > tr,
|
|
577
798
|
.social-pane .social-friend-card {
|
|
578
799
|
border: 1px solid var(--gray-200, #E5E7EB);
|
|
579
800
|
background: var(--white, #fff);
|
|
@@ -584,6 +805,7 @@
|
|
|
584
805
|
}
|
|
585
806
|
|
|
586
807
|
.social-pane .social-friends-grid > tr:hover,
|
|
808
|
+
.social-pane .social-friends-grid > tbody > tr:hover,
|
|
587
809
|
.social-pane .social-friend-card:hover {
|
|
588
810
|
border-color: var(--gray-300, #D1D5DC);
|
|
589
811
|
box-shadow: 0 6px 18px rgb(0 0 0 / 0.1);
|
|
@@ -591,49 +813,86 @@
|
|
|
591
813
|
}
|
|
592
814
|
|
|
593
815
|
.social-pane .social-friends-grid > tr td,
|
|
816
|
+
.social-pane .social-friends-grid > tbody > tr td,
|
|
594
817
|
.social-pane .social-friend-card td {
|
|
595
818
|
background: var(--color-background, #F8F9FB);
|
|
819
|
+
box-sizing: border-box;
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
.social-pane .social-friends-grid > tr > td:nth-child(2),
|
|
823
|
+
.social-pane .social-friends-grid > tbody > tr > td:nth-child(2) {
|
|
824
|
+
width: auto;
|
|
825
|
+
min-width: 0;
|
|
826
|
+
padding-left: 1.4rem;
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
.social-pane .social-friends-grid > tr > td:nth-child(3),
|
|
830
|
+
.social-pane .social-friends-grid > tbody > tr > td:nth-child(3) {
|
|
831
|
+
width: 2.5rem;
|
|
832
|
+
min-width: 2.5rem;
|
|
833
|
+
padding-left: 0.25rem;
|
|
834
|
+
vertical-align: top;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.social-pane .social-friends-grid > tr > td:first-child,
|
|
838
|
+
.social-pane .social-friends-grid > tbody > tr > td:first-child {
|
|
839
|
+
padding-right: 1.2rem;
|
|
596
840
|
}
|
|
597
841
|
|
|
598
842
|
.social-pane .social-friends-grid td > div > div {
|
|
599
|
-
min-width:
|
|
600
|
-
max-width:
|
|
601
|
-
width:
|
|
843
|
+
min-width: 0 !important;
|
|
844
|
+
max-width: 100% !important;
|
|
845
|
+
width: 100% !important;
|
|
602
846
|
white-space: normal !important;
|
|
847
|
+
overflow-wrap: anywhere;
|
|
603
848
|
}
|
|
604
849
|
|
|
605
850
|
.social-pane .social-friends-grid td > div > div button {
|
|
606
851
|
white-space: normal !important;
|
|
607
852
|
}
|
|
608
853
|
|
|
854
|
+
.social-pane .social-friends-grid > tr > td:nth-child(2) > div:first-child,
|
|
855
|
+
.social-pane .social-friends-grid > tbody > tr > td:nth-child(2) > div:first-child {
|
|
856
|
+
display: flex;
|
|
857
|
+
flex-wrap: wrap;
|
|
858
|
+
align-items: flex-start;
|
|
859
|
+
gap: 0.2rem 0.4rem;
|
|
860
|
+
min-width: 0;
|
|
861
|
+
}
|
|
862
|
+
|
|
609
863
|
/* change the style of the name / label in the friend card */
|
|
610
|
-
.social-pane .social-friends-grid > tr > td:nth-child(2) > div:first-child > span
|
|
864
|
+
.social-pane .social-friends-grid > tr > td:nth-child(2) > div:first-child > span:first-of-type,
|
|
865
|
+
.social-pane .social-friends-grid > tbody > tr > td:nth-child(2) > div:first-child > span:first-of-type {
|
|
611
866
|
display: inline-block;
|
|
612
|
-
width: min(20rem, 100%);
|
|
613
867
|
max-width: 100%;
|
|
614
868
|
vertical-align: text-top;
|
|
615
869
|
font-size: var(--font-size-lg, 1.125rem); /* 18px */
|
|
616
870
|
font-weight: var(--font-weight-bold, 600); /* new design uses 600 */
|
|
617
871
|
line-height: var(--line-height-tight);
|
|
618
872
|
margin-top: 0;
|
|
619
|
-
margin-bottom:
|
|
620
|
-
overflow:
|
|
621
|
-
text-overflow:
|
|
622
|
-
white-space:
|
|
873
|
+
margin-bottom: 0;
|
|
874
|
+
overflow: visible;
|
|
875
|
+
text-overflow: clip;
|
|
876
|
+
white-space: normal;
|
|
877
|
+
overflow-wrap: anywhere;
|
|
623
878
|
}
|
|
624
879
|
|
|
625
880
|
.social-pane .social-friend-pronouns {
|
|
881
|
+
display: inline;
|
|
882
|
+
margin-left: var(--spacing-xs, 0.25rem);
|
|
626
883
|
color: var(--color-text-secondary, #4A5565);
|
|
627
884
|
font-size: var(--font-size-sm, 0.875rem); /* 14px */
|
|
628
885
|
font-weight: var(--font-weight-regular, 400);
|
|
629
886
|
line-height: 1.2;
|
|
630
|
-
text-align:
|
|
887
|
+
text-align: left;
|
|
631
888
|
}
|
|
632
889
|
|
|
633
890
|
.social-pane .social-friend-job-org {
|
|
634
891
|
margin: 0;
|
|
635
892
|
width: 100%;
|
|
893
|
+
min-width: 0;
|
|
636
894
|
white-space: normal;
|
|
895
|
+
overflow-wrap: anywhere;
|
|
637
896
|
color: var(--color-text-subheading, #101828);
|
|
638
897
|
font-size: var(--font-size-sm, 0.875rem);
|
|
639
898
|
font-weight: var(--font-weight-medium, 500);
|
|
@@ -645,6 +904,14 @@
|
|
|
645
904
|
color: var(--color-text-secondary, #6b7280);
|
|
646
905
|
font-size: var(--font-size-xs, 0.8125rem);
|
|
647
906
|
line-height: 1.3;
|
|
907
|
+
overflow-wrap: anywhere;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
@media (max-width: 960px) {
|
|
911
|
+
.social-pane .social-friends-grid > tr,
|
|
912
|
+
.social-pane .social-friends-grid > tbody > tr {
|
|
913
|
+
width: 100%;
|
|
914
|
+
}
|
|
648
915
|
}
|
|
649
916
|
|
|
650
917
|
.social-pane .social-friends-header {
|
|
@@ -677,6 +944,14 @@
|
|
|
677
944
|
padding: 0.7rem 1rem 0;
|
|
678
945
|
}
|
|
679
946
|
|
|
947
|
+
.social-pane .social-friends-header-dropzone {
|
|
948
|
+
border-collapse: collapse;
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
.social-pane .social-friends-header-dropzone-cell {
|
|
952
|
+
padding: 0;
|
|
953
|
+
}
|
|
954
|
+
|
|
680
955
|
.social-pane .social-friends-header-hint {
|
|
681
956
|
color: var(--color-text-secondary, #4A5565);
|
|
682
957
|
font-size: var(--font-size-sm, 0.875rem);
|
|
@@ -687,23 +962,21 @@
|
|
|
687
962
|
display: inline-flex;
|
|
688
963
|
align-items: center;
|
|
689
964
|
justify-content: center;
|
|
690
|
-
width:
|
|
691
|
-
min-width:
|
|
692
|
-
height:
|
|
693
|
-
padding: 0
|
|
965
|
+
width: 2rem !important;
|
|
966
|
+
min-width: 2rem !important;
|
|
967
|
+
height: 2rem !important;
|
|
968
|
+
padding: 0 !important;
|
|
694
969
|
margin: 0 !important;
|
|
695
970
|
border-width: 0 !important;
|
|
971
|
+
overflow: hidden;
|
|
696
972
|
}
|
|
697
973
|
|
|
698
974
|
.social-pane .social-friends-header-actions button img {
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
margin-top: 0;
|
|
705
|
-
padding-top: 0;
|
|
706
|
-
border-top: 0;
|
|
975
|
+
display: block;
|
|
976
|
+
width: 100% !important;
|
|
977
|
+
height: 100% !important;
|
|
978
|
+
object-fit: contain;
|
|
979
|
+
pointer-events: none;
|
|
707
980
|
}
|
|
708
981
|
|
|
709
982
|
/* From tabbedtab.css */
|
|
@@ -720,16 +993,6 @@ div.social-pane {
|
|
|
720
993
|
text-decoration: none;
|
|
721
994
|
font-weight: bold;
|
|
722
995
|
}
|
|
723
|
-
.social-pane a:link {
|
|
724
|
-
color: var(--color-primary, #7C4DFF);
|
|
725
|
-
text-decoration: none;
|
|
726
|
-
font-weight: bold;
|
|
727
|
-
}
|
|
728
|
-
.social-pane a:visited {
|
|
729
|
-
color: var(--color-primary, #7C4DFF);
|
|
730
|
-
text-decoration: none;
|
|
731
|
-
font-weight: bold;
|
|
732
|
-
}
|
|
733
996
|
.social-pane a:hover {
|
|
734
997
|
color: var(--color-primary, #7C4DFF);
|
|
735
998
|
text-decoration: underline;
|
|
@@ -755,7 +1018,9 @@ div.social-pane {
|
|
|
755
1018
|
|
|
756
1019
|
.social-pane__link-button > a {
|
|
757
1020
|
display: inline-flex;
|
|
758
|
-
|
|
1021
|
+
max-width: 100%;
|
|
1022
|
+
white-space: normal;
|
|
1023
|
+
overflow-wrap: anywhere;
|
|
759
1024
|
background-color: transparent;
|
|
760
1025
|
color: var(--color-primary, #7C4DFF);
|
|
761
1026
|
}
|
|
@@ -770,10 +1035,406 @@ div.social-pane {
|
|
|
770
1035
|
text-decoration: underline;
|
|
771
1036
|
}
|
|
772
1037
|
|
|
1038
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__header-content {
|
|
1039
|
+
display: grid;
|
|
1040
|
+
grid-template-columns: 4.375rem minmax(0, 1fr) auto;
|
|
1041
|
+
align-items: start;
|
|
1042
|
+
column-gap: var(--spacing-md, 1rem);
|
|
1043
|
+
row-gap: 0.25rem;
|
|
1044
|
+
padding: 1rem 1rem 0;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__header-media {
|
|
1048
|
+
display: contents;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__header-details {
|
|
1052
|
+
grid-column: 2;
|
|
1053
|
+
grid-row: 1;
|
|
1054
|
+
display: flex;
|
|
1055
|
+
flex-direction: column;
|
|
1056
|
+
align-items: flex-start;
|
|
1057
|
+
gap: 0.125rem;
|
|
1058
|
+
min-width: 0;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__header-actions {
|
|
1062
|
+
grid-column: 3;
|
|
1063
|
+
grid-row: 1;
|
|
1064
|
+
justify-self: end;
|
|
1065
|
+
justify-content: flex-end;
|
|
1066
|
+
width: auto;
|
|
1067
|
+
gap: var(--spacing-2xs, 0.3125rem);
|
|
1068
|
+
margin-left: 0;
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__header-actions--friend {
|
|
1072
|
+
grid-column: 1 / -1;
|
|
1073
|
+
grid-row: 3;
|
|
1074
|
+
justify-self: stretch;
|
|
1075
|
+
justify-content: center;
|
|
1076
|
+
width: 100%;
|
|
1077
|
+
margin-left: 0;
|
|
1078
|
+
margin-top: 0.125rem;
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__header-summary {
|
|
1082
|
+
display: flex;
|
|
1083
|
+
flex-direction: column;
|
|
1084
|
+
gap: 0;
|
|
1085
|
+
width: 100%;
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] :is(.social-pane__header-name, .social-pane__header-job-org, .social-pane__header-location) {
|
|
1089
|
+
width: 100%;
|
|
1090
|
+
text-align: left;
|
|
1091
|
+
justify-content: flex-start;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__header-stats {
|
|
1095
|
+
width: 100%;
|
|
1096
|
+
justify-content: flex-start;
|
|
1097
|
+
align-self: flex-start;
|
|
1098
|
+
gap: var(--spacing-xs, 0.5rem);
|
|
1099
|
+
margin-top: -0.4375rem;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-profile-links {
|
|
1103
|
+
grid-column: 1 / -1;
|
|
1104
|
+
grid-row: 2;
|
|
1105
|
+
grid-template-columns: 1fr;
|
|
1106
|
+
row-gap: var(--spacing-xxxs, 0.2rem);
|
|
1107
|
+
justify-items: start;
|
|
1108
|
+
padding-left: 0;
|
|
1109
|
+
margin-top: -0.375rem;
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane .social-primary__tabs,
|
|
1113
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-primary__tabs {
|
|
1114
|
+
margin-top: -0.5rem;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__link-button {
|
|
1118
|
+
justify-self: start;
|
|
1119
|
+
padding-left: 0;
|
|
1120
|
+
padding-right: 0;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__link-button > a {
|
|
1124
|
+
font-size: var(--font-size-sm, 0.875rem);
|
|
1125
|
+
text-align: left;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__dialog-field-header {
|
|
1129
|
+
grid-template-columns: minmax(0, 1fr);
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] :is(.social-pane__header-hero, .social-pane__header-hero-icon) {
|
|
1133
|
+
grid-column: 1;
|
|
1134
|
+
grid-row: 1;
|
|
1135
|
+
width: 5rem;
|
|
1136
|
+
height: 5rem;
|
|
1137
|
+
aspect-ratio: 1 / 1;
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__header-name {
|
|
1141
|
+
font-size: var(--font-size-xl, 1.375rem);
|
|
1142
|
+
line-height: 1.15;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__header-job-org {
|
|
1146
|
+
font-size: var(--font-size-md, 1rem);
|
|
1147
|
+
line-height: 1.25;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane .social-friend-pronouns {
|
|
1151
|
+
font-size: 0.6875rem;
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] :is(.social-pane__header-location, .social-pane__header-stat),
|
|
1155
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane .social-friend-location {
|
|
1156
|
+
font-size: var(--font-size-xxs, 0.75rem);
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] :is(.social-pane__edit-button-label, .social-pane__edit-button .profile-section-collapsible__edit-label) {
|
|
1160
|
+
display: none !important;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__edit-button {
|
|
1164
|
+
--button-background: transparent;
|
|
1165
|
+
--button-border-width: 0;
|
|
1166
|
+
--button-border: transparent;
|
|
1167
|
+
--button-text: var(--color-text, #1A1A1A);
|
|
1168
|
+
--button-hover-background: var(--lavender-300, #e6dcff);
|
|
1169
|
+
--button-hover-border: transparent;
|
|
1170
|
+
--button-hover-text: var(--color-text, #1A1A1A);
|
|
1171
|
+
--button-font-size-sm: clamp(0.9rem, 2.1vw, 1rem);
|
|
1172
|
+
--button-font-weight: var(--font-weight-regular, 400);
|
|
1173
|
+
--button-icon-size-sm: 0.875rem;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] :is(.social-pane__edit-button-icon, .social-pane__edit-button .profile-section-collapsible__edit-icon) {
|
|
1177
|
+
display: inline-flex;
|
|
1178
|
+
align-items: center;
|
|
1179
|
+
justify-content: center;
|
|
1180
|
+
width: 0.875rem;
|
|
1181
|
+
height: 0.875rem;
|
|
1182
|
+
line-height: 0;
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] :is(.social-pane__edit-button-icon svg, .social-pane__edit-button .profile-section-collapsible__edit-icon svg) {
|
|
1186
|
+
width: 0.875rem;
|
|
1187
|
+
height: 0.875rem;
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1190
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] :is(.social-pane__edit-button-icon svg path, .social-pane__edit-button .profile-section-collapsible__edit-icon svg path) {
|
|
1191
|
+
fill: var(--color-text, #1A1A1A);
|
|
1192
|
+
stroke: none;
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__dialog-actions {
|
|
1196
|
+
flex-direction: row;
|
|
1197
|
+
align-items: center;
|
|
1198
|
+
justify-content: center;
|
|
1199
|
+
gap: var(--spacing-sm, 0.938rem);
|
|
1200
|
+
padding: var(--spacing-md, 1rem) 0 0;
|
|
1201
|
+
margin: var(--spacing-md, 1rem) auto 0;
|
|
1202
|
+
box-sizing: border-box;
|
|
1203
|
+
width: 100%;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__dialog-actions > solid-ui-button {
|
|
1207
|
+
flex: 0 0 auto;
|
|
1208
|
+
width: 10.8rem;
|
|
1209
|
+
min-width: 8.5rem;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane__dialog-field-header solid-ui-button.social-pane__dialog-row-button--add::part(button) {
|
|
1213
|
+
font-size: var(--font-size-sm, 0.875rem);
|
|
1214
|
+
line-height: var(--line-height-base, 1.5);
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane .social-friends-header-actions--standalone {
|
|
1218
|
+
flex-wrap: wrap;
|
|
1219
|
+
gap: var(--spacing-2xs, 0.625rem);
|
|
1220
|
+
padding-top: 0.35rem;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] :is(.social-pane .social-layout, .social-pane .social-primary, .social-layout, .social-primary) {
|
|
1224
|
+
display: block;
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-pane .social-friends-grid,
|
|
1228
|
+
:is(.social-pane-host, .social-pane)[data-layout='mobile'] .social-friends-grid {
|
|
1229
|
+
display: block;
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
:is(.social-pane-host, .social-pane)[data-input-mode='touch'] {
|
|
1233
|
+
--profile-interactive-cursor: auto;
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
:is(.social-pane-host, .social-pane)[data-input-mode='pointer'] {
|
|
1237
|
+
--profile-interactive-cursor: pointer;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
773
1240
|
@media (max-width: 600px) {
|
|
774
1241
|
.social-pane__header-content {
|
|
1242
|
+
display: grid;
|
|
1243
|
+
grid-template-columns: 4.375rem minmax(0, 1fr) auto;
|
|
1244
|
+
align-items: start;
|
|
1245
|
+
column-gap: var(--spacing-md, 1rem);
|
|
1246
|
+
row-gap: 0.25rem;
|
|
1247
|
+
padding: 1rem 1rem 0;
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
.social-pane__header-media {
|
|
1251
|
+
display: contents;
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
.social-pane__header-details {
|
|
1255
|
+
grid-column: 2;
|
|
1256
|
+
grid-row: 1;
|
|
1257
|
+
display: flex;
|
|
775
1258
|
flex-direction: column;
|
|
776
1259
|
align-items: flex-start;
|
|
1260
|
+
gap: 0.125rem;
|
|
1261
|
+
min-width: 0;
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
.social-pane__header-actions {
|
|
1265
|
+
grid-column: 3;
|
|
1266
|
+
grid-row: 1;
|
|
1267
|
+
justify-self: end;
|
|
1268
|
+
justify-content: flex-end;
|
|
1269
|
+
width: auto;
|
|
1270
|
+
gap: var(--spacing-2xs, 0.3125rem);
|
|
1271
|
+
margin-left: 0;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
.social-pane__header-actions--friend {
|
|
1275
|
+
grid-column: 1 / -1;
|
|
1276
|
+
grid-row: 3;
|
|
1277
|
+
justify-self: stretch;
|
|
1278
|
+
justify-content: center;
|
|
1279
|
+
width: 100%;
|
|
1280
|
+
margin-left: 0;
|
|
1281
|
+
margin-top: 0.125rem;
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
.social-pane__header-summary {
|
|
1285
|
+
display: flex;
|
|
1286
|
+
flex-direction: column;
|
|
1287
|
+
gap: 0;
|
|
1288
|
+
width: 100%;
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
.social-pane__header-name,
|
|
1292
|
+
.social-pane__header-job-org,
|
|
1293
|
+
.social-pane__header-location {
|
|
1294
|
+
width: 100%;
|
|
1295
|
+
text-align: left;
|
|
1296
|
+
justify-content: flex-start;
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
.social-pane__header-stats {
|
|
1300
|
+
width: 100%;
|
|
1301
|
+
justify-content: flex-start;
|
|
1302
|
+
align-self: flex-start;
|
|
1303
|
+
gap: var(--spacing-xs, 0.5rem);
|
|
1304
|
+
margin-top: -0.4375rem;
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
.social-profile-links {
|
|
1308
|
+
grid-column: 1 / -1;
|
|
1309
|
+
grid-row: 2;
|
|
1310
|
+
grid-template-columns: 1fr;
|
|
1311
|
+
row-gap: var(--spacing-xxxs, 0.2rem);
|
|
1312
|
+
justify-items: start;
|
|
1313
|
+
padding-left: 0;
|
|
1314
|
+
margin-top: -0.375rem;
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
.social-pane .social-primary__tabs {
|
|
1318
|
+
margin-top: -0.5rem;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.social-pane__link-button {
|
|
1322
|
+
justify-self: start;
|
|
1323
|
+
padding-left: 0;
|
|
1324
|
+
padding-right: 0;
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
.social-pane__link-button > a {
|
|
1328
|
+
font-size: var(--font-size-sm, 0.875rem);
|
|
1329
|
+
text-align: left;
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
.social-pane__dialog-field-header {
|
|
1333
|
+
grid-template-columns: minmax(0, 1fr);
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
.social-pane__header-hero,
|
|
1337
|
+
.social-pane__header-hero-icon {
|
|
1338
|
+
grid-column: 1;
|
|
1339
|
+
grid-row: 1;
|
|
1340
|
+
width: 5rem;
|
|
1341
|
+
height: 5rem;
|
|
1342
|
+
aspect-ratio: 1 / 1;
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
.social-pane__header-name {
|
|
1346
|
+
font-size: var(--font-size-xl, 1.375rem);
|
|
1347
|
+
line-height: 1.15;
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
.social-pane__header-job-org {
|
|
1351
|
+
font-size: var(--font-size-md, 1rem);
|
|
1352
|
+
line-height: 1.25;
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
.social-pane .social-friend-pronouns {
|
|
1356
|
+
font-size: 0.6875rem;
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
.social-pane__header-location,
|
|
1360
|
+
.social-pane__header-stat,
|
|
1361
|
+
.social-pane .social-friend-location {
|
|
1362
|
+
font-size: var(--font-size-xxs, 0.75rem);
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
.social-pane__friend-action {
|
|
1366
|
+
--button-padding-sm: var(--spacing-xxxs, 0.2rem) var(--spacing-xxs-old, 0.3rem);
|
|
1367
|
+
--button-font-size-sm: var(--font-size-xs, 0.813rem);
|
|
1368
|
+
--button-border-radius-sm: var(--border-radius-base, 0.3125rem);
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
|
+
.social-pane__edit-button-label,
|
|
1372
|
+
.social-pane__edit-button .profile-section-collapsible__edit-label {
|
|
1373
|
+
display: none !important;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
.social-pane__edit-button {
|
|
1377
|
+
--button-background: transparent;
|
|
1378
|
+
--button-border-width: 0;
|
|
1379
|
+
--button-border: transparent;
|
|
1380
|
+
--button-background: transparent;
|
|
1381
|
+
--button-text: var(--color-text, #1A1A1A);
|
|
1382
|
+
--button-hover-background: var(--lavender-300, #e6dcff);
|
|
1383
|
+
--button-hover-border: transparent;
|
|
1384
|
+
--button-hover-text: var(--color-text, #1A1A1A);
|
|
1385
|
+
--button-font-size-sm: clamp(0.9rem, 2.1vw, 1rem);
|
|
1386
|
+
--button-font-weight: var(--font-weight-regular, 400);
|
|
1387
|
+
--button-icon-size-sm: 0.875rem;
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
.social-pane__edit-button-icon,
|
|
1391
|
+
.social-pane__edit-button .profile-section-collapsible__edit-icon {
|
|
1392
|
+
display: inline-flex;
|
|
1393
|
+
align-items: center;
|
|
1394
|
+
justify-content: center;
|
|
1395
|
+
width: 0.875rem;
|
|
1396
|
+
height: 0.875rem;
|
|
1397
|
+
line-height: 0;
|
|
1398
|
+
}
|
|
1399
|
+
|
|
1400
|
+
.social-pane__edit-button-icon svg,
|
|
1401
|
+
.social-pane__edit-button .profile-section-collapsible__edit-icon svg {
|
|
1402
|
+
width: 0.875rem;
|
|
1403
|
+
height: 0.875rem;
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
.social-pane__edit-button-icon svg path,
|
|
1407
|
+
.social-pane__edit-button .profile-section-collapsible__edit-icon svg path {
|
|
1408
|
+
fill: var(--color-text, #1A1A1A);
|
|
1409
|
+
stroke: none;
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
.social-pane__dialog-actions {
|
|
1413
|
+
flex-direction: row;
|
|
1414
|
+
align-items: center;
|
|
1415
|
+
justify-content: center;
|
|
1416
|
+
gap: var(--spacing-sm, 0.938rem);
|
|
1417
|
+
padding: var(--spacing-md, 1rem) 0 0;
|
|
1418
|
+
margin: var(--spacing-md, 1rem) auto 0;
|
|
1419
|
+
box-sizing: border-box;
|
|
1420
|
+
width: 100%;
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
.social-pane__dialog-actions > solid-ui-button {
|
|
1424
|
+
flex: 0 0 auto;
|
|
1425
|
+
width: 10.8rem;
|
|
1426
|
+
min-width: 8.5rem;
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
.social-pane__dialog-field-header solid-ui-button.social-pane__dialog-row-button--add::part(button) {
|
|
1430
|
+
font-size: var(--font-size-sm, 0.875rem);
|
|
1431
|
+
line-height: var(--line-height-base, 1.5);
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1434
|
+
.social-pane .social-friends-header-actions--standalone {
|
|
1435
|
+
flex-wrap: wrap;
|
|
1436
|
+
gap: var(--spacing-2xs, 0.625rem);
|
|
1437
|
+
padding-top: 0.35rem;
|
|
777
1438
|
}
|
|
778
1439
|
|
|
779
1440
|
.social-pane .social-layout,
|
|
@@ -785,19 +1446,18 @@ div.social-pane {
|
|
|
785
1446
|
display: block;
|
|
786
1447
|
}
|
|
787
1448
|
|
|
788
|
-
.social-pane .social-friends-grid > tr
|
|
1449
|
+
.social-pane .social-friends-grid > tr,
|
|
1450
|
+
.social-pane .social-friends-grid > tbody > tr {
|
|
789
1451
|
display: table;
|
|
790
1452
|
width: 100%;
|
|
791
1453
|
margin-bottom: var(--spacing-xs, 0.75rem);
|
|
792
1454
|
}
|
|
793
1455
|
|
|
794
|
-
.social-pane .social-friends-grid > tr:last-child
|
|
1456
|
+
.social-pane .social-friends-grid > tr:last-child,
|
|
1457
|
+
.social-pane .social-friends-grid > tbody > tr:last-child {
|
|
795
1458
|
margin-bottom: 0;
|
|
796
1459
|
}
|
|
797
1460
|
|
|
798
|
-
.social-pane .social-nav,
|
|
799
|
-
.social-pane .social-toolbar,
|
|
800
|
-
.social-pane .social-content,
|
|
801
1461
|
.social-pane .social-main {
|
|
802
1462
|
width: 100%;
|
|
803
1463
|
}
|