@selfcommunity/react-theme-default 0.1.50-events.77 → 0.1.50-events.79
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/SCEventHeader.d.ts +3 -3
- package/lib/cjs/components/SCEventHeader.js +3 -3
- package/lib/cjs/components/SCEventInfoDetails.d.ts +4 -0
- package/lib/cjs/components/SCEventInfoDetails.js +4 -0
- package/lib/cjs/components/SCMyEventsWidget.d.ts +0 -1
- package/lib/cjs/components/SCMyEventsWidget.js +0 -1
- package/lib/cjs/components/SCOnBoardingWidget.d.ts +16 -7
- package/lib/cjs/components/SCOnBoardingWidget.js +16 -7
- package/lib/cjs/index.d.ts +23 -14
- package/lib/esm/components/SCEventHeader.d.ts +3 -3
- package/lib/esm/components/SCEventHeader.js +3 -3
- package/lib/esm/components/SCEventInfoDetails.d.ts +4 -0
- package/lib/esm/components/SCEventInfoDetails.js +4 -0
- package/lib/esm/components/SCMyEventsWidget.d.ts +0 -1
- package/lib/esm/components/SCMyEventsWidget.js +0 -1
- package/lib/esm/components/SCOnBoardingWidget.d.ts +16 -7
- package/lib/esm/components/SCOnBoardingWidget.js +16 -7
- package/lib/esm/index.d.ts +23 -14
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +4 -4
|
@@ -19,8 +19,6 @@ declare const Component: {
|
|
|
19
19
|
paddingLeft: any;
|
|
20
20
|
};
|
|
21
21
|
'& .SCEventHeader-info': {
|
|
22
|
-
paddingRight: any;
|
|
23
|
-
paddingLeft: any;
|
|
24
22
|
marginTop: any;
|
|
25
23
|
'& .SCEventHeader-name': {
|
|
26
24
|
fontSize: string;
|
|
@@ -54,8 +52,10 @@ declare const Component: {
|
|
|
54
52
|
'& .SCUser-root': {
|
|
55
53
|
borderTop: string;
|
|
56
54
|
borderBottom: string;
|
|
57
|
-
padding: string;
|
|
58
55
|
marginTop: any;
|
|
56
|
+
'& .SCBaseItemButton-content': {
|
|
57
|
+
paddingLeft: any;
|
|
58
|
+
};
|
|
59
59
|
'& .SCBaseItemButton-actions': {
|
|
60
60
|
[x: number]: {
|
|
61
61
|
width: string;
|
|
@@ -22,8 +22,6 @@ const Component = {
|
|
|
22
22
|
paddingLeft: theme.spacing(2)
|
|
23
23
|
},
|
|
24
24
|
'& .SCEventHeader-info': {
|
|
25
|
-
paddingRight: theme.spacing(),
|
|
26
|
-
paddingLeft: theme.spacing(),
|
|
27
25
|
marginTop: theme.spacing(6),
|
|
28
26
|
'& .SCEventHeader-name': {
|
|
29
27
|
fontSize: '1.857rem',
|
|
@@ -57,8 +55,10 @@ const Component = {
|
|
|
57
55
|
'& .SCUser-root': {
|
|
58
56
|
borderTop: `1px solid ${(0, system_1.alpha)(theme.palette.primary.main, theme.palette.action.activatedOpacity)}`,
|
|
59
57
|
borderBottom: `1px solid ${(0, system_1.alpha)(theme.palette.primary.main, theme.palette.action.activatedOpacity)}`,
|
|
60
|
-
padding: `${theme.spacing(0.5)} ${theme.spacing(2)} ${theme.spacing(0.5)} ${theme.spacing(2)}!important`,
|
|
61
58
|
marginTop: theme.spacing(1),
|
|
59
|
+
'& .SCBaseItemButton-content': {
|
|
60
|
+
paddingLeft: theme.spacing(2)
|
|
61
|
+
},
|
|
62
62
|
'& .SCBaseItemButton-actions': {
|
|
63
63
|
maxWidth: 'none',
|
|
64
64
|
[theme.breakpoints.up('sm')]: {
|
|
@@ -10,6 +10,10 @@ const Component = {
|
|
|
10
10
|
gap: theme.spacing(1),
|
|
11
11
|
'& .SCEventInfoDetails-link': {
|
|
12
12
|
textDecoration: 'none',
|
|
13
|
+
color: theme.palette.text.primary,
|
|
14
|
+
'&:hover': {
|
|
15
|
+
textDecoration: 'underlined'
|
|
16
|
+
},
|
|
13
17
|
'& .SCEventInfoDetails-url': {
|
|
14
18
|
overflow: 'hidden',
|
|
15
19
|
textOverflow: 'ellipsis',
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
-
|
|
4
|
+
borderRadius: any;
|
|
5
5
|
'& .SCOnBoardingWidget-step-content': {
|
|
6
6
|
[x: number]: {
|
|
7
7
|
width: string;
|
|
@@ -59,15 +59,24 @@ declare const Component: {
|
|
|
59
59
|
};
|
|
60
60
|
};
|
|
61
61
|
accordionRoot: ({ theme, expanded }: any) => {
|
|
62
|
-
[x: number]: {
|
|
63
|
-
width: string;
|
|
64
|
-
};
|
|
65
62
|
boxShadow: string;
|
|
66
63
|
'& .MuiAccordionDetails-root ': {
|
|
67
|
-
[x: number]: {
|
|
68
|
-
marginTop: any;
|
|
69
|
-
};
|
|
70
64
|
paddingLeft: number;
|
|
65
|
+
paddingRight: number;
|
|
66
|
+
'& .SCOnBoardingWidget-content': {
|
|
67
|
+
'& .MuiCardContent-root': {
|
|
68
|
+
[x: number]: {
|
|
69
|
+
'& .MuiListItem-root:first-of-type': {
|
|
70
|
+
paddingTop: any;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
padding: number;
|
|
74
|
+
'& .MuiList-root': {
|
|
75
|
+
paddingTop: number;
|
|
76
|
+
paddingBottom: any;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
};
|
|
71
80
|
};
|
|
72
81
|
'& .MuiAccordionSummary-root': {
|
|
73
82
|
backgroundColor: any;
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const Component = {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
|
-
|
|
6
|
+
borderRadius: theme.shape.borderRadius,
|
|
7
7
|
'& .SCOnBoardingWidget-step-content': {
|
|
8
8
|
[theme.breakpoints.up('md')]: {
|
|
9
9
|
width: '70%'
|
|
@@ -49,7 +49,7 @@ const Component = {
|
|
|
49
49
|
backgroundColor: theme.palette.grey['A200']
|
|
50
50
|
},
|
|
51
51
|
'& .MuiButtonBase-root': {
|
|
52
|
-
height: theme.spacing(
|
|
52
|
+
height: theme.spacing(5),
|
|
53
53
|
'&:hover': {
|
|
54
54
|
backgroundColor: theme.palette.grey['A200']
|
|
55
55
|
},
|
|
@@ -62,13 +62,22 @@ const Component = {
|
|
|
62
62
|
}),
|
|
63
63
|
accordionRoot: ({ theme, expanded }) => ({
|
|
64
64
|
boxShadow: 'none',
|
|
65
|
-
[theme.breakpoints.up('sm')]: {
|
|
66
|
-
width: '600px'
|
|
67
|
-
},
|
|
68
65
|
'& .MuiAccordionDetails-root ': {
|
|
69
66
|
paddingLeft: 0,
|
|
70
|
-
|
|
71
|
-
|
|
67
|
+
paddingRight: 0,
|
|
68
|
+
'& .SCOnBoardingWidget-content': {
|
|
69
|
+
'& .MuiCardContent-root': {
|
|
70
|
+
padding: 0,
|
|
71
|
+
'& .MuiList-root': {
|
|
72
|
+
paddingTop: 0,
|
|
73
|
+
paddingBottom: theme.spacing(1)
|
|
74
|
+
},
|
|
75
|
+
[theme.breakpoints.down('md')]: {
|
|
76
|
+
'& .MuiListItem-root:first-of-type': {
|
|
77
|
+
paddingTop: theme.spacing(1)
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
72
81
|
}
|
|
73
82
|
},
|
|
74
83
|
'& .MuiAccordionSummary-root': {
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -4884,7 +4884,7 @@ declare const theme: {
|
|
|
4884
4884
|
SCOnBoardingWidget: {
|
|
4885
4885
|
styleOverrides: {
|
|
4886
4886
|
root: ({ theme }: any) => {
|
|
4887
|
-
|
|
4887
|
+
borderRadius: any;
|
|
4888
4888
|
'& .SCOnBoardingWidget-step-content': {
|
|
4889
4889
|
[x: number]: {
|
|
4890
4890
|
width: string;
|
|
@@ -4942,15 +4942,24 @@ declare const theme: {
|
|
|
4942
4942
|
};
|
|
4943
4943
|
};
|
|
4944
4944
|
accordionRoot: ({ theme, expanded }: any) => {
|
|
4945
|
-
[x: number]: {
|
|
4946
|
-
width: string;
|
|
4947
|
-
};
|
|
4948
4945
|
boxShadow: string;
|
|
4949
4946
|
'& .MuiAccordionDetails-root ': {
|
|
4950
|
-
[x: number]: {
|
|
4951
|
-
marginTop: any;
|
|
4952
|
-
};
|
|
4953
4947
|
paddingLeft: number;
|
|
4948
|
+
paddingRight: number;
|
|
4949
|
+
'& .SCOnBoardingWidget-content': {
|
|
4950
|
+
'& .MuiCardContent-root': {
|
|
4951
|
+
[x: number]: {
|
|
4952
|
+
'& .MuiListItem-root:first-of-type': {
|
|
4953
|
+
paddingTop: any;
|
|
4954
|
+
};
|
|
4955
|
+
};
|
|
4956
|
+
padding: number;
|
|
4957
|
+
'& .MuiList-root': {
|
|
4958
|
+
paddingTop: number;
|
|
4959
|
+
paddingBottom: any;
|
|
4960
|
+
};
|
|
4961
|
+
};
|
|
4962
|
+
};
|
|
4954
4963
|
};
|
|
4955
4964
|
'& .MuiAccordionSummary-root': {
|
|
4956
4965
|
backgroundColor: any;
|
|
@@ -7054,8 +7063,6 @@ declare const theme: {
|
|
|
7054
7063
|
paddingLeft: any;
|
|
7055
7064
|
};
|
|
7056
7065
|
'& .SCEventHeader-info': {
|
|
7057
|
-
paddingRight: any;
|
|
7058
|
-
paddingLeft: any;
|
|
7059
7066
|
marginTop: any;
|
|
7060
7067
|
'& .SCEventHeader-name': {
|
|
7061
7068
|
fontSize: string;
|
|
@@ -7089,8 +7096,10 @@ declare const theme: {
|
|
|
7089
7096
|
'& .SCUser-root': {
|
|
7090
7097
|
borderTop: string;
|
|
7091
7098
|
borderBottom: string;
|
|
7092
|
-
padding: string;
|
|
7093
7099
|
marginTop: any;
|
|
7100
|
+
'& .SCBaseItemButton-content': {
|
|
7101
|
+
paddingLeft: any;
|
|
7102
|
+
};
|
|
7094
7103
|
'& .SCBaseItemButton-actions': {
|
|
7095
7104
|
[x: number]: {
|
|
7096
7105
|
width: string;
|
|
@@ -7177,9 +7186,6 @@ declare const theme: {
|
|
|
7177
7186
|
root: ({ theme }: {
|
|
7178
7187
|
theme: any;
|
|
7179
7188
|
}) => {
|
|
7180
|
-
/**
|
|
7181
|
-
* Style fragments - Imports - Start
|
|
7182
|
-
*/
|
|
7183
7189
|
gap: any;
|
|
7184
7190
|
'& .SCEventInfoDetails-icon-text-wrapper': {
|
|
7185
7191
|
flexDirection: string;
|
|
@@ -7187,6 +7193,10 @@ declare const theme: {
|
|
|
7187
7193
|
gap: any;
|
|
7188
7194
|
'& .SCEventInfoDetails-link': {
|
|
7189
7195
|
textDecoration: string;
|
|
7196
|
+
color: any;
|
|
7197
|
+
'&:hover': {
|
|
7198
|
+
textDecoration: string;
|
|
7199
|
+
};
|
|
7190
7200
|
'& .SCEventInfoDetails-url': {
|
|
7191
7201
|
overflow: string;
|
|
7192
7202
|
textOverflow: string;
|
|
@@ -7324,7 +7334,6 @@ declare const theme: {
|
|
|
7324
7334
|
'& .SCMyEventsWidget-arrows': {
|
|
7325
7335
|
width: string;
|
|
7326
7336
|
height: string;
|
|
7327
|
-
color: any;
|
|
7328
7337
|
};
|
|
7329
7338
|
'& .SCMyEventsWidget-action-button': {
|
|
7330
7339
|
color: any;
|
|
@@ -19,8 +19,6 @@ declare const Component: {
|
|
|
19
19
|
paddingLeft: any;
|
|
20
20
|
};
|
|
21
21
|
'& .SCEventHeader-info': {
|
|
22
|
-
paddingRight: any;
|
|
23
|
-
paddingLeft: any;
|
|
24
22
|
marginTop: any;
|
|
25
23
|
'& .SCEventHeader-name': {
|
|
26
24
|
fontSize: string;
|
|
@@ -54,8 +52,10 @@ declare const Component: {
|
|
|
54
52
|
'& .SCUser-root': {
|
|
55
53
|
borderTop: string;
|
|
56
54
|
borderBottom: string;
|
|
57
|
-
padding: string;
|
|
58
55
|
marginTop: any;
|
|
56
|
+
'& .SCBaseItemButton-content': {
|
|
57
|
+
paddingLeft: any;
|
|
58
|
+
};
|
|
59
59
|
'& .SCBaseItemButton-actions': {
|
|
60
60
|
[x: number]: {
|
|
61
61
|
width: string;
|
|
@@ -20,8 +20,6 @@ const Component = {
|
|
|
20
20
|
paddingLeft: theme.spacing(2)
|
|
21
21
|
},
|
|
22
22
|
'& .SCEventHeader-info': {
|
|
23
|
-
paddingRight: theme.spacing(),
|
|
24
|
-
paddingLeft: theme.spacing(),
|
|
25
23
|
marginTop: theme.spacing(6),
|
|
26
24
|
'& .SCEventHeader-name': {
|
|
27
25
|
fontSize: '1.857rem',
|
|
@@ -55,8 +53,10 @@ const Component = {
|
|
|
55
53
|
'& .SCUser-root': {
|
|
56
54
|
borderTop: `1px solid ${alpha(theme.palette.primary.main, theme.palette.action.activatedOpacity)}`,
|
|
57
55
|
borderBottom: `1px solid ${alpha(theme.palette.primary.main, theme.palette.action.activatedOpacity)}`,
|
|
58
|
-
padding: `${theme.spacing(0.5)} ${theme.spacing(2)} ${theme.spacing(0.5)} ${theme.spacing(2)}!important`,
|
|
59
56
|
marginTop: theme.spacing(1),
|
|
57
|
+
'& .SCBaseItemButton-content': {
|
|
58
|
+
paddingLeft: theme.spacing(2)
|
|
59
|
+
},
|
|
60
60
|
'& .SCBaseItemButton-actions': {
|
|
61
61
|
maxWidth: 'none',
|
|
62
62
|
[theme.breakpoints.up('sm')]: {
|
|
@@ -8,6 +8,10 @@ const Component = {
|
|
|
8
8
|
gap: theme.spacing(1),
|
|
9
9
|
'& .SCEventInfoDetails-link': {
|
|
10
10
|
textDecoration: 'none',
|
|
11
|
+
color: theme.palette.text.primary,
|
|
12
|
+
'&:hover': {
|
|
13
|
+
textDecoration: 'underlined'
|
|
14
|
+
},
|
|
11
15
|
'& .SCEventInfoDetails-url': {
|
|
12
16
|
overflow: 'hidden',
|
|
13
17
|
textOverflow: 'ellipsis',
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
-
|
|
4
|
+
borderRadius: any;
|
|
5
5
|
'& .SCOnBoardingWidget-step-content': {
|
|
6
6
|
[x: number]: {
|
|
7
7
|
width: string;
|
|
@@ -59,15 +59,24 @@ declare const Component: {
|
|
|
59
59
|
};
|
|
60
60
|
};
|
|
61
61
|
accordionRoot: ({ theme, expanded }: any) => {
|
|
62
|
-
[x: number]: {
|
|
63
|
-
width: string;
|
|
64
|
-
};
|
|
65
62
|
boxShadow: string;
|
|
66
63
|
'& .MuiAccordionDetails-root ': {
|
|
67
|
-
[x: number]: {
|
|
68
|
-
marginTop: any;
|
|
69
|
-
};
|
|
70
64
|
paddingLeft: number;
|
|
65
|
+
paddingRight: number;
|
|
66
|
+
'& .SCOnBoardingWidget-content': {
|
|
67
|
+
'& .MuiCardContent-root': {
|
|
68
|
+
[x: number]: {
|
|
69
|
+
'& .MuiListItem-root:first-of-type': {
|
|
70
|
+
paddingTop: any;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
padding: number;
|
|
74
|
+
'& .MuiList-root': {
|
|
75
|
+
paddingTop: number;
|
|
76
|
+
paddingBottom: any;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
};
|
|
71
80
|
};
|
|
72
81
|
'& .MuiAccordionSummary-root': {
|
|
73
82
|
backgroundColor: any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const Component = {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }) => ({
|
|
4
|
-
|
|
4
|
+
borderRadius: theme.shape.borderRadius,
|
|
5
5
|
'& .SCOnBoardingWidget-step-content': {
|
|
6
6
|
[theme.breakpoints.up('md')]: {
|
|
7
7
|
width: '70%'
|
|
@@ -47,7 +47,7 @@ const Component = {
|
|
|
47
47
|
backgroundColor: theme.palette.grey['A200']
|
|
48
48
|
},
|
|
49
49
|
'& .MuiButtonBase-root': {
|
|
50
|
-
height: theme.spacing(
|
|
50
|
+
height: theme.spacing(5),
|
|
51
51
|
'&:hover': {
|
|
52
52
|
backgroundColor: theme.palette.grey['A200']
|
|
53
53
|
},
|
|
@@ -60,13 +60,22 @@ const Component = {
|
|
|
60
60
|
}),
|
|
61
61
|
accordionRoot: ({ theme, expanded }) => ({
|
|
62
62
|
boxShadow: 'none',
|
|
63
|
-
[theme.breakpoints.up('sm')]: {
|
|
64
|
-
width: '600px'
|
|
65
|
-
},
|
|
66
63
|
'& .MuiAccordionDetails-root ': {
|
|
67
64
|
paddingLeft: 0,
|
|
68
|
-
|
|
69
|
-
|
|
65
|
+
paddingRight: 0,
|
|
66
|
+
'& .SCOnBoardingWidget-content': {
|
|
67
|
+
'& .MuiCardContent-root': {
|
|
68
|
+
padding: 0,
|
|
69
|
+
'& .MuiList-root': {
|
|
70
|
+
paddingTop: 0,
|
|
71
|
+
paddingBottom: theme.spacing(1)
|
|
72
|
+
},
|
|
73
|
+
[theme.breakpoints.down('md')]: {
|
|
74
|
+
'& .MuiListItem-root:first-of-type': {
|
|
75
|
+
paddingTop: theme.spacing(1)
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
70
79
|
}
|
|
71
80
|
},
|
|
72
81
|
'& .MuiAccordionSummary-root': {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -4884,7 +4884,7 @@ declare const theme: {
|
|
|
4884
4884
|
SCOnBoardingWidget: {
|
|
4885
4885
|
styleOverrides: {
|
|
4886
4886
|
root: ({ theme }: any) => {
|
|
4887
|
-
|
|
4887
|
+
borderRadius: any;
|
|
4888
4888
|
'& .SCOnBoardingWidget-step-content': {
|
|
4889
4889
|
[x: number]: {
|
|
4890
4890
|
width: string;
|
|
@@ -4942,15 +4942,24 @@ declare const theme: {
|
|
|
4942
4942
|
};
|
|
4943
4943
|
};
|
|
4944
4944
|
accordionRoot: ({ theme, expanded }: any) => {
|
|
4945
|
-
[x: number]: {
|
|
4946
|
-
width: string;
|
|
4947
|
-
};
|
|
4948
4945
|
boxShadow: string;
|
|
4949
4946
|
'& .MuiAccordionDetails-root ': {
|
|
4950
|
-
[x: number]: {
|
|
4951
|
-
marginTop: any;
|
|
4952
|
-
};
|
|
4953
4947
|
paddingLeft: number;
|
|
4948
|
+
paddingRight: number;
|
|
4949
|
+
'& .SCOnBoardingWidget-content': {
|
|
4950
|
+
'& .MuiCardContent-root': {
|
|
4951
|
+
[x: number]: {
|
|
4952
|
+
'& .MuiListItem-root:first-of-type': {
|
|
4953
|
+
paddingTop: any;
|
|
4954
|
+
};
|
|
4955
|
+
};
|
|
4956
|
+
padding: number;
|
|
4957
|
+
'& .MuiList-root': {
|
|
4958
|
+
paddingTop: number;
|
|
4959
|
+
paddingBottom: any;
|
|
4960
|
+
};
|
|
4961
|
+
};
|
|
4962
|
+
};
|
|
4954
4963
|
};
|
|
4955
4964
|
'& .MuiAccordionSummary-root': {
|
|
4956
4965
|
backgroundColor: any;
|
|
@@ -7054,8 +7063,6 @@ declare const theme: {
|
|
|
7054
7063
|
paddingLeft: any;
|
|
7055
7064
|
};
|
|
7056
7065
|
'& .SCEventHeader-info': {
|
|
7057
|
-
paddingRight: any;
|
|
7058
|
-
paddingLeft: any;
|
|
7059
7066
|
marginTop: any;
|
|
7060
7067
|
'& .SCEventHeader-name': {
|
|
7061
7068
|
fontSize: string;
|
|
@@ -7089,8 +7096,10 @@ declare const theme: {
|
|
|
7089
7096
|
'& .SCUser-root': {
|
|
7090
7097
|
borderTop: string;
|
|
7091
7098
|
borderBottom: string;
|
|
7092
|
-
padding: string;
|
|
7093
7099
|
marginTop: any;
|
|
7100
|
+
'& .SCBaseItemButton-content': {
|
|
7101
|
+
paddingLeft: any;
|
|
7102
|
+
};
|
|
7094
7103
|
'& .SCBaseItemButton-actions': {
|
|
7095
7104
|
[x: number]: {
|
|
7096
7105
|
width: string;
|
|
@@ -7177,9 +7186,6 @@ declare const theme: {
|
|
|
7177
7186
|
root: ({ theme }: {
|
|
7178
7187
|
theme: any;
|
|
7179
7188
|
}) => {
|
|
7180
|
-
/**
|
|
7181
|
-
* Style fragments - Imports - Start
|
|
7182
|
-
*/
|
|
7183
7189
|
gap: any;
|
|
7184
7190
|
'& .SCEventInfoDetails-icon-text-wrapper': {
|
|
7185
7191
|
flexDirection: string;
|
|
@@ -7187,6 +7193,10 @@ declare const theme: {
|
|
|
7187
7193
|
gap: any;
|
|
7188
7194
|
'& .SCEventInfoDetails-link': {
|
|
7189
7195
|
textDecoration: string;
|
|
7196
|
+
color: any;
|
|
7197
|
+
'&:hover': {
|
|
7198
|
+
textDecoration: string;
|
|
7199
|
+
};
|
|
7190
7200
|
'& .SCEventInfoDetails-url': {
|
|
7191
7201
|
overflow: string;
|
|
7192
7202
|
textOverflow: string;
|
|
@@ -7324,7 +7334,6 @@ declare const theme: {
|
|
|
7324
7334
|
'& .SCMyEventsWidget-arrows': {
|
|
7325
7335
|
width: string;
|
|
7326
7336
|
height: string;
|
|
7327
|
-
color: any;
|
|
7328
7337
|
};
|
|
7329
7338
|
'& .SCMyEventsWidget-action-button': {
|
|
7330
7339
|
color: any;
|