mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-22 08:57:00 -06:00
ELECTRON-1346 - Fix notification fonts and safety checks for setAboutPanel (#734)
This commit is contained in:
parent
2d958cc75f
commit
54994590b5
@ -71,7 +71,9 @@ const startApplication = async () => {
|
||||
await app.whenReady();
|
||||
versionHandler.getClientVersion()
|
||||
.then((versionInfo: IVersionInfo) => {
|
||||
setAboutPanel(versionInfo.clientVersion, versionInfo.buildNumber);
|
||||
if (isMac) {
|
||||
setAboutPanel(versionInfo.clientVersion, versionInfo.buildNumber);
|
||||
}
|
||||
});
|
||||
logger.info(`main: app is ready, performing initial checks`);
|
||||
createAppCacheFile();
|
||||
|
@ -13,7 +13,7 @@ body {
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
-webkit-user-select: none;
|
||||
font-family: @font-family;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
.container {
|
||||
@ -61,7 +61,7 @@ body {
|
||||
}
|
||||
|
||||
.title {
|
||||
font-family: @font-family;
|
||||
font-family: sans-serif;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
color: var(--text-color);
|
||||
@ -72,9 +72,10 @@ body {
|
||||
}
|
||||
|
||||
.company {
|
||||
font-family: @font-family;
|
||||
font-family: sans-serif;
|
||||
font-size: 11px;
|
||||
overflow: hidden;
|
||||
color: #adadad;
|
||||
filter: brightness(70%);
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 1;
|
||||
@ -82,7 +83,7 @@ body {
|
||||
}
|
||||
|
||||
.message {
|
||||
font-family: @font-family;
|
||||
font-family: sans-serif;
|
||||
width: 100%;
|
||||
overflow-wrap: break-word;
|
||||
font-size: 12px;
|
||||
|
Loading…
Reference in New Issue
Block a user