@selfcommunity/react-theme-default 0.4.2-courses.174 → 0.4.2-courses.176

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.
@@ -38,6 +38,7 @@ declare const Component: {
38
38
  '& .SCAccordionLessons-link': {
39
39
  textDecoration: string;
40
40
  padding: number;
41
+ justifyContent: string;
41
42
  '&:hover': {
42
43
  backgroundColor: string;
43
44
  textDecoration: string;
@@ -38,6 +38,7 @@ const Component = {
38
38
  '& .SCAccordionLessons-link': {
39
39
  textDecoration: 'underline',
40
40
  padding: 0,
41
+ justifyContent: 'space-between',
41
42
  '&:hover': {
42
43
  backgroundColor: 'unset',
43
44
  textDecoration: 'underline'
@@ -141,6 +141,9 @@ declare const Component: {
141
141
  };
142
142
  };
143
143
  '&.SCCourseDashboard-student-container': {
144
+ '& .SCCourseDashboard-description': {
145
+ whiteSpace: string;
146
+ };
144
147
  '& .SCCourseDashboard-accordion': {
145
148
  borderTopLeftRadius: string;
146
149
  borderTopRightRadius: string;
@@ -139,6 +139,9 @@ const Component = {
139
139
  }
140
140
  },
141
141
  '&.SCCourseDashboard-student-container': {
142
+ '& .SCCourseDashboard-description': {
143
+ whiteSpace: 'pre-line'
144
+ },
142
145
  '& .SCCourseDashboard-accordion': {
143
146
  borderTopLeftRadius: 'unset',
144
147
  borderTopRightRadius: 'unset'
@@ -83,6 +83,13 @@ declare const Component: {
83
83
  '& .SCCourseForm-edit-privacy-item-info': {
84
84
  marginLeft: any;
85
85
  };
86
+ '& .SCCourseForm-disabled': {
87
+ opacity: number;
88
+ };
89
+ '& .SCCourseForm-edit-card': {
90
+ alignItems: string;
91
+ margin: any;
92
+ };
86
93
  };
87
94
  };
88
95
  };
@@ -85,6 +85,13 @@ const Component = {
85
85
  },
86
86
  '& .SCCourseForm-edit-privacy-item-info': {
87
87
  marginLeft: theme.spacing(2)
88
+ },
89
+ '& .SCCourseForm-disabled': {
90
+ opacity: 0.5
91
+ },
92
+ '& .SCCourseForm-edit-card': {
93
+ alignItems: 'center',
94
+ margin: theme.spacing(1)
88
95
  }
89
96
  }
90
97
  }
@@ -103,10 +103,15 @@ declare const Component: {
103
103
  };
104
104
  };
105
105
  };
106
- '& .SCCourses-show-more': {
107
- paddingLeft: any;
108
- '&.Mui-selected, &:hover': {
109
- backgroundColor: string;
106
+ '& .SCCourses-end-message': {
107
+ display: string;
108
+ alignItems: string;
109
+ justifyContent: string;
110
+ '& .MuiButtonBase-root': {
111
+ paddingLeft: any;
112
+ '&.Mui-selected, &:hover': {
113
+ backgroundColor: string;
114
+ };
110
115
  };
111
116
  };
112
117
  };
@@ -105,10 +105,15 @@ const Component = {
105
105
  }
106
106
  }
107
107
  },
108
- '& .SCCourses-show-more': {
109
- paddingLeft: theme.spacing(1),
110
- '&.Mui-selected, &:hover': {
111
- backgroundColor: 'transparent'
108
+ '& .SCCourses-end-message': {
109
+ display: 'flex',
110
+ alignItems: 'center',
111
+ justifyContent: 'center',
112
+ '& .MuiButtonBase-root': {
113
+ paddingLeft: theme.spacing(1),
114
+ '&.Mui-selected, &:hover': {
115
+ backgroundColor: 'transparent'
116
+ }
112
117
  }
113
118
  }
114
119
  }),
@@ -273,6 +273,7 @@ declare const theme: {
273
273
  '& .SCAccordionLessons-link': {
274
274
  textDecoration: string;
275
275
  padding: number;
276
+ justifyContent: string;
276
277
  '&:hover': {
277
278
  backgroundColor: string;
278
279
  textDecoration: string;
@@ -2187,6 +2188,9 @@ declare const theme: {
2187
2188
  };
2188
2189
  };
2189
2190
  '&.SCCourseDashboard-student-container': {
2191
+ '& .SCCourseDashboard-description': {
2192
+ whiteSpace: string;
2193
+ };
2190
2194
  '& .SCCourseDashboard-accordion': {
2191
2195
  borderTopLeftRadius: string;
2192
2196
  borderTopRightRadius: string;
@@ -2507,10 +2511,15 @@ declare const theme: {
2507
2511
  };
2508
2512
  };
2509
2513
  };
2510
- '& .SCCourses-show-more': {
2511
- paddingLeft: any;
2512
- '&.Mui-selected, &:hover': {
2513
- backgroundColor: string;
2514
+ '& .SCCourses-end-message': {
2515
+ display: string;
2516
+ alignItems: string;
2517
+ justifyContent: string;
2518
+ '& .MuiButtonBase-root': {
2519
+ paddingLeft: any;
2520
+ '&.Mui-selected, &:hover': {
2521
+ backgroundColor: string;
2522
+ };
2514
2523
  };
2515
2524
  };
2516
2525
  };
@@ -2618,6 +2627,13 @@ declare const theme: {
2618
2627
  '& .SCCourseForm-edit-privacy-item-info': {
2619
2628
  marginLeft: any;
2620
2629
  };
2630
+ '& .SCCourseForm-disabled': {
2631
+ opacity: number;
2632
+ };
2633
+ '& .SCCourseForm-edit-card': {
2634
+ alignItems: string;
2635
+ margin: any;
2636
+ };
2621
2637
  };
2622
2638
  };
2623
2639
  };
@@ -38,6 +38,7 @@ declare const Component: {
38
38
  '& .SCAccordionLessons-link': {
39
39
  textDecoration: string;
40
40
  padding: number;
41
+ justifyContent: string;
41
42
  '&:hover': {
42
43
  backgroundColor: string;
43
44
  textDecoration: string;
@@ -36,6 +36,7 @@ const Component = {
36
36
  '& .SCAccordionLessons-link': {
37
37
  textDecoration: 'underline',
38
38
  padding: 0,
39
+ justifyContent: 'space-between',
39
40
  '&:hover': {
40
41
  backgroundColor: 'unset',
41
42
  textDecoration: 'underline'
@@ -141,6 +141,9 @@ declare const Component: {
141
141
  };
142
142
  };
143
143
  '&.SCCourseDashboard-student-container': {
144
+ '& .SCCourseDashboard-description': {
145
+ whiteSpace: string;
146
+ };
144
147
  '& .SCCourseDashboard-accordion': {
145
148
  borderTopLeftRadius: string;
146
149
  borderTopRightRadius: string;
@@ -137,6 +137,9 @@ const Component = {
137
137
  }
138
138
  },
139
139
  '&.SCCourseDashboard-student-container': {
140
+ '& .SCCourseDashboard-description': {
141
+ whiteSpace: 'pre-line'
142
+ },
140
143
  '& .SCCourseDashboard-accordion': {
141
144
  borderTopLeftRadius: 'unset',
142
145
  borderTopRightRadius: 'unset'
@@ -83,6 +83,13 @@ declare const Component: {
83
83
  '& .SCCourseForm-edit-privacy-item-info': {
84
84
  marginLeft: any;
85
85
  };
86
+ '& .SCCourseForm-disabled': {
87
+ opacity: number;
88
+ };
89
+ '& .SCCourseForm-edit-card': {
90
+ alignItems: string;
91
+ margin: any;
92
+ };
86
93
  };
87
94
  };
88
95
  };
@@ -83,6 +83,13 @@ const Component = {
83
83
  },
84
84
  '& .SCCourseForm-edit-privacy-item-info': {
85
85
  marginLeft: theme.spacing(2)
86
+ },
87
+ '& .SCCourseForm-disabled': {
88
+ opacity: 0.5
89
+ },
90
+ '& .SCCourseForm-edit-card': {
91
+ alignItems: 'center',
92
+ margin: theme.spacing(1)
86
93
  }
87
94
  }
88
95
  }
@@ -103,10 +103,15 @@ declare const Component: {
103
103
  };
104
104
  };
105
105
  };
106
- '& .SCCourses-show-more': {
107
- paddingLeft: any;
108
- '&.Mui-selected, &:hover': {
109
- backgroundColor: string;
106
+ '& .SCCourses-end-message': {
107
+ display: string;
108
+ alignItems: string;
109
+ justifyContent: string;
110
+ '& .MuiButtonBase-root': {
111
+ paddingLeft: any;
112
+ '&.Mui-selected, &:hover': {
113
+ backgroundColor: string;
114
+ };
110
115
  };
111
116
  };
112
117
  };
@@ -103,10 +103,15 @@ const Component = {
103
103
  }
104
104
  }
105
105
  },
106
- '& .SCCourses-show-more': {
107
- paddingLeft: theme.spacing(1),
108
- '&.Mui-selected, &:hover': {
109
- backgroundColor: 'transparent'
106
+ '& .SCCourses-end-message': {
107
+ display: 'flex',
108
+ alignItems: 'center',
109
+ justifyContent: 'center',
110
+ '& .MuiButtonBase-root': {
111
+ paddingLeft: theme.spacing(1),
112
+ '&.Mui-selected, &:hover': {
113
+ backgroundColor: 'transparent'
114
+ }
110
115
  }
111
116
  }
112
117
  }),
@@ -273,6 +273,7 @@ declare const theme: {
273
273
  '& .SCAccordionLessons-link': {
274
274
  textDecoration: string;
275
275
  padding: number;
276
+ justifyContent: string;
276
277
  '&:hover': {
277
278
  backgroundColor: string;
278
279
  textDecoration: string;
@@ -2187,6 +2188,9 @@ declare const theme: {
2187
2188
  };
2188
2189
  };
2189
2190
  '&.SCCourseDashboard-student-container': {
2191
+ '& .SCCourseDashboard-description': {
2192
+ whiteSpace: string;
2193
+ };
2190
2194
  '& .SCCourseDashboard-accordion': {
2191
2195
  borderTopLeftRadius: string;
2192
2196
  borderTopRightRadius: string;
@@ -2507,10 +2511,15 @@ declare const theme: {
2507
2511
  };
2508
2512
  };
2509
2513
  };
2510
- '& .SCCourses-show-more': {
2511
- paddingLeft: any;
2512
- '&.Mui-selected, &:hover': {
2513
- backgroundColor: string;
2514
+ '& .SCCourses-end-message': {
2515
+ display: string;
2516
+ alignItems: string;
2517
+ justifyContent: string;
2518
+ '& .MuiButtonBase-root': {
2519
+ paddingLeft: any;
2520
+ '&.Mui-selected, &:hover': {
2521
+ backgroundColor: string;
2522
+ };
2514
2523
  };
2515
2524
  };
2516
2525
  };
@@ -2618,6 +2627,13 @@ declare const theme: {
2618
2627
  '& .SCCourseForm-edit-privacy-item-info': {
2619
2628
  marginLeft: any;
2620
2629
  };
2630
+ '& .SCCourseForm-disabled': {
2631
+ opacity: number;
2632
+ };
2633
+ '& .SCCourseForm-edit-card': {
2634
+ alignItems: string;
2635
+ margin: any;
2636
+ };
2621
2637
  };
2622
2638
  };
2623
2639
  };