2019-01-29 19:52:56 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
2019-03-29 19:36:07 +00:00
|
|
|
|
|
|
|
import sharedStyles from '../Styles';
|
2017-12-08 19:13:21 +00:00
|
|
|
|
|
|
|
export default StyleSheet.create({
|
|
|
|
container: {
|
2019-12-04 16:39:53 +00:00
|
|
|
flex: 1
|
2017-12-08 19:13:21 +00:00
|
|
|
},
|
|
|
|
list: {
|
2019-12-04 16:39:53 +00:00
|
|
|
width: '100%'
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
dropdownContainerHeader: {
|
|
|
|
height: 41,
|
|
|
|
borderBottomWidth: StyleSheet.hairlineWidth,
|
|
|
|
alignItems: 'center',
|
|
|
|
flexDirection: 'row'
|
|
|
|
},
|
|
|
|
sortToggleContainerClose: {
|
|
|
|
position: 'absolute',
|
|
|
|
top: 0,
|
|
|
|
width: '100%'
|
|
|
|
},
|
|
|
|
sortToggleText: {
|
2019-12-04 16:39:53 +00:00
|
|
|
fontSize: 16,
|
2018-08-31 16:46:33 +00:00
|
|
|
flex: 1,
|
2020-07-06 20:56:28 +00:00
|
|
|
marginLeft: 12,
|
2019-03-29 19:36:07 +00:00
|
|
|
...sharedStyles.textRegular
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
dropdownContainer: {
|
|
|
|
width: '100%',
|
|
|
|
position: 'absolute',
|
2019-12-04 16:39:53 +00:00
|
|
|
top: 0,
|
|
|
|
borderBottomWidth: StyleSheet.hairlineWidth
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
sortItemButton: {
|
|
|
|
height: 57,
|
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
|
|
|
sortItemContainer: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center'
|
|
|
|
},
|
|
|
|
sortItemText: {
|
|
|
|
fontSize: 18,
|
2019-03-29 19:36:07 +00:00
|
|
|
flex: 1,
|
|
|
|
...sharedStyles.textRegular
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
backdrop: {
|
2019-12-04 16:39:53 +00:00
|
|
|
...StyleSheet.absoluteFill
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
sortSeparator: {
|
|
|
|
height: StyleSheet.hairlineWidth,
|
2020-07-06 20:56:28 +00:00
|
|
|
marginHorizontal: 12,
|
2018-08-31 16:46:33 +00:00
|
|
|
flex: 1
|
|
|
|
},
|
|
|
|
sortIcon: {
|
2019-03-01 16:49:11 +00:00
|
|
|
width: 22,
|
|
|
|
height: 22,
|
2020-07-06 20:56:28 +00:00
|
|
|
marginHorizontal: 12
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
groupTitleContainer: {
|
2020-07-06 20:56:28 +00:00
|
|
|
paddingHorizontal: 12,
|
2018-08-31 16:46:33 +00:00
|
|
|
paddingTop: 17,
|
2019-12-04 16:39:53 +00:00
|
|
|
paddingBottom: 10
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
groupTitle: {
|
2019-12-04 16:39:53 +00:00
|
|
|
fontSize: 16,
|
2018-08-31 16:46:33 +00:00
|
|
|
letterSpacing: 0.27,
|
|
|
|
flex: 1,
|
2019-12-04 16:39:53 +00:00
|
|
|
lineHeight: 24,
|
2019-03-29 19:36:07 +00:00
|
|
|
...sharedStyles.textBold
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
serverHeader: {
|
|
|
|
justifyContent: 'space-between'
|
|
|
|
},
|
|
|
|
serverHeaderText: {
|
2019-12-04 16:39:53 +00:00
|
|
|
fontSize: 16,
|
2020-07-06 20:56:28 +00:00
|
|
|
marginLeft: 12,
|
2019-03-29 19:36:07 +00:00
|
|
|
...sharedStyles.textRegular
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
serverHeaderAdd: {
|
2019-12-04 16:39:53 +00:00
|
|
|
fontSize: 16,
|
2020-07-06 20:56:28 +00:00
|
|
|
marginRight: 12,
|
2019-03-29 19:36:07 +00:00
|
|
|
paddingVertical: 10,
|
|
|
|
...sharedStyles.textRegular
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
serverItem: {
|
|
|
|
height: 68
|
|
|
|
},
|
|
|
|
serverItemContainer: {
|
|
|
|
flexDirection: 'row',
|
2019-12-04 16:39:53 +00:00
|
|
|
alignItems: 'center',
|
|
|
|
height: 68
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
serverIcon: {
|
|
|
|
width: 42,
|
|
|
|
height: 42,
|
2020-07-06 20:56:28 +00:00
|
|
|
marginHorizontal: 12,
|
2018-08-31 16:46:33 +00:00
|
|
|
marginVertical: 13,
|
|
|
|
borderRadius: 4,
|
|
|
|
resizeMode: 'contain'
|
|
|
|
},
|
|
|
|
serverTextContainer: {
|
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'column',
|
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
|
|
|
serverName: {
|
2019-03-29 19:36:07 +00:00
|
|
|
fontSize: 18,
|
|
|
|
...sharedStyles.textSemibold
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
serverUrl: {
|
2019-12-04 16:39:53 +00:00
|
|
|
fontSize: 16,
|
2019-03-29 19:36:07 +00:00
|
|
|
...sharedStyles.textRegular
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
serverSeparator: {
|
|
|
|
height: StyleSheet.hairlineWidth,
|
|
|
|
marginLeft: 72
|
2017-12-08 19:13:21 +00:00
|
|
|
}
|
|
|
|
});
|