mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
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:
parent
ded4323544
commit
d2ba4cd346
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user