2017-12-08 19:36:03 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
2017-12-20 20:14:07 +00:00
|
|
|
const MENTION_HEIGHT = 50;
|
2017-12-08 19:36:03 +00:00
|
|
|
|
|
|
|
export default StyleSheet.create({
|
|
|
|
textBox: {
|
|
|
|
backgroundColor: '#fff',
|
|
|
|
flex: 0,
|
|
|
|
alignItems: 'center',
|
|
|
|
borderTopWidth: 1,
|
|
|
|
borderTopColor: '#D8D8D8',
|
2017-12-20 20:14:07 +00:00
|
|
|
zIndex: 2
|
2017-12-08 19:36:03 +00:00
|
|
|
},
|
|
|
|
safeAreaView: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center'
|
|
|
|
},
|
|
|
|
textArea: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center',
|
|
|
|
flexGrow: 0
|
|
|
|
},
|
|
|
|
textBoxInput: {
|
2018-01-25 14:04:20 +00:00
|
|
|
paddingHorizontal: 5,
|
|
|
|
textAlignVertical: 'center',
|
2017-12-08 19:36:03 +00:00
|
|
|
maxHeight: 120,
|
|
|
|
flexGrow: 1,
|
|
|
|
width: 1,
|
2018-01-25 14:04:20 +00:00
|
|
|
paddingTop: 15,
|
|
|
|
paddingBottom: 15
|
2017-12-08 19:36:03 +00:00
|
|
|
},
|
|
|
|
editing: {
|
|
|
|
backgroundColor: '#fff5df'
|
|
|
|
},
|
|
|
|
actionButtons: {
|
|
|
|
color: '#2F343D',
|
|
|
|
fontSize: 20,
|
|
|
|
textAlign: 'center',
|
2018-01-25 14:04:20 +00:00
|
|
|
padding: 15,
|
2017-12-08 19:36:03 +00:00
|
|
|
flex: 0
|
|
|
|
},
|
|
|
|
actionRow: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center',
|
|
|
|
alignContent: 'center'
|
|
|
|
},
|
|
|
|
actionContent: {
|
|
|
|
borderBottomWidth: 1,
|
|
|
|
borderBottomColor: '#ECECEC',
|
|
|
|
|
|
|
|
borderTopWidth: 1,
|
|
|
|
borderTopColor: '#ECECEC',
|
|
|
|
|
|
|
|
backgroundColor: '#F7F8FA'
|
|
|
|
},
|
|
|
|
actionTitle: {
|
|
|
|
flex: 1,
|
|
|
|
fontSize: 17,
|
|
|
|
padding: 14,
|
|
|
|
textAlign: 'right',
|
|
|
|
borderBottomWidth: 1,
|
|
|
|
borderBottomColor: '#ECECEC',
|
|
|
|
color: '#2F343D'
|
2017-12-20 20:14:07 +00:00
|
|
|
},
|
|
|
|
mentionList: {
|
|
|
|
maxHeight: MENTION_HEIGHT * 4,
|
|
|
|
borderTopColor: '#ECECEC',
|
|
|
|
borderTopWidth: 1,
|
|
|
|
paddingHorizontal: 5,
|
|
|
|
backgroundColor: '#fff'
|
|
|
|
},
|
|
|
|
mentionItem: {
|
|
|
|
height: MENTION_HEIGHT,
|
|
|
|
backgroundColor: '#F7F8FA',
|
|
|
|
borderBottomWidth: 1,
|
|
|
|
borderBottomColor: '#ECECEC',
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center'
|
2018-01-16 18:48:05 +00:00
|
|
|
},
|
|
|
|
emojiContainer: {
|
|
|
|
height: 200,
|
|
|
|
borderTopColor: '#ECECEC',
|
|
|
|
borderTopWidth: 1,
|
|
|
|
backgroundColor: '#fff'
|
2018-01-19 12:38:14 +00:00
|
|
|
},
|
|
|
|
fixedMentionAvatar: {
|
|
|
|
fontWeight: 'bold',
|
|
|
|
textAlign: 'center',
|
|
|
|
width: 46
|
2017-12-08 19:36:03 +00:00
|
|
|
}
|
|
|
|
});
|