@selfcommunity/react-theme-default 0.4.5-alpha.6 → 0.4.5-alpha.8

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.
@@ -12,8 +12,19 @@ declare const Component: {
12
12
  '& .SCFeedObject-text-section .SCFeedObject-text': {
13
13
  '& span': {
14
14
  display: string;
15
+ };
16
+ '& span:not(:has(+ a))': {
15
17
  width: string;
16
18
  };
19
+ '& a': {
20
+ display: string;
21
+ margin: any;
22
+ };
23
+ '& a:hover': {
24
+ '& span': {
25
+ textDecoration: string;
26
+ };
27
+ };
17
28
  };
18
29
  };
19
30
  };
@@ -13,8 +13,19 @@ const Component = {
13
13
  '& .SCFeedObject-content': {
14
14
  '& .SCFeedObject-text-section .SCFeedObject-text': {
15
15
  '& span': {
16
- display: 'inline-block',
16
+ display: 'inline-block'
17
+ },
18
+ '& span:not(:has(+ a))': {
17
19
  width: '100%'
20
+ },
21
+ '& a': {
22
+ display: 'inline-block',
23
+ margin: theme.spacing(0, 0.3)
24
+ },
25
+ '& a:hover': {
26
+ '& span': {
27
+ textDecoration: 'underline'
28
+ }
18
29
  }
19
30
  }
20
31
  }
@@ -35,7 +35,7 @@ const Component = {
35
35
  optionCardRoot: ({ theme, selected }) => ({
36
36
  maxWidth: 300,
37
37
  height: 'auto',
38
- minHeight: 425,
38
+ minHeight: 440,
39
39
  padding: theme.spacing(3),
40
40
  margin: theme.spacing(0, 3),
41
41
  cursor: 'pointer',
@@ -39,8 +39,9 @@ declare const Component: {
39
39
  '& .SCBaseItemButton-text ': {
40
40
  maxWidth: string;
41
41
  };
42
- '& .SCNavigationMenuDrawer-drawer-footer': {
43
- padding: any;
42
+ '& .SCNavigationMenuDrawer-drawer-footer-live-button': {
43
+ margin: any;
44
+ maxWidth: number;
44
45
  };
45
46
  };
46
47
  };
@@ -42,8 +42,9 @@ const Component = {
42
42
  '& .SCBaseItemButton-text ': {
43
43
  maxWidth: '80%'
44
44
  },
45
- '& .SCNavigationMenuDrawer-drawer-footer': {
46
- padding: theme.spacing(3)
45
+ '& .SCNavigationMenuDrawer-drawer-footer-live-button': {
46
+ margin: theme.spacing(3),
47
+ maxWidth: 270
47
48
  }
48
49
  })
49
50
  }
@@ -2908,8 +2908,19 @@ declare const theme: {
2908
2908
  '& .SCFeedObject-text-section .SCFeedObject-text': {
2909
2909
  '& span': {
2910
2910
  display: string;
2911
+ };
2912
+ '& span:not(:has(+ a))': {
2911
2913
  width: string;
2912
2914
  };
2915
+ '& a': {
2916
+ display: string;
2917
+ margin: any;
2918
+ };
2919
+ '& a:hover': {
2920
+ '& span': {
2921
+ textDecoration: string;
2922
+ };
2923
+ };
2913
2924
  };
2914
2925
  };
2915
2926
  };
@@ -4483,8 +4494,9 @@ declare const theme: {
4483
4494
  '& .SCBaseItemButton-text ': {
4484
4495
  maxWidth: string;
4485
4496
  };
4486
- '& .SCNavigationMenuDrawer-drawer-footer': {
4487
- padding: any;
4497
+ '& .SCNavigationMenuDrawer-drawer-footer-live-button': {
4498
+ margin: any;
4499
+ maxWidth: number;
4488
4500
  };
4489
4501
  };
4490
4502
  };
@@ -12,8 +12,19 @@ declare const Component: {
12
12
  '& .SCFeedObject-text-section .SCFeedObject-text': {
13
13
  '& span': {
14
14
  display: string;
15
+ };
16
+ '& span:not(:has(+ a))': {
15
17
  width: string;
16
18
  };
19
+ '& a': {
20
+ display: string;
21
+ margin: any;
22
+ };
23
+ '& a:hover': {
24
+ '& span': {
25
+ textDecoration: string;
26
+ };
27
+ };
17
28
  };
18
29
  };
19
30
  };
@@ -11,8 +11,19 @@ const Component = {
11
11
  '& .SCFeedObject-content': {
12
12
  '& .SCFeedObject-text-section .SCFeedObject-text': {
13
13
  '& span': {
14
- display: 'inline-block',
14
+ display: 'inline-block'
15
+ },
16
+ '& span:not(:has(+ a))': {
15
17
  width: '100%'
18
+ },
19
+ '& a': {
20
+ display: 'inline-block',
21
+ margin: theme.spacing(0, 0.3)
22
+ },
23
+ '& a:hover': {
24
+ '& span': {
25
+ textDecoration: 'underline'
26
+ }
16
27
  }
17
28
  }
18
29
  }
@@ -33,7 +33,7 @@ const Component = {
33
33
  optionCardRoot: ({ theme, selected }) => ({
34
34
  maxWidth: 300,
35
35
  height: 'auto',
36
- minHeight: 425,
36
+ minHeight: 440,
37
37
  padding: theme.spacing(3),
38
38
  margin: theme.spacing(0, 3),
39
39
  cursor: 'pointer',
@@ -39,8 +39,9 @@ declare const Component: {
39
39
  '& .SCBaseItemButton-text ': {
40
40
  maxWidth: string;
41
41
  };
42
- '& .SCNavigationMenuDrawer-drawer-footer': {
43
- padding: any;
42
+ '& .SCNavigationMenuDrawer-drawer-footer-live-button': {
43
+ margin: any;
44
+ maxWidth: number;
44
45
  };
45
46
  };
46
47
  };
@@ -40,8 +40,9 @@ const Component = {
40
40
  '& .SCBaseItemButton-text ': {
41
41
  maxWidth: '80%'
42
42
  },
43
- '& .SCNavigationMenuDrawer-drawer-footer': {
44
- padding: theme.spacing(3)
43
+ '& .SCNavigationMenuDrawer-drawer-footer-live-button': {
44
+ margin: theme.spacing(3),
45
+ maxWidth: 270
45
46
  }
46
47
  })
47
48
  }
@@ -2908,8 +2908,19 @@ declare const theme: {
2908
2908
  '& .SCFeedObject-text-section .SCFeedObject-text': {
2909
2909
  '& span': {
2910
2910
  display: string;
2911
+ };
2912
+ '& span:not(:has(+ a))': {
2911
2913
  width: string;
2912
2914
  };
2915
+ '& a': {
2916
+ display: string;
2917
+ margin: any;
2918
+ };
2919
+ '& a:hover': {
2920
+ '& span': {
2921
+ textDecoration: string;
2922
+ };
2923
+ };
2913
2924
  };
2914
2925
  };
2915
2926
  };
@@ -4483,8 +4494,9 @@ declare const theme: {
4483
4494
  '& .SCBaseItemButton-text ': {
4484
4495
  maxWidth: string;
4485
4496
  };
4486
- '& .SCNavigationMenuDrawer-drawer-footer': {
4487
- padding: any;
4497
+ '& .SCNavigationMenuDrawer-drawer-footer-live-button': {
4498
+ margin: any;
4499
+ maxWidth: number;
4488
4500
  };
4489
4501
  };
4490
4502
  };