Browse Source

rn: fix streaming key input color

master
Bettenbuk Zoltan 6 years ago
parent
commit
1e346f10ab

+ 4
- 1
react/features/recording/components/LiveStream/native/StreamKeyForm.js View File

66
                     onChangeText = { this._onInputChange }
66
                     onChangeText = { this._onInputChange }
67
                     placeholder = { t('liveStreaming.enterStreamKey') }
67
                     placeholder = { t('liveStreaming.enterStreamKey') }
68
                     placeholderTextColor = { PLACEHOLDER_COLOR }
68
                     placeholderTextColor = { PLACEHOLDER_COLOR }
69
-                    style = { styles.streamKeyInput }
69
+                    style = { [
70
+                        _dialogStyles.text,
71
+                        styles.streamKeyInput
72
+                    ] }
70
                     value = { this.props.value } />
73
                     value = { this.props.value } />
71
                 <View style = { styles.formFooter }>
74
                 <View style = { styles.formFooter }>
72
                     {
75
                     {

+ 3
- 2
react/features/recording/components/LiveStream/native/styles.js View File

90
         alignSelf: 'stretch',
90
         alignSelf: 'stretch',
91
         borderColor: ColorPalette.lightGrey,
91
         borderColor: ColorPalette.lightGrey,
92
         borderBottomWidth: 1,
92
         borderBottomWidth: 1,
93
-        color: ColorPalette.white,
93
+        fontSize: 14,
94
         height: 40,
94
         height: 40,
95
-        marginBottom: 5
95
+        marginBottom: 5,
96
+        textAlign: 'left'
96
     },
97
     },
97
 
98
 
98
     /**
99
     /**

Loading…
Cancel
Save