Переглянути джерело

rn: fix streaming key input color

master
Bettenbuk Zoltan 6 роки тому
джерело
коміт
1e346f10ab

+ 4
- 1
react/features/recording/components/LiveStream/native/StreamKeyForm.js Переглянути файл

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

+ 3
- 2
react/features/recording/components/LiveStream/native/styles.js Переглянути файл

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

Завантаження…
Відмінити
Зберегти