mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
SDA-4145 Proxy auth dialog css fix (#1838)
* Proxy auth dialog css fix * Browser login logs
This commit is contained in:
parent
c95c6e2f0d
commit
4e4f772977
@ -710,5 +710,10 @@ const loadPodUrl = (proxyLogin = false) => {
|
|||||||
);
|
);
|
||||||
proxyDetails.retries += 1;
|
proxyDetails.retries += 1;
|
||||||
}
|
}
|
||||||
|
logger.error(
|
||||||
|
'main-api-handler: browser login error. Details: ',
|
||||||
|
error.type,
|
||||||
|
error.code,
|
||||||
|
);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -56,9 +56,6 @@ export default class Welcome extends React.Component<{}, IState> {
|
|||||||
<span className='Welcome-welcome-back'>
|
<span className='Welcome-welcome-back'>
|
||||||
{i18n.t('Welcome back!', WELCOME_NAMESPACE)()}
|
{i18n.t('Welcome back!', WELCOME_NAMESPACE)()}
|
||||||
</span>
|
</span>
|
||||||
<span className='Welcome-login-label'>
|
|
||||||
{i18n.t('Please login to continue', WELCOME_NAMESPACE)()}
|
|
||||||
</span>
|
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
)}
|
)}
|
||||||
{!isPodConfigured && (
|
{!isPodConfigured && (
|
||||||
@ -276,7 +273,7 @@ export default class Welcome extends React.Component<{}, IState> {
|
|||||||
className={loginButtonClasses}
|
className={loginButtonClasses}
|
||||||
disabled={(!isPodConfigured && !urlValid) || isLoading}
|
disabled={(!isPodConfigured && !urlValid) || isLoading}
|
||||||
onClick={this.eventHandlers.onLogin}
|
onClick={this.eventHandlers.onLogin}
|
||||||
style={isPodConfigured ? { marginTop: '40px' } : {}}
|
style={isPodConfigured ? { marginTop: '24px' } : {}}
|
||||||
>
|
>
|
||||||
{isLoading && (
|
{isLoading && (
|
||||||
<div className='splash-screen--spinner-container'>
|
<div className='splash-screen--spinner-container'>
|
||||||
|
@ -65,6 +65,7 @@ table {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
|
max-width: 235px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -286,14 +286,9 @@ body {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
&-welcome-back {
|
&-welcome-back {
|
||||||
font-size: 14px;
|
|
||||||
color: @graphite-05;
|
|
||||||
margin-top: 40px;
|
|
||||||
}
|
|
||||||
&-login-label {
|
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
color: @graphite-05;
|
color: @graphite-05;
|
||||||
margin-top: 13px;
|
margin-top: 40px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -380,12 +375,14 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.switch {
|
.switch {
|
||||||
margin: auto;
|
margin: auto 0;
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
position: relative;
|
position: relative;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 43px;
|
width: 38px;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
flex-grow: 0;
|
||||||
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Hide default HTML checkbox */
|
/* Hide default HTML checkbox */
|
||||||
|
Loading…
Reference in New Issue
Block a user