Enhanced window control buttons - hover effect and cursor change

Close window control button now turns red when hovered over

Window control buttons no longer show a pointer cursor when hovered over - now uses default cursor, like other apps
This commit is contained in:
TorchAtlas 2020-07-02 10:33:46 -04:00
parent ded4323544
commit d2ba4cd346

View File

@ -58,7 +58,9 @@
border-radius: 4px;
font-size: 16px;
transition-duration: 0.2s;
cursor: default;
}
/* window control buttons: light theme */
.notion-light-theme .window-button {
font-weight: bold;
@ -66,11 +68,19 @@
.notion-light-theme .window-button:hover {
background: rgb(239, 239, 239);
}
/* window control buttons: dark theme */
.notion-dark-theme .window-button:hover {
background: rgb(71, 76, 80);
}
/* set close button to red on hover */
.btn-close:hover{
background: #E81123 !important;
color: white;
}
/* scrollbar: pointer */
.notion-scroller {
cursor: auto;