@selfcommunity/react-theme-default 0.4.2-courses.116 → 0.4.2-courses.118

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.
@@ -8,6 +8,9 @@ declare const Component: {
8
8
  padding: any;
9
9
  justifyContent: string;
10
10
  '& .SCCommentObjectReply-root': {
11
+ [x: number]: {
12
+ marginTop: any;
13
+ };
11
14
  backgroundColor: string;
12
15
  '& .SCEditor-actions': {
13
16
  left: any;
@@ -15,12 +18,14 @@ declare const Component: {
15
18
  marginLeft: string;
16
19
  };
17
20
  };
18
- marginTop: any;
19
21
  marginBottom: number;
20
22
  };
21
23
  '& .infinite-scroll-component__outerdiv': {
22
24
  overflowY: string;
23
25
  '& .infinite-scroll-component': {
26
+ [x: number]: {
27
+ height: string;
28
+ };
24
29
  '& .MuiList-root ': {
25
30
  padding: number;
26
31
  '& .MuiListItem-root': {
@@ -17,7 +17,9 @@ const Component = {
17
17
  marginLeft: 'auto'
18
18
  }
19
19
  },
20
- marginTop: theme.spacing(2),
20
+ [theme.breakpoints.down('sm')]: {
21
+ marginTop: theme.spacing(2)
22
+ },
21
23
  marginBottom: 0
22
24
  },
23
25
  '& .infinite-scroll-component__outerdiv': {
@@ -28,6 +30,9 @@ const Component = {
28
30
  '& .MuiListItem-root': {
29
31
  padding: 0
30
32
  }
33
+ },
34
+ [theme.breakpoints.up('sm')]: {
35
+ height: '90% !important'
31
36
  }
32
37
  }
33
38
  }
@@ -23,7 +23,7 @@ const Component = {
23
23
  '& .SCLessonDrawer-header': {
24
24
  minHeight: '60px',
25
25
  display: 'block',
26
- padding: theme.spacing(1, 1, 1, 2)
26
+ padding: theme.spacing(1.5)
27
27
  },
28
28
  '& .SCLessonDrawer-header-content': {
29
29
  display: 'flex',
@@ -97,11 +97,18 @@ declare const Component: {
97
97
  };
98
98
  '& .lk-settings-menu-modal': {
99
99
  minWidth: number;
100
+ paddingTop: any;
101
+ '& .lk-settings-menu-modal-icon-close': {
102
+ color: any;
103
+ position: string;
104
+ top: number;
105
+ right: number;
106
+ };
100
107
  '& .MuiFormControlLabel-root': {
101
108
  marginLeft: number;
102
109
  };
103
- '& div.MuiTypography-body1': {
104
- color: any;
110
+ '& .MuiTypography-body1': {
111
+ color: string;
105
112
  };
106
113
  '& .MuiSwitch-track': {
107
114
  backgroundColor: any;
@@ -98,12 +98,19 @@ const Component = {
98
98
  }
99
99
  },
100
100
  '& .lk-settings-menu-modal': {
101
- minWidth: 250,
101
+ minWidth: 290,
102
+ paddingTop: theme.spacing(3),
103
+ '& .lk-settings-menu-modal-icon-close': {
104
+ color: theme.palette.common.white,
105
+ position: 'absolute',
106
+ top: 3,
107
+ right: 2
108
+ },
102
109
  '& .MuiFormControlLabel-root': {
103
110
  marginLeft: 0
104
111
  },
105
- '& div.MuiTypography-body1': {
106
- color: theme.palette.common.white
112
+ '& .MuiTypography-body1': {
113
+ color: '#FFF !important'
107
114
  },
108
115
  '& .MuiSwitch-track': {
109
116
  backgroundColor: theme.palette.grey['300']
@@ -5213,6 +5213,9 @@ declare const theme: {
5213
5213
  padding: any;
5214
5214
  justifyContent: string;
5215
5215
  '& .SCCommentObjectReply-root': {
5216
+ [x: number]: {
5217
+ marginTop: any;
5218
+ };
5216
5219
  backgroundColor: string;
5217
5220
  '& .SCEditor-actions': {
5218
5221
  left: any;
@@ -5220,12 +5223,14 @@ declare const theme: {
5220
5223
  marginLeft: string;
5221
5224
  };
5222
5225
  };
5223
- marginTop: any;
5224
5226
  marginBottom: number;
5225
5227
  };
5226
5228
  '& .infinite-scroll-component__outerdiv': {
5227
5229
  overflowY: string;
5228
5230
  '& .infinite-scroll-component': {
5231
+ [x: number]: {
5232
+ height: string;
5233
+ };
5229
5234
  '& .MuiList-root ': {
5230
5235
  padding: number;
5231
5236
  '& .MuiListItem-root': {
@@ -10872,11 +10877,18 @@ declare const theme: {
10872
10877
  };
10873
10878
  '& .lk-settings-menu-modal': {
10874
10879
  minWidth: number;
10880
+ paddingTop: any;
10881
+ '& .lk-settings-menu-modal-icon-close': {
10882
+ color: any;
10883
+ position: string;
10884
+ top: number;
10885
+ right: number;
10886
+ };
10875
10887
  '& .MuiFormControlLabel-root': {
10876
10888
  marginLeft: number;
10877
10889
  };
10878
- '& div.MuiTypography-body1': {
10879
- color: any;
10890
+ '& .MuiTypography-body1': {
10891
+ color: string;
10880
10892
  };
10881
10893
  '& .MuiSwitch-track': {
10882
10894
  backgroundColor: any;
@@ -8,6 +8,9 @@ declare const Component: {
8
8
  padding: any;
9
9
  justifyContent: string;
10
10
  '& .SCCommentObjectReply-root': {
11
+ [x: number]: {
12
+ marginTop: any;
13
+ };
11
14
  backgroundColor: string;
12
15
  '& .SCEditor-actions': {
13
16
  left: any;
@@ -15,12 +18,14 @@ declare const Component: {
15
18
  marginLeft: string;
16
19
  };
17
20
  };
18
- marginTop: any;
19
21
  marginBottom: number;
20
22
  };
21
23
  '& .infinite-scroll-component__outerdiv': {
22
24
  overflowY: string;
23
25
  '& .infinite-scroll-component': {
26
+ [x: number]: {
27
+ height: string;
28
+ };
24
29
  '& .MuiList-root ': {
25
30
  padding: number;
26
31
  '& .MuiListItem-root': {
@@ -15,7 +15,9 @@ const Component = {
15
15
  marginLeft: 'auto'
16
16
  }
17
17
  },
18
- marginTop: theme.spacing(2),
18
+ [theme.breakpoints.down('sm')]: {
19
+ marginTop: theme.spacing(2)
20
+ },
19
21
  marginBottom: 0
20
22
  },
21
23
  '& .infinite-scroll-component__outerdiv': {
@@ -26,6 +28,9 @@ const Component = {
26
28
  '& .MuiListItem-root': {
27
29
  padding: 0
28
30
  }
31
+ },
32
+ [theme.breakpoints.up('sm')]: {
33
+ height: '90% !important'
29
34
  }
30
35
  }
31
36
  }
@@ -21,7 +21,7 @@ const Component = {
21
21
  '& .SCLessonDrawer-header': {
22
22
  minHeight: '60px',
23
23
  display: 'block',
24
- padding: theme.spacing(1, 1, 1, 2)
24
+ padding: theme.spacing(1.5)
25
25
  },
26
26
  '& .SCLessonDrawer-header-content': {
27
27
  display: 'flex',
@@ -97,11 +97,18 @@ declare const Component: {
97
97
  };
98
98
  '& .lk-settings-menu-modal': {
99
99
  minWidth: number;
100
+ paddingTop: any;
101
+ '& .lk-settings-menu-modal-icon-close': {
102
+ color: any;
103
+ position: string;
104
+ top: number;
105
+ right: number;
106
+ };
100
107
  '& .MuiFormControlLabel-root': {
101
108
  marginLeft: number;
102
109
  };
103
- '& div.MuiTypography-body1': {
104
- color: any;
110
+ '& .MuiTypography-body1': {
111
+ color: string;
105
112
  };
106
113
  '& .MuiSwitch-track': {
107
114
  backgroundColor: any;
@@ -96,12 +96,19 @@ const Component = {
96
96
  }
97
97
  },
98
98
  '& .lk-settings-menu-modal': {
99
- minWidth: 250,
99
+ minWidth: 290,
100
+ paddingTop: theme.spacing(3),
101
+ '& .lk-settings-menu-modal-icon-close': {
102
+ color: theme.palette.common.white,
103
+ position: 'absolute',
104
+ top: 3,
105
+ right: 2
106
+ },
100
107
  '& .MuiFormControlLabel-root': {
101
108
  marginLeft: 0
102
109
  },
103
- '& div.MuiTypography-body1': {
104
- color: theme.palette.common.white
110
+ '& .MuiTypography-body1': {
111
+ color: '#FFF !important'
105
112
  },
106
113
  '& .MuiSwitch-track': {
107
114
  backgroundColor: theme.palette.grey['300']
@@ -5213,6 +5213,9 @@ declare const theme: {
5213
5213
  padding: any;
5214
5214
  justifyContent: string;
5215
5215
  '& .SCCommentObjectReply-root': {
5216
+ [x: number]: {
5217
+ marginTop: any;
5218
+ };
5216
5219
  backgroundColor: string;
5217
5220
  '& .SCEditor-actions': {
5218
5221
  left: any;
@@ -5220,12 +5223,14 @@ declare const theme: {
5220
5223
  marginLeft: string;
5221
5224
  };
5222
5225
  };
5223
- marginTop: any;
5224
5226
  marginBottom: number;
5225
5227
  };
5226
5228
  '& .infinite-scroll-component__outerdiv': {
5227
5229
  overflowY: string;
5228
5230
  '& .infinite-scroll-component': {
5231
+ [x: number]: {
5232
+ height: string;
5233
+ };
5229
5234
  '& .MuiList-root ': {
5230
5235
  padding: number;
5231
5236
  '& .MuiListItem-root': {
@@ -10872,11 +10877,18 @@ declare const theme: {
10872
10877
  };
10873
10878
  '& .lk-settings-menu-modal': {
10874
10879
  minWidth: number;
10880
+ paddingTop: any;
10881
+ '& .lk-settings-menu-modal-icon-close': {
10882
+ color: any;
10883
+ position: string;
10884
+ top: number;
10885
+ right: number;
10886
+ };
10875
10887
  '& .MuiFormControlLabel-root': {
10876
10888
  marginLeft: number;
10877
10889
  };
10878
- '& div.MuiTypography-body1': {
10879
- color: any;
10890
+ '& .MuiTypography-body1': {
10891
+ color: string;
10880
10892
  };
10881
10893
  '& .MuiSwitch-track': {
10882
10894
  backgroundColor: any;