1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00
This commit is contained in:
Laurent Cozic 2017-07-27 18:34:43 +01:00
parent bd06fa781e
commit d62aca7f50
5 changed files with 8 additions and 8 deletions

View File

@ -8,7 +8,7 @@ const globalStyle = {
selectedColor: '#e5e5e5',
disabledOpacity: 0.3,
raisedBackgroundColor: "#0072D5",
raisedBackgroundColor: "#0080EF",
raisedColor: "#003363",
raisedHighlightedColor: "#ffffff",

View File

@ -54,17 +54,17 @@ let styleObject = {
paddingRight: 15,
marginRight: 10,
borderWidth: 1,
borderColor: globalStyle.color,
borderRadius: 10,
borderColor: globalStyle.raisedHighlightedColor,
borderRadius: 4,
},
saveButtonText: {
textAlignVertical: 'center',
color: globalStyle.color,
color: globalStyle.raisedHighlightedColor,
fontWeight: 'bold',
},
saveButtonIcon: {
fontSize: 20,
color: globalStyle.color,
color: globalStyle.raisedHighlightedColor,
marginRight: 5,
},
contextMenuTrigger: {

View File

@ -63,7 +63,7 @@ class LogScreenComponent extends BaseScreenComponent {
renderRow={renderRow}
enableEmptySections={true}
/>
<Button title="Refresh" onPress={() => { this.resfreshLogEntries(); }}/>
<Button title={_("Refresh")} onPress={() => { this.resfreshLogEntries(); }}/>
</View>
);
}

View File

@ -94,7 +94,7 @@ class OneDriveLoginScreenComponent extends BaseScreenComponent {
onNavigationStateChange={(o) => { this.webview_load(o); }}
onError={(error) => { this.webview_error(error); }}
/>
<Button title="Retry" onPress={() => { this.retryButton_click(); }}></Button>
<Button title={_("Refresh")} onPress={() => { this.retryButton_click(); }}></Button>
</View>
);
}

View File

@ -81,7 +81,7 @@ class StatusScreenComponent extends BaseScreenComponent {
<View style={styles.body}>
{ body }
</View>
<Button title="Refresh" onPress={() => this.resfreshScreen()}/>
<Button title={_("Refresh")} onPress={() => this.resfreshScreen()}/>
</View>
);
}