jiti-meet/react/features/toolbox/components/native/styles.js

214 lines
4.4 KiB
JavaScript
Raw Normal View History

2018-05-16 21:49:03 +00:00
// @flow
import { ColorSchemeRegistry, schemeColor } from '../../../base/color-scheme';
import { BoxModel, ColorPalette } from '../../../base/styles';
2021-03-10 13:06:56 +00:00
const BUTTON_SIZE = 48;
2018-05-16 21:49:03 +00:00
// Toolbox, toolbar:
/**
* The style of toolbar buttons.
*/
const toolbarButton = {
2021-03-10 13:06:56 +00:00
borderRadius: 3,
borderWidth: 0,
flex: 0,
flexDirection: 'row',
height: BUTTON_SIZE,
justifyContent: 'center',
marginHorizontal: 6,
marginTop: 6,
width: BUTTON_SIZE
};
/**
* The icon style of the toolbar buttons.
*/
const toolbarButtonIcon = {
alignSelf: 'center',
color: ColorPalette.darkGrey,
2021-03-10 13:06:56 +00:00
fontSize: 24
};
/**
* The icon style of toolbar buttons which display white icons.
*/
const whiteToolbarButtonIcon = {
...toolbarButtonIcon,
color: ColorPalette.white
};
/**
* The style of reaction buttons.
*/
const reactionButton = {
...toolbarButton,
backgroundColor: 'transparent',
alignItems: 'center',
marginTop: 0,
marginHorizontal: 0
};
/**
* The style of the emoji on the reaction buttons.
*/
const reactionEmoji = {
fontSize: 20,
color: ColorPalette.white
};
const reactionMenu = {
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
backgroundColor: ColorPalette.black,
padding: 16
};
/**
* The Toolbox and toolbar related styles.
*/
const styles = {
sheetGestureRecognizer: {
alignItems: 'stretch',
flexDirection: 'column'
},
/**
* The style of the toolbar.
*/
toolbox: {
alignItems: 'center',
2021-03-10 13:06:56 +00:00
backgroundColor: ColorPalette.darkBackground,
borderTopLeftRadius: 3,
borderTopRightRadius: 3,
2016-12-12 19:49:23 +00:00
flexDirection: 'row',
flexGrow: 0,
2021-03-10 13:06:56 +00:00
justifyContent: 'space-between',
paddingHorizontal: BoxModel.margin,
paddingVertical: 8
},
/**
* The style of the root/top-level container of {@link Toolbox}.
*/
toolboxContainer: {
flexDirection: 'column',
flexGrow: 0,
width: '100%',
maxWidth: 580,
marginLeft: 'auto',
marginRight: 'auto'
}
};
export default styles;
/**
* Color schemed styles for the @{Toolbox} component.
*/
ColorSchemeRegistry.register('Toolbox', {
/**
* Styles for buttons in the toolbar.
*/
buttonStyles: {
iconStyle: toolbarButtonIcon,
style: toolbarButton
},
2019-07-12 08:32:47 +00:00
buttonStylesBorderless: {
iconStyle: whiteToolbarButtonIcon,
style: {
...toolbarButton,
backgroundColor: 'transparent'
}
},
backgroundToggle: {
backgroundColor: ColorPalette.toggled
},
hangupButtonStyles: {
iconStyle: whiteToolbarButtonIcon,
style: {
...toolbarButton,
2019-07-12 08:32:47 +00:00
backgroundColor: schemeColor('hangup')
},
underlayColor: ColorPalette.buttonUnderlay
},
reactionDialog: {
position: 'absolute',
width: '100%',
height: '100%',
backgroundColor: 'transparent'
},
overflowReactionMenu: reactionMenu,
reactionMenu: {
...reactionMenu,
borderRadius: 3,
width: 360
},
reactionRow: {
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
width: '100%',
marginBottom: 16
},
reactionButton: {
style: reactionButton,
underlayColor: ColorPalette.toggled,
emoji: reactionEmoji
},
raiseHandButton: {
style: {
...reactionButton,
backgroundColor: ColorPalette.toggled,
width: '100%',
borderRadius: 6
},
underlayColor: ColorPalette.toggled,
emoji: reactionEmoji,
text: {
color: ColorPalette.white,
fontWeight: '600',
marginLeft: 8,
lineHeight: 24
},
container: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center'
}
},
emojiAnimation: {
color: ColorPalette.white,
position: 'absolute',
zIndex: 1001,
elevation: 2,
fontSize: 20,
left: '50%',
top: '100%'
},
/**
* Styles for toggled buttons in the toolbar.
*/
toggledButtonStyles: {
iconStyle: whiteToolbarButtonIcon,
style: {
2021-03-10 13:06:56 +00:00
...toolbarButton
}
}
});