diff --git a/react/features/base/ui/components/native/buttonStyles.ts b/react/features/base/ui/components/native/buttonStyles.ts index d137a8526..18a3e6eb6 100644 --- a/react/features/base/ui/components/native/buttonStyles.ts +++ b/react/features/base/ui/components/native/buttonStyles.ts @@ -40,7 +40,7 @@ export default { buttonLabelSecondary: { ...buttonLabel, - color: BaseTheme.palette.text0 + color: BaseTheme.palette.text04 }, buttonLabelDestructive: { diff --git a/react/features/base/ui/components/native/inputStyles.ts b/react/features/base/ui/components/native/inputStyles.ts index ff69eca05..3d3a4ac3d 100644 --- a/react/features/base/ui/components/native/inputStyles.ts +++ b/react/features/base/ui/components/native/inputStyles.ts @@ -26,16 +26,14 @@ export default { }, input: { - backgroundColor: BaseTheme.palette.ui03, - color: BaseTheme.palette.text01, - paddingVertical: 13, - paddingHorizontal: BaseTheme.spacing[3], - borderRadius: BaseTheme.shape.borderRadius, ...BaseTheme.typography.bodyShortRegularLarge, - lineHeight: 0, - height: 48, + backgroundColor: BaseTheme.palette.ui03, + borderColor: BaseTheme.palette.ui03, + borderRadius: BaseTheme.shape.borderRadius, borderWidth: 2, - borderColor: BaseTheme.palette.ui03 + color: BaseTheme.palette.text01, + paddingHorizontal: BaseTheme.spacing[3], + height: 48 }, inputDisabled: { diff --git a/react/features/participants-pane/components/native/MeetingParticipantList.js b/react/features/participants-pane/components/native/MeetingParticipantList.js index 689570f0e..3d0cddb5c 100644 --- a/react/features/participants-pane/components/native/MeetingParticipantList.js +++ b/react/features/participants-pane/components/native/MeetingParticipantList.js @@ -236,7 +236,8 @@ class MeetingParticipantList extends PureComponent { } { if (showElement) { if (typeof _locked === 'undefined') { return ( - ); diff --git a/react/features/security/components/security-dialog/native/styles.js b/react/features/security/components/security-dialog/native/styles.js index 1bc9cbe40..84263e2a0 100644 --- a/react/features/security/components/security-dialog/native/styles.js +++ b/react/features/security/components/security-dialog/native/styles.js @@ -61,7 +61,7 @@ export default { savedPasswordContainer: { flexDirection: 'row', - marginTop: 30, + marginTop: 14, width: 208 }, @@ -75,19 +75,13 @@ export default { }, passwordInput: { - borderColor: BaseTheme.palette.action03Active, - borderRadius: BaseTheme.spacing[1], - borderWidth: 2, color: BaseTheme.palette.text01, - height: BaseTheme.spacing[6], - marginTop: BaseTheme.spacing[2], - paddingLeft: BaseTheme.spacing[1], width: 208 }, passwordSetupButtonLabel: { color: BaseTheme.palette.link01, - marginTop: BaseTheme.spacing[4] + marginTop: BaseTheme.spacing[3] }, passwordSetRemotelyContainer: { @@ -98,11 +92,11 @@ export default { passwordSetRemotelyText: { color: BaseTheme.palette.text01, - marginTop: 22 + marginTop: BaseTheme.spacing[3] }, passwordSetRemotelyTextDisabled: { color: BaseTheme.palette.text02, - marginTop: 22 + marginTop: BaseTheme.spacing[3] } };