mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
Styling
This commit is contained in:
parent
bd06fa781e
commit
d62aca7f50
@ -8,7 +8,7 @@ const globalStyle = {
|
||||
selectedColor: '#e5e5e5',
|
||||
disabledOpacity: 0.3,
|
||||
|
||||
raisedBackgroundColor: "#0072D5",
|
||||
raisedBackgroundColor: "#0080EF",
|
||||
raisedColor: "#003363",
|
||||
raisedHighlightedColor: "#ffffff",
|
||||
|
||||
|
@ -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: {
|
||||
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user