2020-07-06 01:00:06 +00:00
|
|
|
.title-bar {
|
|
|
|
-webkit-app-region: drag;
|
|
|
|
margin: 0;
|
|
|
|
display: flex;
|
2022-02-24 02:35:58 +00:00
|
|
|
background-color: #202225;
|
|
|
|
color: #ffffff;
|
2020-07-06 01:00:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.app-name-container {
|
2022-02-24 02:35:58 +00:00
|
|
|
flex: 1;
|
|
|
|
color: #ffffff;
|
2020-07-06 01:00:06 +00:00
|
|
|
display: flex;
|
2020-07-09 03:23:17 +00:00
|
|
|
justify-content: left;
|
2022-02-24 02:35:58 +00:00
|
|
|
align-items: center;
|
2020-07-09 03:23:17 +00:00
|
|
|
padding-left: 20px;
|
2020-07-06 01:00:06 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 02:35:58 +00:00
|
|
|
.menu-button-container,
|
2020-07-06 01:00:06 +00:00
|
|
|
.window-controls-container {
|
2022-02-24 02:35:58 +00:00
|
|
|
color: #dcddde;
|
2020-07-06 01:00:06 +00:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-button {
|
|
|
|
-webkit-app-region: no-drag;
|
2022-02-24 02:35:58 +00:00
|
|
|
width: 28px;
|
2020-07-09 03:23:17 +00:00
|
|
|
height: 24px;
|
2022-02-24 02:35:58 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
2020-07-06 01:00:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu-button:hover {
|
2022-02-24 02:35:58 +00:00
|
|
|
background-color: #677bc4;
|
|
|
|
color: #ffffff;
|
2020-07-06 01:00:06 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 02:35:58 +00:00
|
|
|
.menu-button.close-button:hover {
|
|
|
|
background-color: #f04747;
|
|
|
|
color: #ffffff;
|
2020-07-06 01:00:06 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 02:35:58 +00:00
|
|
|
.menu-button > svg {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
2020-07-06 01:00:06 +00:00
|
|
|
}
|
|
|
|
|