diff --git a/app/screens/settings/timezone/select_timezone/__snapshots__/select_timezone.test.js.snap b/app/screens/settings/timezone/select_timezone/__snapshots__/select_timezone.test.js.snap
index 19c22fa45..a11503c81 100644
--- a/app/screens/settings/timezone/select_timezone/__snapshots__/select_timezone.test.js.snap
+++ b/app/screens/settings/timezone/select_timezone/__snapshots__/select_timezone.test.js.snap
@@ -20,10 +20,8 @@ exports[`Settings SelectTimezone should match snapshot 1`] = `
@@ -39,8 +37,8 @@ exports[`Settings SelectTimezone should match snapshot 1`] = `
inputHeight={33}
inputStyle={
Object {
- "backgroundColor": "rgba(255,255,255,0.2)",
- "color": "#ffffff",
+ "backgroundColor": "rgba(63,67,80,0.2)",
+ "color": "#3f4350",
"fontSize": 15,
}
}
@@ -51,17 +49,17 @@ exports[`Settings SelectTimezone should match snapshot 1`] = `
onChangeText={[Function]}
onSelectionChange={[Function]}
placeholder="Search"
- placeholderTextColor="rgba(255,255,255,0.5)"
+ placeholderTextColor="rgba(63,67,80,0.5)"
returnKeyType="search"
searchBarRightMargin={0}
searchIconSize={24}
- selectionColor="rgba(255,255,255,0.5)"
+ selectionColor="rgba(63,67,80,0.5)"
showArrow={false}
showCancel={true}
testID="settings.select_timezone.search_bar"
- tintColorDelete="rgba(255,255,255,0.5)"
- tintColorSearch="rgba(255,255,255,0.5)"
- titleCancelColor="#ffffff"
+ tintColorDelete="rgba(63,67,80,0.5)"
+ tintColorSearch="rgba(63,67,80,0.5)"
+ titleCancelColor="#3f4350"
value=""
/>
diff --git a/app/screens/settings/timezone/select_timezone/select_timezone.js b/app/screens/settings/timezone/select_timezone/select_timezone.js
index 04ba8d6fa..e304fa08d 100644
--- a/app/screens/settings/timezone/select_timezone/select_timezone.js
+++ b/app/screens/settings/timezone/select_timezone/select_timezone.js
@@ -100,12 +100,6 @@ export default class Timezone extends PureComponent {
const {intl} = this.context;
const style = getStyleSheet(theme);
- const searchBarInput = {
- backgroundColor: changeOpacity(theme.sidebarHeaderTextColor, 0.2),
- color: theme.sidebarHeaderTextColor,
- fontSize: 15,
- };
-
return (
-
+
{
flex: 1,
backgroundColor: theme.centerChannelBg,
},
- header: {
- backgroundColor: theme.sidebarHeaderBg,
+
+ searchBarInput: {
+ backgroundColor: changeOpacity(theme.centerChannelColor, 0.2),
+ color: theme.centerChannelColor,
+ fontSize: 15,
+ },
+
+ searchBar: {
height: 38,
- width: '100%',
- ...Platform.select({
- android: {
- height: 46,
- justifyContent: 'center',
- },
- ios: {
- height: 44,
- paddingLeft: 8,
- },
- }),
+ marginVertical: 5,
},
};
});