2020-04-06 15:26:20 +00:00
|
|
|
import { BoxModel } from '../../../../base/styles';
|
2021-10-20 19:29:21 +00:00
|
|
|
import BaseTheme from '../../../../base/ui/components/BaseTheme.native';
|
2019-02-26 10:41:57 +00:00
|
|
|
|
|
|
|
export const AVATAR_SIZE = 40;
|
|
|
|
export const DARK_GREY = 'rgb(28, 32, 37)';
|
|
|
|
export const LIGHT_GREY = 'rgb(209, 219, 232)';
|
|
|
|
|
|
|
|
export default {
|
2021-10-20 19:29:21 +00:00
|
|
|
|
|
|
|
addPeopleContainer: {
|
2022-02-17 14:51:00 +00:00
|
|
|
backgroundColor: BaseTheme.palette.ui01,
|
2021-10-20 19:29:21 +00:00
|
|
|
flex: 1
|
|
|
|
},
|
|
|
|
|
2019-02-26 10:41:57 +00:00
|
|
|
avatar: {
|
|
|
|
backgroundColor: LIGHT_GREY
|
|
|
|
},
|
|
|
|
|
2022-11-08 15:46:46 +00:00
|
|
|
customContainer: {
|
|
|
|
marginHorizontal: BaseTheme.spacing[3],
|
|
|
|
marginVertical: BaseTheme.spacing[2]
|
|
|
|
},
|
|
|
|
|
2019-02-26 10:41:57 +00:00
|
|
|
avatarText: {
|
2019-08-28 10:25:51 +00:00
|
|
|
color: DARK_GREY,
|
2019-02-26 10:41:57 +00:00
|
|
|
fontSize: 12
|
|
|
|
},
|
|
|
|
|
2020-04-01 12:13:51 +00:00
|
|
|
bottomBar: {
|
|
|
|
alignItems: 'center',
|
2021-10-20 19:29:21 +00:00
|
|
|
justifyContent: 'center',
|
2022-05-02 09:15:37 +00:00
|
|
|
backgroundColor: BaseTheme.palette.screen02Header,
|
2021-10-20 19:29:21 +00:00
|
|
|
height: BaseTheme.spacing[10]
|
2020-04-01 12:13:51 +00:00
|
|
|
},
|
|
|
|
|
2019-06-27 10:35:50 +00:00
|
|
|
clearButton: {
|
2021-10-21 11:58:44 +00:00
|
|
|
paddingTop: 7
|
2019-06-27 10:35:50 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
clearIcon: {
|
2021-10-21 11:58:44 +00:00
|
|
|
color: BaseTheme.palette.ui02,
|
2019-06-27 10:35:50 +00:00
|
|
|
fontSize: 18,
|
|
|
|
textAlign: 'center'
|
|
|
|
},
|
|
|
|
|
2020-04-01 15:06:35 +00:00
|
|
|
/**
|
|
|
|
* A special padding to avoid issues on some devices (such as Android devices with custom suggestions bar).
|
|
|
|
*/
|
|
|
|
extraBarPadding: {
|
|
|
|
paddingBottom: 30
|
|
|
|
},
|
|
|
|
|
2021-10-20 19:29:21 +00:00
|
|
|
headerCloseIcon: {
|
|
|
|
marginLeft: 12
|
|
|
|
},
|
|
|
|
|
|
|
|
headerSendInvite: {
|
|
|
|
color: BaseTheme.palette.text01,
|
|
|
|
marginRight: 12
|
|
|
|
},
|
|
|
|
|
2019-08-28 10:25:51 +00:00
|
|
|
invitedList: {
|
|
|
|
padding: 3
|
2019-02-26 10:41:57 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
itemLinesStyle: {
|
|
|
|
color: 'rgb(118, 136, 152)',
|
|
|
|
fontSize: 13
|
|
|
|
},
|
|
|
|
|
|
|
|
itemText: {
|
2022-02-17 14:51:00 +00:00
|
|
|
color: BaseTheme.palette.text01,
|
2019-02-26 10:41:57 +00:00
|
|
|
fontSize: 14,
|
|
|
|
fontWeight: 'normal'
|
|
|
|
},
|
|
|
|
|
|
|
|
itemWrapper: {
|
|
|
|
alignItems: 'center',
|
|
|
|
flexDirection: 'row',
|
|
|
|
paddingLeft: 5
|
|
|
|
},
|
|
|
|
|
|
|
|
resultList: {
|
2019-08-28 10:25:51 +00:00
|
|
|
flex: 1,
|
2019-02-26 10:41:57 +00:00
|
|
|
padding: 5
|
|
|
|
},
|
|
|
|
|
2019-08-28 10:25:51 +00:00
|
|
|
selectedIcon: {
|
2022-02-17 14:51:00 +00:00
|
|
|
color: BaseTheme.palette.icon01,
|
2019-08-28 10:25:51 +00:00
|
|
|
fontSize: 20,
|
|
|
|
marginRight: BoxModel.margin,
|
|
|
|
padding: 2
|
|
|
|
},
|
|
|
|
|
2019-02-26 10:41:57 +00:00
|
|
|
separator: {
|
2022-02-17 14:51:00 +00:00
|
|
|
borderBottomColor: BaseTheme.palette.dividerColor,
|
2019-02-26 10:41:57 +00:00
|
|
|
borderBottomWidth: 1,
|
|
|
|
marginLeft: 85
|
|
|
|
},
|
|
|
|
|
|
|
|
searchIcon: {
|
2022-11-08 15:46:46 +00:00
|
|
|
color: BaseTheme.palette.icon01,
|
|
|
|
fontSize: 22
|
2019-08-28 10:25:51 +00:00
|
|
|
},
|
|
|
|
|
2020-04-01 12:13:51 +00:00
|
|
|
shareIcon: {
|
|
|
|
fontSize: 42
|
|
|
|
},
|
|
|
|
|
2019-08-28 10:25:51 +00:00
|
|
|
unselectIcon: {
|
2022-02-17 14:51:00 +00:00
|
|
|
color: BaseTheme.palette.ui01,
|
2019-08-28 10:25:51 +00:00
|
|
|
fontSize: 16,
|
|
|
|
left: AVATAR_SIZE / -3,
|
|
|
|
position: 'relative',
|
|
|
|
top: AVATAR_SIZE / -3
|
2019-02-26 10:41:57 +00:00
|
|
|
}
|
|
|
|
};
|