discord-sandboxed/views/css/titlebar.css

49 lines
777 B
CSS
Raw Normal View History

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