1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +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', selectedColor: '#e5e5e5',
disabledOpacity: 0.3, disabledOpacity: 0.3,
raisedBackgroundColor: "#0072D5", raisedBackgroundColor: "#0080EF",
raisedColor: "#003363", raisedColor: "#003363",
raisedHighlightedColor: "#ffffff", raisedHighlightedColor: "#ffffff",

View File

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

View File

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

View File

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

View File

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