@selfcommunity/react-theme-default 0.4.5-alpha.0 → 0.4.5-alpha.2
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/SCEventInfoDetails.d.ts +3 -0
- package/lib/cjs/components/SCEventInfoDetails.js +3 -0
- package/lib/cjs/components/SCFeedObject.d.ts +11 -0
- package/lib/cjs/components/SCFeedObject.js +12 -1
- package/lib/cjs/components/SCLiveStream.d.ts +218 -0
- package/lib/cjs/components/SCLiveStream.js +220 -0
- package/lib/cjs/components/SCLiveStreamDialog.d.ts +16 -0
- package/lib/cjs/components/SCLiveStreamDialog.js +18 -0
- package/lib/cjs/components/SCLiveStreamForm.d.ts +27 -0
- package/lib/cjs/components/SCLiveStreamForm.js +29 -0
- package/lib/cjs/components/SCLiveStreamFormSettings.d.ts +15 -0
- package/lib/cjs/components/SCLiveStreamFormSettings.js +17 -0
- package/lib/cjs/components/SCLiveStreamInfoDetails.d.ts +43 -0
- package/lib/cjs/components/SCLiveStreamInfoDetails.js +43 -0
- package/lib/cjs/components/SCLiveStreamRoom.d.ts +113 -0
- package/lib/cjs/components/SCLiveStreamRoom.js +115 -0
- package/lib/cjs/components/SCLiveStreamSelector.d.ts +71 -0
- package/lib/cjs/components/SCLiveStreamSelector.js +75 -0
- package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +27 -0
- package/lib/cjs/components/SCLiveStreamVideoConference.js +29 -0
- package/lib/cjs/components/SCMediaFile.d.ts +0 -4
- package/lib/cjs/components/SCMediaFile.js +1 -5
- package/lib/cjs/components/SCNavigationMenuDrawer.d.ts +3 -0
- package/lib/cjs/components/SCNavigationMenuDrawer.js +3 -0
- package/lib/cjs/components/SCNotification.d.ts +27 -0
- package/lib/cjs/components/SCNotification.js +27 -0
- package/lib/cjs/components/SCUpScalingTierBadge.d.ts +13 -0
- package/lib/cjs/components/SCUpScalingTierBadge.js +15 -0
- package/lib/cjs/components/SCUserLiveStreamWidget.d.ts +101 -0
- package/lib/cjs/components/SCUserLiveStreamWidget.js +97 -0
- package/lib/cjs/index.d.ts +772 -95
- package/lib/cjs/index.js +21 -1
- package/lib/esm/components/SCEventInfoDetails.d.ts +3 -0
- package/lib/esm/components/SCEventInfoDetails.js +3 -0
- package/lib/esm/components/SCFeedObject.d.ts +11 -0
- package/lib/esm/components/SCFeedObject.js +12 -1
- package/lib/esm/components/SCLiveStream.d.ts +218 -0
- package/lib/esm/components/SCLiveStream.js +218 -0
- package/lib/esm/components/SCLiveStreamDialog.d.ts +16 -0
- package/lib/esm/components/SCLiveStreamDialog.js +16 -0
- package/lib/esm/components/SCLiveStreamForm.d.ts +27 -0
- package/lib/esm/components/SCLiveStreamForm.js +27 -0
- package/lib/esm/components/SCLiveStreamFormSettings.d.ts +15 -0
- package/lib/esm/components/SCLiveStreamFormSettings.js +15 -0
- package/lib/esm/components/SCLiveStreamInfoDetails.d.ts +43 -0
- package/lib/esm/components/SCLiveStreamInfoDetails.js +41 -0
- package/lib/esm/components/SCLiveStreamRoom.d.ts +113 -0
- package/lib/esm/components/SCLiveStreamRoom.js +113 -0
- package/lib/esm/components/SCLiveStreamSelector.d.ts +71 -0
- package/lib/esm/components/SCLiveStreamSelector.js +73 -0
- package/lib/esm/components/SCLiveStreamVideoConference.d.ts +27 -0
- package/lib/esm/components/SCLiveStreamVideoConference.js +27 -0
- package/lib/esm/components/SCMediaFile.d.ts +0 -4
- package/lib/esm/components/SCMediaFile.js +1 -5
- package/lib/esm/components/SCNavigationMenuDrawer.d.ts +3 -0
- package/lib/esm/components/SCNavigationMenuDrawer.js +3 -0
- package/lib/esm/components/SCNotification.d.ts +27 -0
- package/lib/esm/components/SCNotification.js +27 -0
- package/lib/esm/components/SCUpScalingTierBadge.d.ts +13 -0
- package/lib/esm/components/SCUpScalingTierBadge.js +13 -0
- package/lib/esm/components/SCUserLiveStreamWidget.d.ts +101 -0
- package/lib/esm/components/SCUserLiveStreamWidget.js +95 -0
- package/lib/esm/index.d.ts +772 -95
- package/lib/esm/index.js +21 -1
- package/lib/umd/react-theme-default.js +1 -19
- package/package.json +123 -117
package/lib/cjs/index.d.ts
CHANGED
|
@@ -2458,8 +2458,19 @@ declare const theme: {
|
|
|
2458
2458
|
};
|
|
2459
2459
|
'& span span': {
|
|
2460
2460
|
display: string;
|
|
2461
|
+
};
|
|
2462
|
+
'& span span:not(:has(+ a))': {
|
|
2461
2463
|
width: string;
|
|
2462
2464
|
};
|
|
2465
|
+
'& span a': {
|
|
2466
|
+
display: string;
|
|
2467
|
+
margin: any;
|
|
2468
|
+
};
|
|
2469
|
+
'& span a:hover': {
|
|
2470
|
+
'& span': {
|
|
2471
|
+
textDecoration: string;
|
|
2472
|
+
};
|
|
2473
|
+
};
|
|
2463
2474
|
};
|
|
2464
2475
|
'& .SCFeedObject-medias-section': {
|
|
2465
2476
|
'& .SCFeedObjectMediaPreview-root': {
|
|
@@ -2516,6 +2527,9 @@ declare const theme: {
|
|
|
2516
2527
|
};
|
|
2517
2528
|
};
|
|
2518
2529
|
'& .SCFeedObject-reply-content': {
|
|
2530
|
+
/**
|
|
2531
|
+
* Export default theme
|
|
2532
|
+
*/
|
|
2519
2533
|
marginLeft: number;
|
|
2520
2534
|
background: string;
|
|
2521
2535
|
'& .SCCommentObjectReply-root': {
|
|
@@ -4244,11 +4258,7 @@ declare const theme: {
|
|
|
4244
4258
|
flexWrap: string;
|
|
4245
4259
|
maxWidth: string;
|
|
4246
4260
|
overflow: string;
|
|
4247
|
-
MsOverflowStyle: string;
|
|
4248
4261
|
scrollbarWidth: string;
|
|
4249
|
-
'&::-webkit-scrollbar': {
|
|
4250
|
-
display: string;
|
|
4251
|
-
};
|
|
4252
4262
|
'& .SCMediaFile-media': {
|
|
4253
4263
|
backgroundSize: string;
|
|
4254
4264
|
backgroundPosition: string;
|
|
@@ -4476,6 +4486,9 @@ declare const theme: {
|
|
|
4476
4486
|
'& .SCBaseItemButton-text ': {
|
|
4477
4487
|
maxWidth: string;
|
|
4478
4488
|
};
|
|
4489
|
+
'& .SCNavigationMenuDrawer-drawer-footer': {
|
|
4490
|
+
padding: any;
|
|
4491
|
+
};
|
|
4479
4492
|
};
|
|
4480
4493
|
};
|
|
4481
4494
|
};
|
|
@@ -4949,6 +4962,33 @@ declare const theme: {
|
|
|
4949
4962
|
backgroundColor: string;
|
|
4950
4963
|
};
|
|
4951
4964
|
};
|
|
4965
|
+
liveStreamRoot: ({ theme }: any) => {
|
|
4966
|
+
'& .SCNotification-username, & a': {
|
|
4967
|
+
fontWeight: any;
|
|
4968
|
+
};
|
|
4969
|
+
'& .SCNotificationItem-primary': {
|
|
4970
|
+
'& .MuiIcon-root': {
|
|
4971
|
+
float: string;
|
|
4972
|
+
fontSize: string;
|
|
4973
|
+
marginLeft: any;
|
|
4974
|
+
};
|
|
4975
|
+
'& .SCEvent-root': {
|
|
4976
|
+
width: string;
|
|
4977
|
+
'& .SCEvent-snippet-root': {
|
|
4978
|
+
paddingLeft: string;
|
|
4979
|
+
};
|
|
4980
|
+
};
|
|
4981
|
+
};
|
|
4982
|
+
'& .SCNotificationItem-secondary': {
|
|
4983
|
+
textTransform: string;
|
|
4984
|
+
};
|
|
4985
|
+
'& .SCNotification-snippet-time': {
|
|
4986
|
+
paddingLeft: any;
|
|
4987
|
+
};
|
|
4988
|
+
'& .SCEvent-snippet-root': {
|
|
4989
|
+
backgroundColor: string;
|
|
4990
|
+
};
|
|
4991
|
+
};
|
|
4952
4992
|
groupRoot: ({ theme }: any) => {};
|
|
4953
4993
|
undeletedForRoot: ({ theme }: any) => {
|
|
4954
4994
|
'& .SCNotification-undeleted-icon': {
|
|
@@ -7692,9 +7732,6 @@ declare const theme: {
|
|
|
7692
7732
|
root: ({ theme }: {
|
|
7693
7733
|
theme: any;
|
|
7694
7734
|
}) => {
|
|
7695
|
-
/**
|
|
7696
|
-
* Style fragments - Imports - Start
|
|
7697
|
-
*/
|
|
7698
7735
|
gap: any;
|
|
7699
7736
|
'& .SCEventInfoDetails-icon-text-wrapper': {
|
|
7700
7737
|
flexDirection: string;
|
|
@@ -7717,6 +7754,9 @@ declare const theme: {
|
|
|
7717
7754
|
'-webkit-box-orient': string;
|
|
7718
7755
|
};
|
|
7719
7756
|
};
|
|
7757
|
+
'& .SCEventInfoDetails-join-live': {
|
|
7758
|
+
height: number;
|
|
7759
|
+
};
|
|
7720
7760
|
'& .SCEventInfoDetails-in-progress': {
|
|
7721
7761
|
width: string;
|
|
7722
7762
|
height: string;
|
|
@@ -7912,6 +7952,125 @@ declare const theme: {
|
|
|
7912
7952
|
};
|
|
7913
7953
|
};
|
|
7914
7954
|
};
|
|
7955
|
+
SCEventMediaWidget: {
|
|
7956
|
+
styleOverrides: {
|
|
7957
|
+
root: ({ theme, showPadding }: {
|
|
7958
|
+
theme: any;
|
|
7959
|
+
showPadding: any;
|
|
7960
|
+
}) => {
|
|
7961
|
+
'& .SCEventMediaWidget-header': {
|
|
7962
|
+
padding: any;
|
|
7963
|
+
};
|
|
7964
|
+
'& .SCEventMediaWidget-content': {
|
|
7965
|
+
padding: any;
|
|
7966
|
+
'& .SCEventMediaWidget-grid': {
|
|
7967
|
+
display: string;
|
|
7968
|
+
gap: string;
|
|
7969
|
+
gridTemplateColumns: string;
|
|
7970
|
+
'& > .SCEventMediaWidget-media': {
|
|
7971
|
+
position: string;
|
|
7972
|
+
width: string;
|
|
7973
|
+
paddingBottom: string;
|
|
7974
|
+
backgroundSize: string;
|
|
7975
|
+
cursor: string;
|
|
7976
|
+
'& > .SCEventMediaWidget-media-layer': {
|
|
7977
|
+
position: string;
|
|
7978
|
+
inset: number;
|
|
7979
|
+
backgroundColor: string;
|
|
7980
|
+
opacity: number;
|
|
7981
|
+
};
|
|
7982
|
+
'& > .SCEventMediaWidget-count-hidden-media-wrapper': {
|
|
7983
|
+
position: string;
|
|
7984
|
+
top: string;
|
|
7985
|
+
left: string;
|
|
7986
|
+
transform: string;
|
|
7987
|
+
color: any;
|
|
7988
|
+
'& > .SCEventMediaWidget-count-hidden-media': {
|
|
7989
|
+
fontSize: string;
|
|
7990
|
+
};
|
|
7991
|
+
};
|
|
7992
|
+
};
|
|
7993
|
+
};
|
|
7994
|
+
};
|
|
7995
|
+
'& .SCEventMediaWidget-actions': {
|
|
7996
|
+
padding: any;
|
|
7997
|
+
justifyContent: string;
|
|
7998
|
+
};
|
|
7999
|
+
};
|
|
8000
|
+
skeletonRoot: ({}: {}) => {
|
|
8001
|
+
'& .SCEventMediaWidget-grid': {
|
|
8002
|
+
display: string;
|
|
8003
|
+
gap: string;
|
|
8004
|
+
gridTemplateColumns: string;
|
|
8005
|
+
'& > .SCEventMediaWidget-media': {
|
|
8006
|
+
paddingBottom: string;
|
|
8007
|
+
};
|
|
8008
|
+
};
|
|
8009
|
+
};
|
|
8010
|
+
dialogRoot: ({ theme }: {
|
|
8011
|
+
theme: any;
|
|
8012
|
+
}) => {
|
|
8013
|
+
'& .SCEventMediaWidget-grid': {
|
|
8014
|
+
display: string;
|
|
8015
|
+
gap: string;
|
|
8016
|
+
gridTemplateColumns: string;
|
|
8017
|
+
'& > .SCEventMediaWidget-media': {
|
|
8018
|
+
paddingBottom: string;
|
|
8019
|
+
};
|
|
8020
|
+
'& > .SCEventMediaWidget-dialog-media-wrapper': {
|
|
8021
|
+
position: string;
|
|
8022
|
+
width: string;
|
|
8023
|
+
paddingBottom: string;
|
|
8024
|
+
backgroundSize: string;
|
|
8025
|
+
'& > .SCEventMediaWidget-dialog-button-wrapper': {
|
|
8026
|
+
position: string;
|
|
8027
|
+
top: number;
|
|
8028
|
+
width: string;
|
|
8029
|
+
height: string;
|
|
8030
|
+
backgroundColor: any;
|
|
8031
|
+
opacity: number;
|
|
8032
|
+
flexDirection: string;
|
|
8033
|
+
justifyContent: string;
|
|
8034
|
+
alignItems: string;
|
|
8035
|
+
'& > .SCEventMediaWidget-dialog-loading-button': {
|
|
8036
|
+
padding: number;
|
|
8037
|
+
minWidth: string;
|
|
8038
|
+
'& > .MuiLoadingButton-loadingIndicatorCenter': {
|
|
8039
|
+
color: any;
|
|
8040
|
+
};
|
|
8041
|
+
};
|
|
8042
|
+
};
|
|
8043
|
+
};
|
|
8044
|
+
};
|
|
8045
|
+
};
|
|
8046
|
+
triggerRoot: ({ isSquare }: {
|
|
8047
|
+
isSquare: any;
|
|
8048
|
+
}) => {
|
|
8049
|
+
padding: 0;
|
|
8050
|
+
borderRadius: 0;
|
|
8051
|
+
backgroundColor: string;
|
|
8052
|
+
'&:hover': {
|
|
8053
|
+
backgroundColor: string;
|
|
8054
|
+
};
|
|
8055
|
+
'& > .SCEventMediaWidget-trigger-content': {
|
|
8056
|
+
position: string;
|
|
8057
|
+
width: string;
|
|
8058
|
+
padding: string;
|
|
8059
|
+
paddingBottom: string;
|
|
8060
|
+
flexDirection: string;
|
|
8061
|
+
gap: string;
|
|
8062
|
+
alignItems: string;
|
|
8063
|
+
justifyContent: string;
|
|
8064
|
+
'& > .SCEventMediaWidget-trigger-icon': {
|
|
8065
|
+
position: string;
|
|
8066
|
+
top: string;
|
|
8067
|
+
transform: string;
|
|
8068
|
+
fontSize: string;
|
|
8069
|
+
};
|
|
8070
|
+
};
|
|
8071
|
+
};
|
|
8072
|
+
};
|
|
8073
|
+
};
|
|
7915
8074
|
SCCalendar: {
|
|
7916
8075
|
styleOverrides: {
|
|
7917
8076
|
root: ({ theme }: {
|
|
@@ -8387,120 +8546,638 @@ declare const theme: {
|
|
|
8387
8546
|
};
|
|
8388
8547
|
};
|
|
8389
8548
|
};
|
|
8390
|
-
|
|
8549
|
+
SCLiveStream: {
|
|
8391
8550
|
styleOverrides: {
|
|
8392
|
-
root: ({ theme
|
|
8393
|
-
|
|
8394
|
-
|
|
8395
|
-
|
|
8396
|
-
|
|
8397
|
-
|
|
8551
|
+
root: ({ theme }: any) => {};
|
|
8552
|
+
detailRoot: ({ theme }: any) => {
|
|
8553
|
+
'& .SCLiveStream-detail-image-wrapper': {
|
|
8554
|
+
position: string;
|
|
8555
|
+
'& .SCLiveStream-detail-image': {
|
|
8556
|
+
height: string;
|
|
8557
|
+
};
|
|
8558
|
+
'& .SCLiveStream-detail-in-progress': {
|
|
8559
|
+
backgroundColor: any;
|
|
8560
|
+
position: string;
|
|
8561
|
+
top: number;
|
|
8562
|
+
right: number;
|
|
8563
|
+
color: any;
|
|
8564
|
+
boxShadow: string;
|
|
8565
|
+
};
|
|
8398
8566
|
};
|
|
8399
|
-
'& .
|
|
8400
|
-
padding:
|
|
8401
|
-
'& .
|
|
8402
|
-
|
|
8403
|
-
|
|
8404
|
-
|
|
8405
|
-
'& > .SCEventMediaWidget-media': {
|
|
8406
|
-
position: string;
|
|
8407
|
-
width: string;
|
|
8408
|
-
paddingBottom: string;
|
|
8409
|
-
backgroundSize: string;
|
|
8410
|
-
cursor: string;
|
|
8411
|
-
'& > .SCEventMediaWidget-media-layer': {
|
|
8412
|
-
position: string;
|
|
8413
|
-
inset: number;
|
|
8414
|
-
backgroundColor: string;
|
|
8415
|
-
opacity: number;
|
|
8416
|
-
};
|
|
8417
|
-
'& > .SCEventMediaWidget-count-hidden-media-wrapper': {
|
|
8418
|
-
position: string;
|
|
8419
|
-
top: string;
|
|
8420
|
-
left: string;
|
|
8421
|
-
transform: string;
|
|
8422
|
-
color: any;
|
|
8423
|
-
'& > .SCEventMediaWidget-count-hidden-media': {
|
|
8424
|
-
fontSize: string;
|
|
8425
|
-
};
|
|
8426
|
-
};
|
|
8567
|
+
'& .SCLiveStream-detail-content': {
|
|
8568
|
+
padding: string;
|
|
8569
|
+
'& .SCLiveStream-detail-user': {
|
|
8570
|
+
marginTop: string;
|
|
8571
|
+
'& .SCBaseItemButton-text': {
|
|
8572
|
+
margin: number;
|
|
8427
8573
|
};
|
|
8428
8574
|
};
|
|
8429
|
-
|
|
8430
|
-
|
|
8431
|
-
|
|
8432
|
-
|
|
8433
|
-
|
|
8434
|
-
|
|
8435
|
-
|
|
8436
|
-
|
|
8437
|
-
|
|
8438
|
-
|
|
8439
|
-
|
|
8440
|
-
'&
|
|
8441
|
-
|
|
8575
|
+
'& .SCLiveStream-detail-name-wrapper': {
|
|
8576
|
+
textDecoration: string;
|
|
8577
|
+
color: string;
|
|
8578
|
+
'& .SCLiveStream-detail-name': {
|
|
8579
|
+
marginBottom: string;
|
|
8580
|
+
};
|
|
8581
|
+
};
|
|
8582
|
+
'& .SCLiveStream-detail-first-divider': {
|
|
8583
|
+
marginTop: string;
|
|
8584
|
+
marginBottom: any;
|
|
8585
|
+
};
|
|
8586
|
+
'& .SCLiveStream-detail-second-divider': {
|
|
8587
|
+
marginTop: any;
|
|
8588
|
+
marginBottom: string;
|
|
8442
8589
|
};
|
|
8443
8590
|
};
|
|
8444
8591
|
};
|
|
8445
|
-
|
|
8446
|
-
|
|
8447
|
-
|
|
8448
|
-
|
|
8449
|
-
|
|
8450
|
-
gap: string;
|
|
8451
|
-
gridTemplateColumns: string;
|
|
8452
|
-
'& > .SCEventMediaWidget-media': {
|
|
8453
|
-
paddingBottom: string;
|
|
8592
|
+
previewRoot: ({ theme }: any) => {
|
|
8593
|
+
'& .SCLiveStream-preview-image-wrapper': {
|
|
8594
|
+
position: string;
|
|
8595
|
+
'& .SCLiveStream-preview-image': {
|
|
8596
|
+
height: string;
|
|
8454
8597
|
};
|
|
8455
|
-
'&
|
|
8598
|
+
'& .SCLiveStream-preview-in-progress': {
|
|
8599
|
+
height: number;
|
|
8600
|
+
backgroundColor: any;
|
|
8456
8601
|
position: string;
|
|
8457
|
-
|
|
8458
|
-
|
|
8459
|
-
|
|
8460
|
-
|
|
8602
|
+
top: number;
|
|
8603
|
+
right: number;
|
|
8604
|
+
color: any;
|
|
8605
|
+
boxShadow: string;
|
|
8606
|
+
'& span': {
|
|
8607
|
+
fontSize: string;
|
|
8608
|
+
paddingLeft: any;
|
|
8609
|
+
paddingRight: any;
|
|
8610
|
+
};
|
|
8611
|
+
};
|
|
8612
|
+
};
|
|
8613
|
+
'& .SCLiveStream-preview-content': {
|
|
8614
|
+
padding: string;
|
|
8615
|
+
'& .SCLiveStreamInfoDetails-icon-text-wrapper': {
|
|
8616
|
+
'& .MuiTypography-root': {
|
|
8617
|
+
fontSize: string;
|
|
8618
|
+
};
|
|
8619
|
+
};
|
|
8620
|
+
'& .SCLiveStream-detail-user': {
|
|
8621
|
+
marginTop: string;
|
|
8622
|
+
'& .SCBaseItemButton-text': {
|
|
8623
|
+
margin: number;
|
|
8624
|
+
};
|
|
8625
|
+
};
|
|
8626
|
+
'& .SCLiveStream-preview-name-wrapper': {
|
|
8627
|
+
marginTop: number;
|
|
8628
|
+
textDecoration: string;
|
|
8629
|
+
color: string;
|
|
8630
|
+
'& h5': {
|
|
8631
|
+
whiteSpace: string;
|
|
8632
|
+
overflow: string;
|
|
8633
|
+
textOverflow: string;
|
|
8634
|
+
};
|
|
8635
|
+
};
|
|
8636
|
+
};
|
|
8637
|
+
};
|
|
8638
|
+
snippetRoot: ({ theme }: any) => {
|
|
8639
|
+
overflow: string;
|
|
8640
|
+
boxSizing: string;
|
|
8641
|
+
paddingLeft: string;
|
|
8642
|
+
paddingRight: string;
|
|
8643
|
+
'& .SCBaseItem-image': {
|
|
8644
|
+
'& .MuiAvatar-root': {
|
|
8645
|
+
width: number;
|
|
8646
|
+
height: number;
|
|
8647
|
+
borderRadius: string;
|
|
8648
|
+
'& img': {
|
|
8649
|
+
borderRadius: string;
|
|
8650
|
+
};
|
|
8651
|
+
};
|
|
8652
|
+
};
|
|
8653
|
+
'& .SCLiveStream-snippet-image': {
|
|
8654
|
+
position: string;
|
|
8655
|
+
'& .SCLiveStream-snippet-in-progress': {
|
|
8656
|
+
height: number;
|
|
8657
|
+
backgroundColor: any;
|
|
8658
|
+
position: string;
|
|
8659
|
+
top: number;
|
|
8660
|
+
right: number;
|
|
8661
|
+
color: any;
|
|
8662
|
+
boxShadow: string;
|
|
8663
|
+
'& span': {
|
|
8664
|
+
fontSize: string;
|
|
8665
|
+
paddingLeft: any;
|
|
8666
|
+
paddingRight: any;
|
|
8667
|
+
};
|
|
8668
|
+
};
|
|
8669
|
+
};
|
|
8670
|
+
'& .SCBaseItem-text': {
|
|
8671
|
+
fontSize: any;
|
|
8672
|
+
'& .SCLiveStream-snippet-primary': {
|
|
8673
|
+
color: any;
|
|
8674
|
+
textDecoration: string;
|
|
8675
|
+
'&:hover': {
|
|
8676
|
+
textDecoration: string;
|
|
8677
|
+
};
|
|
8678
|
+
'& p': {
|
|
8679
|
+
fontWeight: any;
|
|
8680
|
+
};
|
|
8681
|
+
};
|
|
8682
|
+
'& .SCLiveStream-snippet-secondary': {
|
|
8683
|
+
color: any;
|
|
8684
|
+
};
|
|
8685
|
+
};
|
|
8686
|
+
};
|
|
8687
|
+
skeletonRoot: ({ theme }: any) => {
|
|
8688
|
+
'& .SCLiveStream-skeleton-detail-root': {
|
|
8689
|
+
'& .SCLiveStream-skeleton-detail-calendar': {
|
|
8690
|
+
position: string;
|
|
8691
|
+
bottom: string;
|
|
8692
|
+
left: string;
|
|
8693
|
+
boxShadow: string;
|
|
8694
|
+
};
|
|
8695
|
+
'& .SCLiveStream-skeleton-detail-content': {
|
|
8696
|
+
padding: string;
|
|
8697
|
+
'& .SCLiveStream-skeleton-detail-user': {
|
|
8698
|
+
marginTop: string;
|
|
8699
|
+
'& .SCBaseItemButton-text': {
|
|
8700
|
+
margin: number;
|
|
8701
|
+
};
|
|
8702
|
+
};
|
|
8703
|
+
'& .SCLiveStream-skeleton-detail-name-wrapper': {
|
|
8704
|
+
textDecoration: string;
|
|
8705
|
+
color: string;
|
|
8706
|
+
'& .SCLiveStream-skeleton-detail-name': {
|
|
8707
|
+
marginBottom: string;
|
|
8708
|
+
};
|
|
8709
|
+
};
|
|
8710
|
+
'& .SCLiveStream-skeleton-detail-first-divider': {
|
|
8711
|
+
marginTop: string;
|
|
8712
|
+
marginBottom: any;
|
|
8713
|
+
};
|
|
8714
|
+
'& .SCLiveStream-skeleton-detail-second-divider': {
|
|
8715
|
+
marginTop: any;
|
|
8716
|
+
marginBottom: string;
|
|
8717
|
+
};
|
|
8718
|
+
};
|
|
8719
|
+
};
|
|
8720
|
+
'& .SCLiveStream-skeleton-preview-root': {
|
|
8721
|
+
'& .SCLiveStream-skeleton-preview-content': {
|
|
8722
|
+
padding: any;
|
|
8723
|
+
};
|
|
8724
|
+
'& .SCLiveStream-skeleton-preview-image': {
|
|
8725
|
+
position: string;
|
|
8726
|
+
'& .MuiSkeleton-root': {
|
|
8727
|
+
borderRadius: string;
|
|
8728
|
+
};
|
|
8729
|
+
'& .MuiIcon-root': {
|
|
8730
|
+
color: any;
|
|
8461
8731
|
position: string;
|
|
8462
|
-
top:
|
|
8463
|
-
|
|
8464
|
-
|
|
8465
|
-
|
|
8466
|
-
|
|
8732
|
+
top: string;
|
|
8733
|
+
left: string;
|
|
8734
|
+
transform: string;
|
|
8735
|
+
};
|
|
8736
|
+
};
|
|
8737
|
+
'& .SCBaseItem-actions': {
|
|
8738
|
+
maxWidth: string;
|
|
8739
|
+
};
|
|
8740
|
+
};
|
|
8741
|
+
'& .SCLiveStream-skeleton-snippet-root': {
|
|
8742
|
+
overflow: string;
|
|
8743
|
+
boxSizing: string;
|
|
8744
|
+
paddingLeft: string;
|
|
8745
|
+
paddingRight: string;
|
|
8746
|
+
'& .SCLiveStream-skeleton-snippet-image': {
|
|
8747
|
+
position: string;
|
|
8748
|
+
'& .MuiSkeleton-root': {
|
|
8749
|
+
borderRadius: string;
|
|
8750
|
+
};
|
|
8751
|
+
'& .MuiIcon-root': {
|
|
8752
|
+
color: any;
|
|
8753
|
+
position: string;
|
|
8754
|
+
top: string;
|
|
8755
|
+
left: string;
|
|
8756
|
+
transform: string;
|
|
8757
|
+
};
|
|
8758
|
+
};
|
|
8759
|
+
'& .SCBaseItem-actions': {
|
|
8760
|
+
maxWidth: string;
|
|
8761
|
+
};
|
|
8762
|
+
};
|
|
8763
|
+
};
|
|
8764
|
+
};
|
|
8765
|
+
};
|
|
8766
|
+
SCLiveStreamInfoDetails: {
|
|
8767
|
+
styleOverrides: {
|
|
8768
|
+
root: ({ theme }: {
|
|
8769
|
+
theme: any;
|
|
8770
|
+
}) => {
|
|
8771
|
+
/**
|
|
8772
|
+
* Style fragments - Imports - Start
|
|
8773
|
+
*/
|
|
8774
|
+
gap: any;
|
|
8775
|
+
'& .SCLiveStreamInfoDetails-icon-text-wrapper': {
|
|
8776
|
+
flexDirection: string;
|
|
8777
|
+
alignItems: string;
|
|
8778
|
+
gap: any;
|
|
8779
|
+
'& > p': {
|
|
8780
|
+
textTransform: string;
|
|
8781
|
+
};
|
|
8782
|
+
'& .SCLiveStreamInfoDetails-link': {
|
|
8783
|
+
textDecoration: string;
|
|
8784
|
+
color: any;
|
|
8785
|
+
'&:hover': {
|
|
8786
|
+
textDecoration: string;
|
|
8787
|
+
};
|
|
8788
|
+
'& .SCLiveStreamInfoDetails-url': {
|
|
8789
|
+
overflow: string;
|
|
8790
|
+
textOverflow: string;
|
|
8791
|
+
display: string;
|
|
8792
|
+
'-webkit-line-clamp': string;
|
|
8793
|
+
'-webkit-box-orient': string;
|
|
8794
|
+
};
|
|
8795
|
+
};
|
|
8796
|
+
'& .SCLiveStreamInfoDetails-in-progress': {
|
|
8797
|
+
width: string;
|
|
8798
|
+
height: string;
|
|
8799
|
+
borderRadius: string;
|
|
8800
|
+
backgroundColor: any;
|
|
8801
|
+
};
|
|
8802
|
+
};
|
|
8803
|
+
'& .SCLiveStreamInfoDetails-creation-wrapper': {
|
|
8804
|
+
flexDirection: string;
|
|
8805
|
+
alignItems: string;
|
|
8806
|
+
gap: any;
|
|
8807
|
+
};
|
|
8808
|
+
};
|
|
8809
|
+
};
|
|
8810
|
+
};
|
|
8811
|
+
SCUpScalingTierBadge: {
|
|
8812
|
+
styleOverrides: {
|
|
8813
|
+
root: ({ theme }: any) => {};
|
|
8814
|
+
badgeRoot: ({ theme }: any) => {
|
|
8815
|
+
background: string;
|
|
8816
|
+
borderRadius: number;
|
|
8817
|
+
padding: string;
|
|
8818
|
+
height: string;
|
|
8819
|
+
fontSize: number;
|
|
8820
|
+
};
|
|
8821
|
+
};
|
|
8822
|
+
};
|
|
8823
|
+
SCUserLiveStreamWidget: {
|
|
8824
|
+
styleOverrides: {
|
|
8825
|
+
root: ({ theme }: {
|
|
8826
|
+
theme: any;
|
|
8827
|
+
}) => {
|
|
8828
|
+
'& .SCUserLiveStreamWidget-content': {
|
|
8829
|
+
'& .SCUserLiveStreamWidget-header': {
|
|
8830
|
+
flexDirection: string;
|
|
8831
|
+
justifyContent: string;
|
|
8832
|
+
alignItems: string;
|
|
8833
|
+
marginBottom: any;
|
|
8834
|
+
'& .SCUserLiveStreamWidget-avatar-wrapper': {
|
|
8467
8835
|
flexDirection: string;
|
|
8468
|
-
justifyContent: string;
|
|
8469
8836
|
alignItems: string;
|
|
8470
|
-
|
|
8471
|
-
|
|
8472
|
-
|
|
8473
|
-
|
|
8474
|
-
|
|
8837
|
+
color: string;
|
|
8838
|
+
padding: number;
|
|
8839
|
+
minWidth: string;
|
|
8840
|
+
'& .SCUserLiveStreamWidget-avatar': {
|
|
8841
|
+
width: any;
|
|
8842
|
+
height: any;
|
|
8843
|
+
};
|
|
8844
|
+
};
|
|
8845
|
+
'& h4': {
|
|
8846
|
+
marginLeft: number;
|
|
8847
|
+
lineHeight: string;
|
|
8848
|
+
};
|
|
8849
|
+
};
|
|
8850
|
+
'& .SCUserLiveStreamWidget-live-wrapper': {
|
|
8851
|
+
paddingTop: any;
|
|
8852
|
+
gap: any;
|
|
8853
|
+
'& .SCUserLiveStreamWidget-live': {
|
|
8854
|
+
'& > div': {
|
|
8855
|
+
padding: string;
|
|
8856
|
+
'& > .SCBaseItem-content': {
|
|
8857
|
+
'& > .SCBaseItem-text': {
|
|
8858
|
+
margin: number;
|
|
8859
|
+
};
|
|
8475
8860
|
};
|
|
8476
8861
|
};
|
|
8477
8862
|
};
|
|
8478
8863
|
};
|
|
8479
8864
|
};
|
|
8865
|
+
'& .SCUserLiveStreamWidget-actions': {
|
|
8866
|
+
padding: string;
|
|
8867
|
+
justifyContent: string;
|
|
8868
|
+
'& .SCSuggestedEventsWidget-actionButton': {
|
|
8869
|
+
color: any;
|
|
8870
|
+
};
|
|
8871
|
+
};
|
|
8480
8872
|
};
|
|
8481
|
-
|
|
8482
|
-
|
|
8873
|
+
skeletonRoot: ({ theme }: {
|
|
8874
|
+
theme: any;
|
|
8483
8875
|
}) => {
|
|
8484
|
-
|
|
8485
|
-
|
|
8486
|
-
|
|
8876
|
+
'& .SCUserLiveStreamWidget-content': {
|
|
8877
|
+
padding: string;
|
|
8878
|
+
'& .SCUserLiveStreamWidget-user': {
|
|
8879
|
+
marginBottom: any;
|
|
8880
|
+
'& > .SCBaseItem-content': {
|
|
8881
|
+
'& > .SCBaseItem-text': {
|
|
8882
|
+
margin: number;
|
|
8883
|
+
};
|
|
8884
|
+
};
|
|
8885
|
+
'& > .SCBaseItem-actions': {
|
|
8886
|
+
display: string;
|
|
8887
|
+
};
|
|
8888
|
+
};
|
|
8889
|
+
'& .SCUserLiveStreamWidget-live-wrapper': {
|
|
8890
|
+
gap: any;
|
|
8891
|
+
'& .SCUserLiveStreamWidget-live': {
|
|
8892
|
+
'& > div': {
|
|
8893
|
+
padding: string;
|
|
8894
|
+
'& > .SCBaseItem-content': {
|
|
8895
|
+
'& > .SCBaseItem-text': {
|
|
8896
|
+
margin: number;
|
|
8897
|
+
};
|
|
8898
|
+
};
|
|
8899
|
+
};
|
|
8900
|
+
};
|
|
8901
|
+
};
|
|
8902
|
+
};
|
|
8903
|
+
'& .SCUserLiveStreamWidget-actions': {
|
|
8904
|
+
padding: string;
|
|
8905
|
+
justifyContent: string;
|
|
8906
|
+
};
|
|
8907
|
+
};
|
|
8908
|
+
dialogRoot: ({ theme }: {
|
|
8909
|
+
theme: any;
|
|
8910
|
+
}) => {
|
|
8911
|
+
'& .SCUserLiveStreamWidget-infinite-scroll': {
|
|
8912
|
+
[x: number]: {
|
|
8913
|
+
height: string;
|
|
8914
|
+
};
|
|
8915
|
+
height: string;
|
|
8916
|
+
'& .SCEvent-root': {
|
|
8917
|
+
width: string;
|
|
8918
|
+
};
|
|
8919
|
+
};
|
|
8920
|
+
};
|
|
8921
|
+
};
|
|
8922
|
+
};
|
|
8923
|
+
SCCreateLiveStreamDialog: {
|
|
8924
|
+
styleOverrides: {
|
|
8925
|
+
root: ({ theme }: any) => {
|
|
8926
|
+
'& .MuiDialogTitle-root': {
|
|
8927
|
+
'& span': {
|
|
8928
|
+
flexGrow: number;
|
|
8929
|
+
textAlign: string;
|
|
8930
|
+
};
|
|
8931
|
+
};
|
|
8932
|
+
'& .SCCreateLiveStreamDialog-root': {
|
|
8933
|
+
padding: any;
|
|
8934
|
+
};
|
|
8935
|
+
};
|
|
8936
|
+
};
|
|
8937
|
+
};
|
|
8938
|
+
SCLiveStreamSelector: {
|
|
8939
|
+
styleOverrides: {
|
|
8940
|
+
root: ({ theme }: any) => {
|
|
8941
|
+
'& .SCLiveStreamSelector-warning': {
|
|
8942
|
+
margin: any;
|
|
8943
|
+
"& a": {
|
|
8944
|
+
color: any;
|
|
8945
|
+
fontWeight: string;
|
|
8946
|
+
};
|
|
8947
|
+
};
|
|
8948
|
+
'& .SCLiveStreamSelector-options': {
|
|
8949
|
+
[x: number]: {
|
|
8950
|
+
display: string;
|
|
8951
|
+
};
|
|
8952
|
+
display: string;
|
|
8953
|
+
justifyContent: string;
|
|
8954
|
+
alignItems: string;
|
|
8955
|
+
'& > div': {
|
|
8956
|
+
[x: number]: {
|
|
8957
|
+
margin: string;
|
|
8958
|
+
marginBottom: any;
|
|
8959
|
+
};
|
|
8960
|
+
width: string;
|
|
8961
|
+
};
|
|
8962
|
+
};
|
|
8963
|
+
'& .SCLiveStreamSelector-actions': {
|
|
8964
|
+
display: string;
|
|
8965
|
+
justifyContent: string;
|
|
8966
|
+
alignItems: string;
|
|
8967
|
+
marginTop: any;
|
|
8968
|
+
};
|
|
8969
|
+
};
|
|
8970
|
+
optionCardRoot: ({ theme, selected }: any) => {
|
|
8971
|
+
maxWidth: number;
|
|
8972
|
+
height: string;
|
|
8973
|
+
minHeight: number;
|
|
8974
|
+
padding: any;
|
|
8975
|
+
margin: any;
|
|
8976
|
+
cursor: string;
|
|
8977
|
+
transition: any;
|
|
8978
|
+
backgroundColor: any;
|
|
8487
8979
|
'&:hover': {
|
|
8980
|
+
backgroundColor: any;
|
|
8981
|
+
boxShadow: any;
|
|
8982
|
+
};
|
|
8983
|
+
border: string;
|
|
8984
|
+
"& > div": {
|
|
8985
|
+
display: string;
|
|
8986
|
+
justifyContent: string;
|
|
8987
|
+
alignItems: string;
|
|
8988
|
+
marginBottom: number;
|
|
8989
|
+
maxWidth: string;
|
|
8990
|
+
};
|
|
8991
|
+
"& ul": {
|
|
8992
|
+
marginTop: any;
|
|
8993
|
+
padding: number;
|
|
8994
|
+
listStyle: string;
|
|
8995
|
+
};
|
|
8996
|
+
};
|
|
8997
|
+
featureItemRoot: ({ theme, selected }: any) => {
|
|
8998
|
+
display: string;
|
|
8999
|
+
alignItems: string;
|
|
9000
|
+
gap: any;
|
|
9001
|
+
marginBottom: any;
|
|
9002
|
+
'&:last-child': {
|
|
9003
|
+
marginBottom: number;
|
|
9004
|
+
};
|
|
9005
|
+
};
|
|
9006
|
+
};
|
|
9007
|
+
};
|
|
9008
|
+
SCLiveStreamForm: {
|
|
9009
|
+
styleOverrides: {
|
|
9010
|
+
root: ({ theme }: any) => {
|
|
9011
|
+
'& .SCLiveStreamForm-cover': {
|
|
9012
|
+
position: string;
|
|
9013
|
+
height: number;
|
|
9014
|
+
minHeight: number;
|
|
9015
|
+
'& .SCEventForm-upload-event-cover-root': {
|
|
9016
|
+
position: string;
|
|
9017
|
+
right: any;
|
|
9018
|
+
bottom: any;
|
|
9019
|
+
padding: any;
|
|
9020
|
+
minWidth: string;
|
|
9021
|
+
};
|
|
9022
|
+
};
|
|
9023
|
+
"& .SCLiveStreamForm-access-view": {
|
|
9024
|
+
margin: any;
|
|
9025
|
+
};
|
|
9026
|
+
"& .SCLiveStreamForm-actions": {
|
|
9027
|
+
display: string;
|
|
9028
|
+
justifyContent: string;
|
|
9029
|
+
marginTop: any;
|
|
9030
|
+
};
|
|
9031
|
+
};
|
|
9032
|
+
};
|
|
9033
|
+
};
|
|
9034
|
+
SCLiveStreamFormSettings: {
|
|
9035
|
+
styleOverrides: {
|
|
9036
|
+
root: ({ theme }: any) => {
|
|
9037
|
+
margin: any;
|
|
9038
|
+
'& .SCLiveStreamFormSettings-access-view': {
|
|
9039
|
+
margin: any;
|
|
9040
|
+
width: string;
|
|
9041
|
+
'& .Mui-checked': {
|
|
9042
|
+
color: any;
|
|
9043
|
+
};
|
|
9044
|
+
};
|
|
9045
|
+
};
|
|
9046
|
+
};
|
|
9047
|
+
};
|
|
9048
|
+
SCLiveStreamRoom: {
|
|
9049
|
+
styleOverrides: {
|
|
9050
|
+
root: ({ theme }: any) => {
|
|
9051
|
+
width: string;
|
|
9052
|
+
display: string;
|
|
9053
|
+
justifyContent: string;
|
|
9054
|
+
alignContent: string;
|
|
9055
|
+
"& .SCLiveStreamRoom-title": {
|
|
9056
|
+
margin: any;
|
|
9057
|
+
textAlign: string;
|
|
9058
|
+
color: any;
|
|
9059
|
+
};
|
|
9060
|
+
"& .SCLiveStreamRoom-description": {
|
|
9061
|
+
backgroundColor: any;
|
|
9062
|
+
color: any;
|
|
9063
|
+
border: string;
|
|
9064
|
+
borderRadius: string;
|
|
9065
|
+
marginTop: any;
|
|
9066
|
+
marginBottom: any;
|
|
9067
|
+
padding: any;
|
|
9068
|
+
};
|
|
9069
|
+
"& .SCLiveStreamRoom-content": {
|
|
9070
|
+
width: string;
|
|
9071
|
+
};
|
|
9072
|
+
"& .SCLiveStreamRoom-prejoin": {
|
|
9073
|
+
margin: any;
|
|
9074
|
+
padding: any;
|
|
9075
|
+
display: string;
|
|
9076
|
+
placeItems: string;
|
|
9077
|
+
height: string;
|
|
9078
|
+
position: string;
|
|
9079
|
+
'& .lk-form-control': {
|
|
9080
|
+
display: string;
|
|
9081
|
+
};
|
|
9082
|
+
};
|
|
9083
|
+
"& .SCLiveStreamRoom-prejoin-loading": {
|
|
9084
|
+
'& .lk-prejoin': {
|
|
9085
|
+
opacity: number;
|
|
9086
|
+
};
|
|
9087
|
+
};
|
|
9088
|
+
"& .SCLiveStreamRoom-prejoin-alert": {
|
|
9089
|
+
backgroundColor: any;
|
|
9090
|
+
color: any;
|
|
9091
|
+
border: string;
|
|
9092
|
+
borderRadius: string;
|
|
9093
|
+
};
|
|
9094
|
+
"& .SCLiveStreamRoom-share-link": {
|
|
9095
|
+
marginTop: any;
|
|
9096
|
+
backgroundColor: any;
|
|
9097
|
+
'& textarea': {
|
|
9098
|
+
color: any;
|
|
9099
|
+
'-webkit-text-fill-color': any;
|
|
9100
|
+
};
|
|
9101
|
+
};
|
|
9102
|
+
"& .SCLiveStreamRoom-conference": {
|
|
9103
|
+
width: string;
|
|
9104
|
+
display: string;
|
|
9105
|
+
justifyContent: string;
|
|
9106
|
+
alignItems: string;
|
|
8488
9107
|
backgroundColor: string;
|
|
8489
9108
|
};
|
|
8490
|
-
|
|
9109
|
+
"& .SCLiveStreamRoom-prejoin-loader": {
|
|
9110
|
+
maxWidth: number;
|
|
9111
|
+
width: string;
|
|
8491
9112
|
position: string;
|
|
9113
|
+
textAlign: string;
|
|
9114
|
+
'& .MuiTypography-root': {
|
|
9115
|
+
color: string;
|
|
9116
|
+
};
|
|
9117
|
+
};
|
|
9118
|
+
"& .SCLiveStreamRoom-end-prejoin-content": {
|
|
9119
|
+
color: any;
|
|
9120
|
+
display: string;
|
|
9121
|
+
justifyContent: string;
|
|
9122
|
+
alignItems: string;
|
|
9123
|
+
marginTop: any;
|
|
9124
|
+
paddingBottom: any;
|
|
9125
|
+
"& .SCLiveStreamRoom-end-prejoin-content-box": {
|
|
9126
|
+
[x: number]: {
|
|
9127
|
+
width: string;
|
|
9128
|
+
};
|
|
9129
|
+
width: string;
|
|
9130
|
+
};
|
|
9131
|
+
};
|
|
9132
|
+
'& .lk-prejoin': {
|
|
9133
|
+
maxWidth: number;
|
|
8492
9134
|
width: string;
|
|
8493
|
-
|
|
8494
|
-
|
|
8495
|
-
|
|
8496
|
-
|
|
9135
|
+
backgroundColor: string;
|
|
9136
|
+
borderRadius: any;
|
|
9137
|
+
};
|
|
9138
|
+
'& .lk-join-button': {
|
|
9139
|
+
backgroundColor: any;
|
|
9140
|
+
color: any;
|
|
9141
|
+
'&:hover': {
|
|
9142
|
+
backgroundColor: any;
|
|
9143
|
+
};
|
|
9144
|
+
};
|
|
9145
|
+
};
|
|
9146
|
+
dialogRoot: ({ theme }: any) => {
|
|
9147
|
+
"& .SCLiveStreamRoom-end-conference-wrap": {
|
|
9148
|
+
display: string;
|
|
9149
|
+
justifyContent: string;
|
|
8497
9150
|
alignItems: string;
|
|
9151
|
+
alignContent: string;
|
|
9152
|
+
flexDirection: string;
|
|
9153
|
+
"& .SCLiveStreamVideoConference-btn-back-home": {
|
|
9154
|
+
marginTop: any;
|
|
9155
|
+
};
|
|
9156
|
+
};
|
|
9157
|
+
};
|
|
9158
|
+
};
|
|
9159
|
+
};
|
|
9160
|
+
SCLiveStreamVideoConference: {
|
|
9161
|
+
styleOverrides: {
|
|
9162
|
+
root: ({ theme }: any) => {
|
|
9163
|
+
height: string;
|
|
9164
|
+
width: string;
|
|
9165
|
+
overflowY: string;
|
|
9166
|
+
};
|
|
9167
|
+
dialogRoot: ({ theme }: any) => {
|
|
9168
|
+
"& .SCLiveStreamVideoConference-end-conference-wrap": {
|
|
9169
|
+
display: string;
|
|
8498
9170
|
justifyContent: string;
|
|
8499
|
-
|
|
8500
|
-
|
|
8501
|
-
|
|
8502
|
-
|
|
8503
|
-
|
|
9171
|
+
alignItems: string;
|
|
9172
|
+
alignContent: string;
|
|
9173
|
+
flexDirection: string;
|
|
9174
|
+
"& .SCLiveStreamVideoConference-logo": {
|
|
9175
|
+
img: {
|
|
9176
|
+
maxHeight: string;
|
|
9177
|
+
};
|
|
9178
|
+
};
|
|
9179
|
+
"& .SCLiveStreamVideoConference-btn-back-home": {
|
|
9180
|
+
marginTop: any;
|
|
8504
9181
|
};
|
|
8505
9182
|
};
|
|
8506
9183
|
};
|