This repository was archived by the owner on Feb 21, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +5
-23
lines changed Expand file tree Collapse file tree 4 files changed +5
-23
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ const styles = {
72
72
width : 0 ,
73
73
height : 3 ,
74
74
} ,
75
- shadowColor : '#CF5425 ' ,
75
+ shadowColor : '#282C34 ' ,
76
76
shadowOpacity : 0.4 ,
77
77
shadowRadius : 6 ,
78
78
} ,
Original file line number Diff line number Diff line change @@ -70,29 +70,14 @@ const styles = {
70
70
fontSize : 21 ,
71
71
marginRight : 20
72
72
} ,
73
- noteListIconWrap : {
74
- backgroundColor : '#eeeeee' ,
75
- display : 'flex' ,
76
- alignItems : 'center' ,
77
- justifyContent : 'center' ,
78
- width : 30 ,
79
- height : 30 ,
80
- borderRadius : 50 ,
81
- overflow : 'hidden' ,
82
- marginTop : 9
83
- } ,
84
- noteListIcon : {
85
- fontSize : 14 ,
86
- color : '#adadad'
87
- } ,
88
73
noteListText : {
89
74
position : 'absolute' ,
90
75
color : '#3a3941' ,
91
76
backgroundColor : 'transparent' ,
92
77
top : 15 ,
93
78
fontSize : 14 ,
94
79
width : '73%' ,
95
- marginLeft : 40
80
+ marginLeft : 10
96
81
} ,
97
82
noteListTextNone : {
98
83
position : 'absolute' ,
@@ -531,9 +516,6 @@ export default class DropboxNoteList extends Component {
531
516
key = { note . fileName }
532
517
button onPress = { ( ) => this . setNoteModalOpen ( note . path ) } >
533
518
< Body >
534
- < View style = { styles . noteListIconWrap } >
535
- < Icon name = 'md-code-working' style = { styles . noteListIcon } />
536
- </ View >
537
519
< Text numberOfLines = { 1 }
538
520
style = { styles . noteListText } > { note . content } </ Text >
539
521
< Text style = { styles . noteListDate } > { moment ( note . updatedAt ) . format ( 'MMM D' ) } </ Text >
Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ export default class DropboxNoteModal extends React.Component {
310
310
style = { styles . switchEditButton }
311
311
onPress = { this . handleSwitchEditButtonClick . bind ( this ) } >
312
312
< Text style = { styles . switchEditText } >
313
- { this . state . isEditting ? 'Done ' : 'Edit' }
313
+ { this . state . isEditting ? 'Save ' : 'Edit' }
314
314
</ Text >
315
315
</ Button >
316
316
< Button transparent onPress = { ( ) => ActionSheet . show (
@@ -330,7 +330,7 @@ export default class DropboxNoteModal extends React.Component {
330
330
}
331
331
}
332
332
) } >
333
- < Text > < Icon name = 'md -more' style = { styles . noteDetailButton } /> </ Text >
333
+ < Text > < Icon name = 'ios -more' style = { styles . noteDetailButton } /> </ Text >
334
334
</ Button >
335
335
</ Root >
336
336
</ View >
Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ export default class NoteModal extends React.Component {
230
230
style = { styles . switchEditButton }
231
231
onPress = { this . handleSwitchEditButtonClick . bind ( this ) } >
232
232
< Text style = { styles . switchEditText } >
233
- { this . state . isEditting ? 'Done ' : 'Edit' }
233
+ { this . state . isEditting ? 'Save ' : 'Edit' }
234
234
</ Text >
235
235
</ Button >
236
236
< Button transparent onPress = { ( ) => ActionSheet . show (
You can’t perform that action at this time.
0 commit comments