You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-16 00:14:34 +02:00
Styling
This commit is contained in:
@ -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",
|
||||||
|
|
||||||
|
@ -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: {
|
||||||
|
@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user