notion-enhancer/resources/user.css
TorchAtlas d2ba4cd346 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
2020-07-02 10:33:46 -04:00

116 lines
2.6 KiB
CSS
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* notion-enhancer
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com>
* (c) 2020 TarasokUA
* (https://dragonwocky.me/) under the MIT license
*/
/* titlebar */
.notion-topbar {
height: 55px !important;
}
.window-dragarea {
height: 10px;
width: 100%;
}
.notion-light-theme .window-dragarea {
background: #e6e6e6;
}
.notion-dark-theme .window-dragarea {
background: #272d2f;
}
.window-buttons-area {
display: flex;
align-items: center;
font-size: 14px;
}
@media (max-width: 760px) {
.notion-topbar {
height: 95px !important;
}
.notion-topbar > :nth-child(2) {
display: grid !important;
height: 85px !important;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.window-buttons-area {
grid-row: 1;
grid-column: 9 / span end;
justify-content: flex-end;
}
.notion-topbar-breadcrumb {
grid-row: 2;
grid-column: 1 / span 8;
}
.notion-topbar-actions {
grid-row: 2;
grid-column: 9 / span end;
justify-content: flex-end;
}
}
/* window control buttons */
.window-button {
background: transparent;
border: 0;
margin: 0px 0px 0px 9px;
width: 32px;
line-height: 26px;
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;
}
.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;
}
/* scrollbar: size */
::-webkit-scrollbar {
width: 8px; /* for vertical */
height: 8px; /* for horizontal */
}
/* scrollbar: light theme */
.notion-light-theme ::-webkit-scrollbar-corner {
background-color: transparent; /* for overlap */
}
.notion-light-theme ::-webkit-scrollbar-thumb {
border-radius: 5px;
background-color: #d9d8d6;
border: 1px solid #cacac8;
}
.notion-light-theme ::-webkit-scrollbar-thumb:hover {
background: #cacac8;
}
/* scrollbar: dark theme */
.notion-dark-theme ::-webkit-scrollbar-corner {
background-color: transparent; /* for overlap */
}
.notion-dark-theme ::-webkit-scrollbar-thumb {
border-radius: 5px;
background-color: #505457;
}
.notion-dark-theme ::-webkit-scrollbar-thumb:hover {
background: #696d6f;
}