| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293 |
- import BaseTheme from '../../../base/ui/components/BaseTheme.native';
-
- /**
- * The style for participant list description.
- */
- const participantListDescription = {
- ...BaseTheme.typography.heading6,
- color: BaseTheme.palette.text01,
- fontSize: 15,
- fontWeight: 'bold',
- marginLeft: BaseTheme.spacing[2],
- paddingVertical: BaseTheme.spacing[2],
- position: 'relative',
- width: '70%'
- };
-
- /**
- * The style for content.
- */
- const flexContent = {
- alignItems: 'center',
- color: BaseTheme.palette.icon01,
- display: 'flex',
- flex: 1
- };
-
- /**
- * The style for the context menu items text.
- */
- const contextMenuItemText = {
- ...BaseTheme.typography.bodyShortRegularLarge,
- color: BaseTheme.palette.text01
- };
-
- /**
- * The style of the participants pane buttons.
- */
- export const button = {
- display: 'flex',
- flexDirection: 'row',
- justifyContent: 'center'
- };
-
- /**
- * The style of the context menu pane items.
- */
- const contextMenuItem = {
- alignItems: 'center',
- display: 'flex',
- flexDirection: 'row',
- height: BaseTheme.spacing[7],
- marginLeft: BaseTheme.spacing[3]
- };
-
- const participantNameContainer = {
- display: 'flex',
- flexDirection: 'row',
- overflow: 'hidden',
- paddingLeft: BaseTheme.spacing[3]
- };
-
- /**
- * The styles of the native components of the feature {@code participants}.
- */
- export default {
-
- participantsBadge: {
- backgroundColor: BaseTheme.palette.ui03,
- borderRadius: BaseTheme.spacing[2],
- borderColor: 'white',
- overflow: 'hidden',
- height: BaseTheme.spacing[3],
- minWidth: BaseTheme.spacing[3],
- color: BaseTheme.palette.text01,
- ...BaseTheme.typography.labelBold,
- position: 'absolute',
- right: -3,
- top: -3,
- textAlign: 'center',
- paddingHorizontal: 2
- },
-
- participantsButtonBadge: {
- display: 'flex',
- position: 'relative'
- },
-
- participantContainer: {
- alignItems: 'center',
- display: 'flex',
- flexDirection: 'row',
- height: BaseTheme.spacing[9],
- paddingLeft: BaseTheme.spacing[3],
- paddingRight: BaseTheme.spacing[3],
- width: '100%'
- },
-
- participantContent: {
- alignItems: 'center',
- borderBottomColor: BaseTheme.palette.ui02,
- borderBottomWidth: 2.4,
- display: 'flex',
- flexDirection: 'row',
- height: '100%',
- overflow: 'hidden',
- width: '100%'
- },
-
- participantDetailsContainer: {
- display: 'flex',
- flexDirection: 'column',
- width: '73%'
- },
-
- participantDetailsContainerRaisedHand: {
- width: '65%'
- },
-
- participantNameContainer: {
- ...participantNameContainer,
- width: '100%'
- },
-
- lobbyParticipantNameContainer: {
- ...participantNameContainer,
- width: '40%'
- },
-
- participantName: {
- color: BaseTheme.palette.text01,
- overflow: 'hidden'
- },
-
- moderatorLabel: {
- color: BaseTheme.palette.text03,
- alignSelf: 'flex-start',
- paddingLeft: BaseTheme.spacing[3],
- paddingTop: BaseTheme.spacing[1]
- },
-
- participantStatesContainer: {
- display: 'flex',
- flexDirection: 'row',
- marginLeft: 'auto',
- width: '15%'
- },
-
- participantStateVideo: {
- paddingRight: BaseTheme.spacing[3]
- },
-
- raisedHandIndicator: {
- backgroundColor: BaseTheme.palette.warning02,
- borderRadius: BaseTheme.shape.borderRadius / 2,
- height: BaseTheme.spacing[4],
- width: BaseTheme.spacing[4],
- marginLeft: 'auto',
- marginRight: BaseTheme.spacing[2]
- },
-
- raisedHandIcon: {
- ...flexContent,
- top: BaseTheme.spacing[1],
- color: BaseTheme.palette.uiBackground
- },
-
- lobbyButtonAdmit: {
- position: 'absolute',
- right: 16
- },
-
- lobbyButtonReject: {
- position: 'absolute',
- right: 112
- },
-
- lobbyListDescription: {
- ...participantListDescription
- },
-
- lobbyListDetails: {
- alignItems: 'center',
- display: 'flex',
- flexDirection: 'row',
- justifyContent: 'space-between'
- },
-
- meetingListContainer: {
- paddingHorizontal: BaseTheme.spacing[3]
- },
-
- meetingListDescription: {
- ...participantListDescription
- },
-
- participantsPaneContainer: {
- backgroundColor: BaseTheme.palette.ui01,
- flex: 1,
- flexDirection: 'column',
- paddingVertical: BaseTheme.spacing[2]
- },
-
- participantsPaneFooterContainer: {
- alignItems: 'center',
- bottom: 0,
- height: 128,
- left: 0,
- paddingHorizontal: BaseTheme.spacing[4],
- right: 0
- },
-
- participantsPaneFooter: {
- display: 'flex',
- flexDirection: 'row',
- justifyContent: 'flex-end',
- paddingBottom: BaseTheme.spacing[3],
- width: '100%'
- },
-
- inviteButton: {
- marginLeft: BaseTheme.spacing[3],
- marginRight: BaseTheme.spacing[3],
- marginVertical: BaseTheme.spacing[2]
- },
-
- breakoutRoomsButton: {
- marginBottom: BaseTheme.spacing[2],
- width: '100%'
- },
-
- moreButton: {
- marginLeft: BaseTheme.spacing[2]
- },
-
- contextMenuItem: {
- ...contextMenuItem
- },
-
- contextMenuItemSection: {
- ...contextMenuItem
- },
-
- contextMenuItemSectionAvatar: {
- alignItems: 'center',
- backgroundColor: BaseTheme.palette.ui01,
- borderBottomColor: BaseTheme.palette.ui07,
- borderBottomWidth: 1,
- borderTopLeftRadius: BaseTheme.spacing[3],
- borderTopRightRadius: BaseTheme.spacing[3],
- flexDirection: 'row',
- height: BaseTheme.spacing[7],
- paddingLeft: BaseTheme.spacing[3]
- },
-
- contextMenuItemText: {
- ...contextMenuItemText,
- marginLeft: BaseTheme.spacing[3]
- },
-
- contextMenuItemTextNoIcon: {
- ...contextMenuItemText,
- marginLeft: BaseTheme.spacing[6]
- },
-
- contextMenuItemName: {
- color: BaseTheme.palette.text04,
- flexShrink: 1,
- fontSize: BaseTheme.spacing[3],
- marginLeft: BaseTheme.spacing[3],
- opacity: 0.90
- },
-
- divider: {
- backgroundColor: BaseTheme.palette.ui07
- },
-
- inputContainer: {
- marginLeft: BaseTheme.spacing[3],
- marginRight: BaseTheme.spacing[3],
- marginBottom: BaseTheme.spacing[4]
- },
-
- centerInput: {
- paddingRight: BaseTheme.spacing[3],
- textAlign: 'center'
- },
-
- visitorsLabel: {
- ...BaseTheme.typography.heading6,
- color: BaseTheme.palette.warning02,
- marginLeft: BaseTheme.spacing[3]
- }
- };
|