2019-07-09 02:54:32 +02:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
import { TITLE_OFFSET } from 'styles/pageHeader';
|
|
|
|
import Colors from './colors';
|
|
|
|
|
|
|
|
const uriBarStyle = StyleSheet.create({
|
|
|
|
uriContainer: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
backgroundColor: Colors.White,
|
|
|
|
padding: 8,
|
|
|
|
alignSelf: 'flex-start',
|
|
|
|
height: 60,
|
|
|
|
width: '100%',
|
|
|
|
shadowColor: Colors.Black,
|
|
|
|
shadowOpacity: 0.1,
|
|
|
|
shadowRadius: StyleSheet.hairlineWidth,
|
|
|
|
shadowOffset: {
|
|
|
|
height: StyleSheet.hairlineWidth,
|
|
|
|
},
|
2019-07-26 10:13:46 +02:00
|
|
|
},
|
|
|
|
containerElevated: {
|
2019-07-09 02:54:32 +02:00
|
|
|
elevation: 4,
|
|
|
|
},
|
2019-08-16 19:26:13 +02:00
|
|
|
drawerHamburger: {
|
|
|
|
marginLeft: 16,
|
|
|
|
marginRight: 16,
|
|
|
|
},
|
2019-07-09 02:54:32 +02:00
|
|
|
uriText: {
|
|
|
|
backgroundColor: Colors.VeryLightGrey,
|
|
|
|
borderRadius: 24,
|
|
|
|
paddingLeft: 12,
|
|
|
|
paddingRight: 12,
|
|
|
|
fontFamily: 'Inter-UI-Regular',
|
|
|
|
fontSize: 16,
|
|
|
|
lineHeight: 18,
|
|
|
|
flex: 17,
|
|
|
|
},
|
|
|
|
overlay: {
|
|
|
|
position: 'absolute',
|
|
|
|
backgroundColor: 'transparent',
|
|
|
|
top: 0,
|
|
|
|
width: '100%',
|
|
|
|
zIndex: 200,
|
2019-07-26 10:13:46 +02:00
|
|
|
},
|
|
|
|
overlayElevated: {
|
2019-07-09 02:54:32 +02:00
|
|
|
elevation: 16,
|
|
|
|
},
|
|
|
|
inFocus: {
|
|
|
|
height: '100%',
|
|
|
|
},
|
|
|
|
suggestions: {
|
|
|
|
backgroundColor: 'white',
|
|
|
|
flex: 1,
|
|
|
|
},
|
|
|
|
item: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center',
|
|
|
|
padding: 12,
|
|
|
|
paddingTop: 8,
|
|
|
|
paddingBottom: 8,
|
|
|
|
},
|
|
|
|
itemContent: {
|
|
|
|
marginLeft: 12,
|
|
|
|
marginRight: 12,
|
|
|
|
flex: 1,
|
|
|
|
},
|
|
|
|
itemText: {
|
|
|
|
fontFamily: 'Inter-UI-Regular',
|
|
|
|
fontSize: 16,
|
|
|
|
},
|
|
|
|
itemDesc: {
|
|
|
|
fontFamily: 'Inter-UI-Regular',
|
|
|
|
fontSize: 14,
|
|
|
|
color: Colors.UriDescBlue,
|
|
|
|
},
|
|
|
|
drawerMenuButton: {
|
|
|
|
height: '100%',
|
|
|
|
justifyContent: 'center',
|
|
|
|
flex: 3,
|
|
|
|
},
|
2019-08-16 19:26:13 +02:00
|
|
|
selectionModeBar: {
|
|
|
|
flex: 1,
|
|
|
|
height: 46,
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
},
|
|
|
|
selectionModeLeftBar: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center',
|
|
|
|
marginLeft: 16,
|
|
|
|
},
|
|
|
|
selectionModeActions: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center',
|
|
|
|
marginRight: 16,
|
|
|
|
},
|
|
|
|
backTouchArea: {
|
|
|
|
height: '100%',
|
|
|
|
alignItems: 'center',
|
|
|
|
},
|
2019-08-25 18:08:43 +02:00
|
|
|
leftAction: {
|
|
|
|
marginRight: 16,
|
|
|
|
},
|
2019-08-16 19:26:13 +02:00
|
|
|
actionTouchArea: {
|
|
|
|
height: '100%',
|
|
|
|
alignItems: 'center',
|
|
|
|
},
|
|
|
|
itemCount: {
|
|
|
|
fontFamily: 'Inter-UI-Regular',
|
|
|
|
fontSize: 20,
|
|
|
|
marginLeft: 30,
|
|
|
|
},
|
2019-07-09 02:54:32 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
export default uriBarStyle;
|