123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- // @flow
-
- import BaseTheme from '../../../base/ui/components/BaseTheme.native';
-
- const SECONDARY_COLOR = BaseTheme.palette.border04;
-
- export default {
-
- buttonStylesBorderless: {
- iconStyle: {
- color: BaseTheme.palette.icon01,
- fontSize: 24
- },
- style: {
- flexDirection: 'row',
- justifyContent: 'center',
- marginHorizontal: BaseTheme.spacing[3],
- height: 24,
- width: 24
- },
- underlayColor: 'transparent'
- },
-
- lobbyChatWrapper: {
- backgroundColor: BaseTheme.palette.ui01,
- alignItems: 'stretch',
- flexDirection: 'column',
- justifyItems: 'center',
- height: '100%'
- },
-
- lobbyChatHeader: {
- flexDirection: 'row',
- padding: 20
- },
-
- lobbyChatTitle: {
- color: BaseTheme.palette.text01,
- fontSize: 20,
- fontWeight: 'bold',
- flexShrink: 1
- },
-
- lobbyChatCloseButton: {
- fontSize: 24,
- marginLeft: BaseTheme.spacing[3],
- marginTop: BaseTheme.spacing[1],
- color: BaseTheme.palette.icon01
- },
-
- contentWrapper: {
- flex: 1
- },
-
- contentWrapperWide: {
- flex: 1,
- flexDirection: 'row'
- },
-
- largeVideoContainer: {
- minHeight: '50%'
- },
-
- largeVideoContainerWide: {
- height: '100%',
- marginRight: 'auto',
- position: 'absolute',
- width: '50%'
- },
-
- contentContainer: {
- alignSelf: 'center',
- display: 'flex',
- justifyContent: 'center',
- minHeight: '50%',
- paddingHorizontal: BaseTheme.spacing[3],
- width: 400
- },
-
- contentContainerWide: {
- alignItems: 'center',
- height: '100%',
- justifyContent: 'center',
- left: '50%',
- paddingHorizontal: BaseTheme.spacing[3],
- position: 'absolute',
- width: '50%'
- },
-
- toolboxContainer: {
- alignItems: 'center',
- display: 'flex',
- flexDirection: 'row',
- justifyContent: 'center',
- marginTop: BaseTheme.spacing[3]
- },
-
- toolboxContainerWide: {
- flexDirection: 'row',
- justifyContent: 'center',
- marginTop: BaseTheme.spacing[3]
- },
-
- displayNameText: {
- fontWeight: 'bold',
- marginVertical: 10
- },
-
- editButton: {
- alignSelf: 'flex-end',
- paddingHorizontal: 10
- },
-
- editIcon: {
- color: 'black',
- fontSize: 16
- },
-
- formWrapper: {
- alignSelf: 'stretch',
- justifyContent: 'center'
- },
-
- field: {
- alignSelf: 'stretch',
- backgroundColor: BaseTheme.palette.field02,
- borderColor: SECONDARY_COLOR,
- borderRadius: BaseTheme.shape.borderRadius,
- borderWidth: 2,
- color: BaseTheme.palette.text06,
- height: BaseTheme.spacing[7],
- marginTop: BaseTheme.spacing[3],
- marginHorizontal: BaseTheme.spacing[3],
- padding: BaseTheme.spacing[2],
- textAlign: 'center'
- },
-
- fieldError: {
- color: BaseTheme.palette.warning03,
- marginLeft: BaseTheme.spacing[3],
- fontSize: 16
- },
-
- fieldLabel: {
- ...BaseTheme.typography.heading6,
- color: BaseTheme.palette.text01,
- textAlign: 'center'
- },
-
- standardButtonWrapper: {
- alignSelf: 'stretch'
- },
-
- joiningMessage: {
- color: BaseTheme.palette.text01,
- marginHorizontal: BaseTheme.spacing[3],
- textAlign: 'center'
- },
-
- passwordJoinButtonsWrapper: {
- alignItems: 'stretch',
- alignSelf: 'stretch',
- marginHorizontal: BaseTheme.spacing[3]
- },
-
- loadingIndicator: {
- marginBottom: BaseTheme.spacing[4]
- },
-
- participantBox: {
- alignItems: 'center',
- alignSelf: 'stretch',
- borderColor: SECONDARY_COLOR,
- borderRadius: 4,
- borderWidth: 1,
- marginVertical: 18,
- paddingVertical: 12
- },
-
- lobbyButton: {
- marginTop: BaseTheme.spacing[3]
- },
-
- enterPasswordButton: {
- marginHorizontal: BaseTheme.spacing[3],
- marginTop: BaseTheme.spacing[6]
- },
-
- // KnockingParticipantList
-
- knockingParticipantList: {
- alignSelf: 'stretch',
- backgroundColor: 'rgba(22, 38, 55, 0.8)',
- flexDirection: 'column'
- },
-
- knockingParticipantListButton: {
- borderRadius: 4,
- marginHorizontal: 3,
- paddingHorizontal: 10,
- paddingVertical: 5
- },
-
- knockingParticipantListDetails: {
- flex: 1,
- marginLeft: 10
- },
-
- knockingParticipantListEntry: {
- alignItems: 'center',
- flexDirection: 'row',
- padding: 10
- },
-
- knockingParticipantListPrimaryButton: {
- backgroundColor: 'rgb(3, 118, 218)'
- },
-
- knockingParticipantListSecondaryButton: {
- backgroundColor: 'transparent'
- },
-
- knockingParticipantListText: {
- color: 'white'
- },
-
- lobbySwitchContainer: {
- flexDirection: 'column',
- marginTop: BaseTheme.spacing[2]
- },
-
- lobbySwitchIcon: {
- alignSelf: 'flex-end'
- }
- };
|