2018-12-19 18:40:17 +00:00
|
|
|
// @flow
|
|
|
|
|
2019-01-05 16:49:21 +00:00
|
|
|
import {
|
|
|
|
MD_FONT_SIZE,
|
|
|
|
MD_ITEM_HEIGHT,
|
|
|
|
MD_ITEM_MARGIN_PADDING
|
|
|
|
} from '../../../base/dialog';
|
2018-12-19 18:40:17 +00:00
|
|
|
import { ColorPalette, createStyleSheet } from '../../../base/styles';
|
2021-06-07 15:19:01 +00:00
|
|
|
import BaseTheme from '../../../base/ui/components/BaseTheme.native';
|
2018-12-19 18:40:17 +00:00
|
|
|
|
|
|
|
export default createStyleSheet({
|
|
|
|
participantNameContainer: {
|
|
|
|
alignItems: 'center',
|
2021-07-30 09:46:49 +00:00
|
|
|
borderBottomColor: BaseTheme.palette.dividerColor,
|
|
|
|
borderBottomWidth: 0.4,
|
2020-09-16 15:13:15 +00:00
|
|
|
borderTopLeftRadius: 16,
|
|
|
|
borderTopRightRadius: 16,
|
2018-12-19 18:40:17 +00:00
|
|
|
flexDirection: 'row',
|
2020-09-16 15:13:15 +00:00
|
|
|
height: MD_ITEM_HEIGHT,
|
|
|
|
paddingLeft: MD_ITEM_MARGIN_PADDING
|
2018-12-19 18:40:17 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
participantNameLabel: {
|
|
|
|
color: ColorPalette.lightGrey,
|
|
|
|
flexShrink: 1,
|
2019-01-05 16:49:21 +00:00
|
|
|
fontSize: MD_FONT_SIZE,
|
|
|
|
marginLeft: MD_ITEM_MARGIN_PADDING,
|
2018-12-19 18:40:17 +00:00
|
|
|
opacity: 0.90
|
2020-12-22 09:12:52 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
statsTitleText: {
|
2021-07-30 09:46:49 +00:00
|
|
|
color: BaseTheme.palette.text01,
|
2020-12-22 09:12:52 +00:00
|
|
|
fontSize: 16,
|
|
|
|
fontWeight: 'bold',
|
|
|
|
marginRight: 3
|
|
|
|
},
|
|
|
|
|
|
|
|
statsInfoText: {
|
2021-07-30 09:46:49 +00:00
|
|
|
color: BaseTheme.palette.text01,
|
2020-12-22 09:12:52 +00:00
|
|
|
fontSize: 16,
|
|
|
|
marginRight: 2,
|
|
|
|
marginLeft: 2
|
|
|
|
},
|
|
|
|
|
|
|
|
statsInfoCell: {
|
|
|
|
alignItems: 'center',
|
|
|
|
flexDirection: 'row',
|
|
|
|
height: 30,
|
|
|
|
justifyContent: 'flex-start'
|
|
|
|
},
|
|
|
|
|
|
|
|
statsWrapper: {
|
2021-07-30 09:46:49 +00:00
|
|
|
margin: BaseTheme.spacing[3]
|
2021-06-07 15:19:01 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
volumeSliderContainer: {
|
|
|
|
alignItems: 'center',
|
|
|
|
flexDirection: 'row',
|
2021-07-30 09:46:49 +00:00
|
|
|
marginHorizontal: BaseTheme.spacing[3],
|
|
|
|
marginVertical: BaseTheme.spacing[2]
|
2021-06-07 15:19:01 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
sliderContainer: {
|
2021-07-02 13:43:52 +00:00
|
|
|
marginLeft: BaseTheme.spacing[3],
|
2021-07-30 09:46:49 +00:00
|
|
|
minWidth: '80%'
|
|
|
|
},
|
|
|
|
|
|
|
|
divider: {
|
|
|
|
backgroundColor: BaseTheme.palette.dividerColor
|
2021-09-22 14:05:42 +00:00
|
|
|
},
|
|
|
|
|
2022-02-03 15:45:02 +00:00
|
|
|
dividerDialog: {
|
2022-03-20 18:12:30 +00:00
|
|
|
backgroundColor: BaseTheme.palette.dividerColor,
|
2022-02-03 15:45:02 +00:00
|
|
|
marginBottom: BaseTheme.spacing[3]
|
2021-09-14 15:31:30 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
contextMenuItem: {
|
|
|
|
alignItems: 'center',
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'row',
|
|
|
|
height: BaseTheme.spacing[7],
|
|
|
|
marginLeft: BaseTheme.spacing[3]
|
|
|
|
},
|
|
|
|
|
|
|
|
contextMenuItemText: {
|
|
|
|
...BaseTheme.typography.bodyShortRegularLarge,
|
|
|
|
color: BaseTheme.palette.text01,
|
|
|
|
marginLeft: BaseTheme.spacing[4]
|
2018-12-19 18:40:17 +00:00
|
|
|
}
|
|
|
|
});
|