Authored by chenl

调整了线描边。review by caomei。

... ... @@ -130,21 +130,21 @@ let styles = StyleSheet.create({
lineHeight: 22,
},
footContainer: {
width: rowWidth-20,
width: Platform.OS === 'ios' ? rowWidth-20 : rowWidth-16,
height: 18,
flexDirection: 'row',
alignItems: 'center',
},
clockImage: {
width: 12,
height: 12,
width: Platform.OS === 'ios' ? 12 : 9,
height: Platform.OS === 'ios' ? 12 : 9,
marginRight: 0,
},
eyeImage: {
width: 16,
height: 12,
width: Platform.OS === 'ios' ? 16 : 12,
height: Platform.OS === 'ios' ? 12 : 9,
marginRight: 0,
marginLeft: 10,
marginLeft: Platform.OS === 'ios' ? 10 : 7,
},
text: {
fontSize: 10,
... ...
... ... @@ -431,9 +431,6 @@ let styles = StyleSheet.create({
width: width,
height: 15,
backgroundColor: '#f0f0f0',
borderColor: '#e0e0e0',
borderTopWidth: 1,
borderBottomWidth: 1,
},
placeholder: {
width,
... ... @@ -470,9 +467,6 @@ let styles = StyleSheet.create({
marginLeft: -1,
width: width + 2,
height: 40,
borderTopColor: '#e5e5e5',
borderBottomColor: '#e5e5e5',
borderWidth: 0.5,
},
backToTopButton: {
position: 'absolute',
... ...
... ... @@ -98,8 +98,5 @@ let styles = StyleSheet.create({
width: width,
height: 15,
backgroundColor: '#f0f0f0',
borderColor: '#e0e0e0',
borderTopWidth: 1,
borderBottomWidth: 1,
},
});
... ...