@selfcommunity/react-theme-default 0.1.0-alpha.286 → 0.1.0-alpha.287
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/lib/cjs/components/SCCommentObject.d.ts +1 -0
- package/lib/cjs/components/SCCommentObject.js +2 -1
- package/lib/cjs/components/SCCommentObjectReply.d.ts +1 -0
- package/lib/cjs/components/SCCommentObjectReply.js +1 -0
- package/lib/cjs/components/SCCommentsObject.d.ts +21 -1
- package/lib/cjs/components/SCCommentsObject.js +21 -1
- package/lib/cjs/components/SCContributorsFeedObject.d.ts +1 -0
- package/lib/cjs/components/SCContributorsFeedObject.js +2 -1
- package/lib/cjs/components/SCFeedObject.d.ts +7 -1
- package/lib/cjs/components/SCFeedObject.js +13 -7
- package/lib/cjs/components/SCLoyaltyProgramWidget.js +1 -1
- package/lib/cjs/components/SCUserAvatar.d.ts +1 -0
- package/lib/cjs/components/SCUserAvatar.js +2 -1
- package/lib/cjs/components/SCWidget.d.ts +6 -4
- package/lib/cjs/components/SCWidget.js +7 -5
- package/lib/cjs/index.d.ts +38 -9
- package/lib/esm/components/SCCommentObject.d.ts +1 -0
- package/lib/esm/components/SCCommentObject.js +2 -1
- package/lib/esm/components/SCCommentObjectReply.d.ts +1 -0
- package/lib/esm/components/SCCommentObjectReply.js +1 -0
- package/lib/esm/components/SCCommentsObject.d.ts +21 -1
- package/lib/esm/components/SCCommentsObject.js +21 -1
- package/lib/esm/components/SCContributorsFeedObject.d.ts +1 -0
- package/lib/esm/components/SCContributorsFeedObject.js +2 -1
- package/lib/esm/components/SCFeedObject.d.ts +7 -1
- package/lib/esm/components/SCFeedObject.js +13 -7
- package/lib/esm/components/SCLoyaltyProgramWidget.js +1 -1
- package/lib/esm/components/SCUserAvatar.d.ts +1 -0
- package/lib/esm/components/SCUserAvatar.js +2 -1
- package/lib/esm/components/SCWidget.d.ts +6 -4
- package/lib/esm/components/SCWidget.js +7 -5
- package/lib/esm/index.d.ts +38 -9
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +3 -3
|
@@ -1,8 +1,28 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
boxShadow: string;
|
|
5
|
+
position: string;
|
|
6
|
+
display: string;
|
|
7
|
+
flexWrap: string;
|
|
8
|
+
width: string;
|
|
9
|
+
paddingBottom: any;
|
|
10
|
+
'& .SCCommentsObject-load-more-comments-button': {
|
|
11
|
+
textTransform: string;
|
|
12
|
+
padding: any;
|
|
13
|
+
};
|
|
14
|
+
'& .SCCommentsObject-load-previous-comments-button': {
|
|
15
|
+
textTransform: string;
|
|
16
|
+
padding: any;
|
|
17
|
+
};
|
|
18
|
+
'& .SCCommentsObject-comments-counter': {
|
|
19
|
+
paddingRight: any;
|
|
20
|
+
};
|
|
21
|
+
'& .SCCommentsObject-pagination-link': {
|
|
22
|
+
display: string;
|
|
23
|
+
};
|
|
4
24
|
'& .SCCommentsObject-pagination': {
|
|
5
|
-
|
|
25
|
+
width: string;
|
|
6
26
|
'& button': {
|
|
7
27
|
fontWeight: any;
|
|
8
28
|
textDecoration: string;
|
|
@@ -3,8 +3,28 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const Component = {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
|
+
boxShadow: 'none',
|
|
7
|
+
position: 'relative',
|
|
8
|
+
display: 'flex',
|
|
9
|
+
flexWrap: 'wrap',
|
|
10
|
+
width: '100%',
|
|
11
|
+
paddingBottom: theme.spacing(),
|
|
12
|
+
'& .SCCommentsObject-load-more-comments-button': {
|
|
13
|
+
textTransform: 'initial',
|
|
14
|
+
padding: theme.spacing()
|
|
15
|
+
},
|
|
16
|
+
'& .SCCommentsObject-load-previous-comments-button': {
|
|
17
|
+
textTransform: 'initial',
|
|
18
|
+
padding: theme.spacing()
|
|
19
|
+
},
|
|
20
|
+
'& .SCCommentsObject-comments-counter': {
|
|
21
|
+
paddingRight: theme.spacing()
|
|
22
|
+
},
|
|
23
|
+
'& .SCCommentsObject-pagination-link': {
|
|
24
|
+
display: 'none'
|
|
25
|
+
},
|
|
6
26
|
'& .SCCommentsObject-pagination': {
|
|
7
|
-
|
|
27
|
+
width: '100%',
|
|
8
28
|
'& button': {
|
|
9
29
|
fontWeight: theme.typography.fontWeightLight,
|
|
10
30
|
textDecoration: 'underline',
|
|
@@ -4,7 +4,8 @@ const Component = {
|
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
6
|
'& .SCContributorsFeedObject-btn-participants': {
|
|
7
|
-
|
|
7
|
+
padding: theme.spacing(0.5),
|
|
8
|
+
marginLeft: theme.spacing(-0.5),
|
|
8
9
|
color: 'inherit',
|
|
9
10
|
fontWeight: theme.typography.fontWeightLight,
|
|
10
11
|
fontSize: '0.875rem'
|
|
@@ -19,6 +19,7 @@ declare const Component: {
|
|
|
19
19
|
height: any;
|
|
20
20
|
};
|
|
21
21
|
'& .SCFeedObject-header': {
|
|
22
|
+
paddingTop: any;
|
|
22
23
|
paddingBottom: number;
|
|
23
24
|
'& .MuiCardHeader-subheader': {
|
|
24
25
|
display: string;
|
|
@@ -152,6 +153,7 @@ declare const Component: {
|
|
|
152
153
|
'& .SCFeedObject-text-section': {
|
|
153
154
|
overflowWrap: string;
|
|
154
155
|
'& > :first-of-type': {
|
|
156
|
+
marginBottom: number;
|
|
155
157
|
padding: any;
|
|
156
158
|
display: string;
|
|
157
159
|
};
|
|
@@ -252,9 +254,12 @@ declare const Component: {
|
|
|
252
254
|
margin: string;
|
|
253
255
|
};
|
|
254
256
|
};
|
|
257
|
+
'& .SCFeedObject-show-more': {
|
|
258
|
+
padding: any;
|
|
259
|
+
marginTop: any;
|
|
260
|
+
};
|
|
255
261
|
};
|
|
256
262
|
'& .SCFeedObject-actions-section': {
|
|
257
|
-
marginBottom: any;
|
|
258
263
|
'&:last-of-type': {
|
|
259
264
|
marginBottom: number;
|
|
260
265
|
};
|
|
@@ -327,6 +332,7 @@ declare const Component: {
|
|
|
327
332
|
paddingBottom: number;
|
|
328
333
|
'& .SCActivitiesMenu-selector': {
|
|
329
334
|
'& .MuiButton-root': {
|
|
335
|
+
marginTop: any;
|
|
330
336
|
fontSize: string;
|
|
331
337
|
fontWeight: any;
|
|
332
338
|
padding: any;
|
|
@@ -22,6 +22,7 @@ const Component = {
|
|
|
22
22
|
height: theme.selfcommunity.user.avatar.sizeMedium
|
|
23
23
|
},
|
|
24
24
|
'& .SCFeedObject-header': {
|
|
25
|
+
paddingTop: theme.spacing(1),
|
|
25
26
|
paddingBottom: 0,
|
|
26
27
|
'& .MuiCardHeader-subheader': {
|
|
27
28
|
display: 'flex',
|
|
@@ -86,7 +87,7 @@ const Component = {
|
|
|
86
87
|
width: '100%',
|
|
87
88
|
boxSizing: 'border-box',
|
|
88
89
|
margin: 0,
|
|
89
|
-
padding: theme.spacing(0.
|
|
90
|
+
padding: theme.spacing(0.2, 2)
|
|
90
91
|
},
|
|
91
92
|
'& .SCFeedObject-info-section': {
|
|
92
93
|
padding: theme.spacing(0, 2)
|
|
@@ -155,7 +156,8 @@ const Component = {
|
|
|
155
156
|
'& .SCFeedObject-text-section': {
|
|
156
157
|
overflowWrap: 'anywhere',
|
|
157
158
|
'& > :first-of-type': {
|
|
158
|
-
|
|
159
|
+
marginBottom: 0,
|
|
160
|
+
padding: theme.spacing(0, 2, 0.5),
|
|
159
161
|
display: 'block'
|
|
160
162
|
},
|
|
161
163
|
'& hr': {
|
|
@@ -254,22 +256,25 @@ const Component = {
|
|
|
254
256
|
'& li': {
|
|
255
257
|
margin: '0 32px'
|
|
256
258
|
}
|
|
259
|
+
},
|
|
260
|
+
'& .SCFeedObject-show-more': {
|
|
261
|
+
padding: theme.spacing(0.5),
|
|
262
|
+
marginTop: theme.spacing(-0.5)
|
|
257
263
|
}
|
|
258
264
|
},
|
|
259
265
|
'& .SCFeedObject-actions-section': {
|
|
260
|
-
marginBottom: theme.spacing(1),
|
|
261
266
|
'&:last-of-type': {
|
|
262
267
|
marginBottom: 0
|
|
263
268
|
},
|
|
264
269
|
'& .SCFeedObjectActions-root': {
|
|
265
270
|
margin: 0,
|
|
266
|
-
padding: theme.spacing(0, 2, 0, 2),
|
|
271
|
+
padding: theme.spacing(0.2, 2, 0, 2),
|
|
267
272
|
'& .SCFeedObjectActions-action': {
|
|
268
273
|
marginTop: 'auto',
|
|
269
274
|
'& .SCVoteAction-view-audience-button, & .SCCommentAction-view-audience-button, & .SCShareAction-view-audience-button, & .SCReactionAction-view-audience-button': {
|
|
270
275
|
fontSize: '0.857rem',
|
|
271
276
|
fontWeight: theme.typography.fontWeightRegular,
|
|
272
|
-
marginTop: theme.spacing(
|
|
277
|
+
marginTop: theme.spacing(0),
|
|
273
278
|
marginBottom: 0,
|
|
274
279
|
color: theme.palette.primary.main,
|
|
275
280
|
'&:hover': {
|
|
@@ -281,10 +286,10 @@ const Component = {
|
|
|
281
286
|
},
|
|
282
287
|
'& .SCVoteAction-button, & .SCCommentAction-button, & .SCShareAction-button, & .SCReactionAction-button': {
|
|
283
288
|
color: theme.palette.primary.main,
|
|
284
|
-
marginTop: theme.spacing(0.5),
|
|
289
|
+
marginTop: theme.spacing(-0.5),
|
|
285
290
|
marginBottom: theme.spacing(0.5),
|
|
286
291
|
borderRadius: '50%',
|
|
287
|
-
padding: theme.spacing(1
|
|
292
|
+
padding: theme.spacing(1),
|
|
288
293
|
minWidth: 0,
|
|
289
294
|
'& .MuiIcon-root': {
|
|
290
295
|
fontSize: '1.57rem'
|
|
@@ -330,6 +335,7 @@ const Component = {
|
|
|
330
335
|
paddingBottom: 0,
|
|
331
336
|
'& .SCActivitiesMenu-selector': {
|
|
332
337
|
'& .MuiButton-root': {
|
|
338
|
+
marginTop: theme.spacing(0.2),
|
|
333
339
|
fontSize: '0.857rem',
|
|
334
340
|
fontWeight: theme.typography.fontWeightRegular,
|
|
335
341
|
padding: theme.spacing(1)
|
|
@@ -39,7 +39,10 @@ declare const Component: {
|
|
|
39
39
|
};
|
|
40
40
|
'& .MuiList-root': {
|
|
41
41
|
paddingTop: any;
|
|
42
|
-
paddingBottom:
|
|
42
|
+
paddingBottom: number;
|
|
43
|
+
'& .MuiListItem-root:first-of-type': {
|
|
44
|
+
paddingTop: number;
|
|
45
|
+
};
|
|
43
46
|
'& .MuiListItem-root': {
|
|
44
47
|
paddingTop: any;
|
|
45
48
|
paddingBottom: any;
|
|
@@ -58,9 +61,8 @@ declare const Component: {
|
|
|
58
61
|
paddingTop: any;
|
|
59
62
|
};
|
|
60
63
|
'& > .MuiButton-sizeMedium': {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
paddingRight: any;
|
|
64
|
+
marginTop: any;
|
|
65
|
+
padding: any;
|
|
64
66
|
color: any;
|
|
65
67
|
};
|
|
66
68
|
};
|
|
@@ -29,7 +29,7 @@ const Component = {
|
|
|
29
29
|
borderRadius: 0
|
|
30
30
|
},
|
|
31
31
|
'& .MuiCardContent-root': {
|
|
32
|
-
padding: theme.spacing(
|
|
32
|
+
padding: theme.spacing(2.2),
|
|
33
33
|
'& h5': {
|
|
34
34
|
fontFamily: theme.typography.fontFamily,
|
|
35
35
|
fontWeight: theme.typography.fontWeightBold,
|
|
@@ -38,7 +38,10 @@ const Component = {
|
|
|
38
38
|
},
|
|
39
39
|
'& .MuiList-root': {
|
|
40
40
|
paddingTop: theme.spacing(2),
|
|
41
|
-
paddingBottom:
|
|
41
|
+
paddingBottom: 0,
|
|
42
|
+
'& .MuiListItem-root:first-of-type': {
|
|
43
|
+
paddingTop: 0
|
|
44
|
+
},
|
|
42
45
|
'& .MuiListItem-root': {
|
|
43
46
|
paddingTop: theme.spacing(1),
|
|
44
47
|
paddingBottom: theme.spacing(1),
|
|
@@ -57,9 +60,8 @@ const Component = {
|
|
|
57
60
|
paddingTop: theme.spacing(2)
|
|
58
61
|
},
|
|
59
62
|
'& > .MuiButton-sizeMedium': {
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
paddingRight: theme.spacing(2),
|
|
63
|
+
marginTop: theme.spacing(1),
|
|
64
|
+
padding: theme.spacing(0),
|
|
63
65
|
color: theme.palette.secondary.main
|
|
64
66
|
}
|
|
65
67
|
}
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -777,6 +777,7 @@ declare const theme: {
|
|
|
777
777
|
};
|
|
778
778
|
'& .SCBaseItem-text': {
|
|
779
779
|
marginBottom: number;
|
|
780
|
+
marginTop: any;
|
|
780
781
|
};
|
|
781
782
|
};
|
|
782
783
|
'& .SCCommentObject-nested-comments': {
|
|
@@ -922,6 +923,7 @@ declare const theme: {
|
|
|
922
923
|
};
|
|
923
924
|
};
|
|
924
925
|
'& .SCBaseItem-image': {
|
|
926
|
+
marginTop: any;
|
|
925
927
|
'& .MuiBadge-badge': {
|
|
926
928
|
top: any;
|
|
927
929
|
};
|
|
@@ -1019,8 +1021,28 @@ declare const theme: {
|
|
|
1019
1021
|
SCCommentsObject: {
|
|
1020
1022
|
styleOverrides: {
|
|
1021
1023
|
root: ({ theme }: any) => {
|
|
1024
|
+
boxShadow: string;
|
|
1025
|
+
position: string;
|
|
1026
|
+
display: string;
|
|
1027
|
+
flexWrap: string;
|
|
1028
|
+
width: string;
|
|
1029
|
+
paddingBottom: any;
|
|
1030
|
+
'& .SCCommentsObject-load-more-comments-button': {
|
|
1031
|
+
textTransform: string;
|
|
1032
|
+
padding: any;
|
|
1033
|
+
};
|
|
1034
|
+
'& .SCCommentsObject-load-previous-comments-button': {
|
|
1035
|
+
textTransform: string;
|
|
1036
|
+
padding: any;
|
|
1037
|
+
};
|
|
1038
|
+
'& .SCCommentsObject-comments-counter': {
|
|
1039
|
+
paddingRight: any;
|
|
1040
|
+
};
|
|
1041
|
+
'& .SCCommentsObject-pagination-link': {
|
|
1042
|
+
display: string;
|
|
1043
|
+
};
|
|
1022
1044
|
'& .SCCommentsObject-pagination': {
|
|
1023
|
-
|
|
1045
|
+
width: string;
|
|
1024
1046
|
'& button': {
|
|
1025
1047
|
fontWeight: any;
|
|
1026
1048
|
textDecoration: string;
|
|
@@ -1441,6 +1463,7 @@ declare const theme: {
|
|
|
1441
1463
|
styleOverrides: {
|
|
1442
1464
|
root: ({ theme }: any) => {
|
|
1443
1465
|
'& .SCContributorsFeedObject-btn-participants': {
|
|
1466
|
+
padding: any;
|
|
1444
1467
|
marginLeft: any;
|
|
1445
1468
|
color: string;
|
|
1446
1469
|
fontWeight: any;
|
|
@@ -1903,6 +1926,7 @@ declare const theme: {
|
|
|
1903
1926
|
height: any;
|
|
1904
1927
|
};
|
|
1905
1928
|
'& .SCFeedObject-header': {
|
|
1929
|
+
paddingTop: any;
|
|
1906
1930
|
paddingBottom: number;
|
|
1907
1931
|
'& .MuiCardHeader-subheader': {
|
|
1908
1932
|
display: string;
|
|
@@ -2036,6 +2060,7 @@ declare const theme: {
|
|
|
2036
2060
|
'& .SCFeedObject-text-section': {
|
|
2037
2061
|
overflowWrap: string;
|
|
2038
2062
|
'& > :first-of-type': {
|
|
2063
|
+
marginBottom: number;
|
|
2039
2064
|
padding: any;
|
|
2040
2065
|
display: string;
|
|
2041
2066
|
};
|
|
@@ -2136,9 +2161,12 @@ declare const theme: {
|
|
|
2136
2161
|
margin: string;
|
|
2137
2162
|
};
|
|
2138
2163
|
};
|
|
2164
|
+
'& .SCFeedObject-show-more': {
|
|
2165
|
+
padding: any;
|
|
2166
|
+
marginTop: any;
|
|
2167
|
+
};
|
|
2139
2168
|
};
|
|
2140
2169
|
'& .SCFeedObject-actions-section': {
|
|
2141
|
-
marginBottom: any;
|
|
2142
2170
|
'&:last-of-type': {
|
|
2143
2171
|
marginBottom: number;
|
|
2144
2172
|
};
|
|
@@ -2160,9 +2188,6 @@ declare const theme: {
|
|
|
2160
2188
|
'& .MuiDivider-root': {
|
|
2161
2189
|
borderColor: any;
|
|
2162
2190
|
};
|
|
2163
|
-
/**
|
|
2164
|
-
* Style fragments - Imports - End
|
|
2165
|
-
*/
|
|
2166
2191
|
'& .SCVoteAction-button, & .SCCommentAction-button, & .SCShareAction-button, & .SCReactionAction-button': {
|
|
2167
2192
|
color: any;
|
|
2168
2193
|
marginTop: any;
|
|
@@ -2214,6 +2239,7 @@ declare const theme: {
|
|
|
2214
2239
|
paddingBottom: number;
|
|
2215
2240
|
'& .SCActivitiesMenu-selector': {
|
|
2216
2241
|
'& .MuiButton-root': {
|
|
2242
|
+
marginTop: any;
|
|
2217
2243
|
fontSize: string;
|
|
2218
2244
|
fontWeight: any;
|
|
2219
2245
|
padding: any;
|
|
@@ -3873,7 +3899,10 @@ declare const theme: {
|
|
|
3873
3899
|
};
|
|
3874
3900
|
'& .MuiList-root': {
|
|
3875
3901
|
paddingTop: any;
|
|
3876
|
-
paddingBottom:
|
|
3902
|
+
paddingBottom: number;
|
|
3903
|
+
'& .MuiListItem-root:first-of-type': {
|
|
3904
|
+
paddingTop: number;
|
|
3905
|
+
};
|
|
3877
3906
|
'& .MuiListItem-root': {
|
|
3878
3907
|
paddingTop: any;
|
|
3879
3908
|
paddingBottom: any;
|
|
@@ -3892,9 +3921,8 @@ declare const theme: {
|
|
|
3892
3921
|
paddingTop: any;
|
|
3893
3922
|
};
|
|
3894
3923
|
'& > .MuiButton-sizeMedium': {
|
|
3895
|
-
|
|
3896
|
-
|
|
3897
|
-
paddingRight: any;
|
|
3924
|
+
marginTop: any;
|
|
3925
|
+
padding: any;
|
|
3898
3926
|
color: any;
|
|
3899
3927
|
};
|
|
3900
3928
|
};
|
|
@@ -4606,6 +4634,7 @@ declare const theme: {
|
|
|
4606
4634
|
};
|
|
4607
4635
|
'.MuiBadge-badge': {
|
|
4608
4636
|
right: any;
|
|
4637
|
+
top: any;
|
|
4609
4638
|
};
|
|
4610
4639
|
};
|
|
4611
4640
|
};
|
|
@@ -1,8 +1,28 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
boxShadow: string;
|
|
5
|
+
position: string;
|
|
6
|
+
display: string;
|
|
7
|
+
flexWrap: string;
|
|
8
|
+
width: string;
|
|
9
|
+
paddingBottom: any;
|
|
10
|
+
'& .SCCommentsObject-load-more-comments-button': {
|
|
11
|
+
textTransform: string;
|
|
12
|
+
padding: any;
|
|
13
|
+
};
|
|
14
|
+
'& .SCCommentsObject-load-previous-comments-button': {
|
|
15
|
+
textTransform: string;
|
|
16
|
+
padding: any;
|
|
17
|
+
};
|
|
18
|
+
'& .SCCommentsObject-comments-counter': {
|
|
19
|
+
paddingRight: any;
|
|
20
|
+
};
|
|
21
|
+
'& .SCCommentsObject-pagination-link': {
|
|
22
|
+
display: string;
|
|
23
|
+
};
|
|
4
24
|
'& .SCCommentsObject-pagination': {
|
|
5
|
-
|
|
25
|
+
width: string;
|
|
6
26
|
'& button': {
|
|
7
27
|
fontWeight: any;
|
|
8
28
|
textDecoration: string;
|
|
@@ -1,8 +1,28 @@
|
|
|
1
1
|
const Component = {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }) => ({
|
|
4
|
+
boxShadow: 'none',
|
|
5
|
+
position: 'relative',
|
|
6
|
+
display: 'flex',
|
|
7
|
+
flexWrap: 'wrap',
|
|
8
|
+
width: '100%',
|
|
9
|
+
paddingBottom: theme.spacing(),
|
|
10
|
+
'& .SCCommentsObject-load-more-comments-button': {
|
|
11
|
+
textTransform: 'initial',
|
|
12
|
+
padding: theme.spacing()
|
|
13
|
+
},
|
|
14
|
+
'& .SCCommentsObject-load-previous-comments-button': {
|
|
15
|
+
textTransform: 'initial',
|
|
16
|
+
padding: theme.spacing()
|
|
17
|
+
},
|
|
18
|
+
'& .SCCommentsObject-comments-counter': {
|
|
19
|
+
paddingRight: theme.spacing()
|
|
20
|
+
},
|
|
21
|
+
'& .SCCommentsObject-pagination-link': {
|
|
22
|
+
display: 'none'
|
|
23
|
+
},
|
|
4
24
|
'& .SCCommentsObject-pagination': {
|
|
5
|
-
|
|
25
|
+
width: '100%',
|
|
6
26
|
'& button': {
|
|
7
27
|
fontWeight: theme.typography.fontWeightLight,
|
|
8
28
|
textDecoration: 'underline',
|
|
@@ -2,7 +2,8 @@ const Component = {
|
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }) => ({
|
|
4
4
|
'& .SCContributorsFeedObject-btn-participants': {
|
|
5
|
-
|
|
5
|
+
padding: theme.spacing(0.5),
|
|
6
|
+
marginLeft: theme.spacing(-0.5),
|
|
6
7
|
color: 'inherit',
|
|
7
8
|
fontWeight: theme.typography.fontWeightLight,
|
|
8
9
|
fontSize: '0.875rem'
|
|
@@ -19,6 +19,7 @@ declare const Component: {
|
|
|
19
19
|
height: any;
|
|
20
20
|
};
|
|
21
21
|
'& .SCFeedObject-header': {
|
|
22
|
+
paddingTop: any;
|
|
22
23
|
paddingBottom: number;
|
|
23
24
|
'& .MuiCardHeader-subheader': {
|
|
24
25
|
display: string;
|
|
@@ -152,6 +153,7 @@ declare const Component: {
|
|
|
152
153
|
'& .SCFeedObject-text-section': {
|
|
153
154
|
overflowWrap: string;
|
|
154
155
|
'& > :first-of-type': {
|
|
156
|
+
marginBottom: number;
|
|
155
157
|
padding: any;
|
|
156
158
|
display: string;
|
|
157
159
|
};
|
|
@@ -252,9 +254,12 @@ declare const Component: {
|
|
|
252
254
|
margin: string;
|
|
253
255
|
};
|
|
254
256
|
};
|
|
257
|
+
'& .SCFeedObject-show-more': {
|
|
258
|
+
padding: any;
|
|
259
|
+
marginTop: any;
|
|
260
|
+
};
|
|
255
261
|
};
|
|
256
262
|
'& .SCFeedObject-actions-section': {
|
|
257
|
-
marginBottom: any;
|
|
258
263
|
'&:last-of-type': {
|
|
259
264
|
marginBottom: number;
|
|
260
265
|
};
|
|
@@ -327,6 +332,7 @@ declare const Component: {
|
|
|
327
332
|
paddingBottom: number;
|
|
328
333
|
'& .SCActivitiesMenu-selector': {
|
|
329
334
|
'& .MuiButton-root': {
|
|
335
|
+
marginTop: any;
|
|
330
336
|
fontSize: string;
|
|
331
337
|
fontWeight: any;
|
|
332
338
|
padding: any;
|