From d2ba4cd346cb96d508eba5158df71e247dd55675 Mon Sep 17 00:00:00 2001 From: TorchAtlas <12666855+torchatlas@users.noreply.github.com> Date: Thu, 2 Jul 2020 10:33:46 -0400 Subject: [PATCH] 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 --- resources/user.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/resources/user.css b/resources/user.css index 4b6b028..2a28bde 100644 --- a/resources/user.css +++ b/resources/user.css @@ -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;