mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
96 lines
2.3 KiB
CSS
96 lines
2.3 KiB
CSS
/*
|
|
* notion-enhancer
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com>
|
|
* (c) 2020 TarasokUA
|
|
* (https://dragonwocky.me/) under the MIT license
|
|
*/
|
|
|
|
.frameless .notion-topbar {
|
|
height: calc(var(--configured-dragarea_height, 10px) + 45px) !important;
|
|
}
|
|
.frameless .window-dragarea {
|
|
height: var(--configured-dragarea_height, 10px);
|
|
width: 100%;
|
|
}
|
|
.frameless .notion-dark-theme .window-dragarea {
|
|
background: var(--theme_dark-dragarea);
|
|
}
|
|
.frameless .notion-light-theme .window-dragarea {
|
|
background: var(--theme_light-dragarea);
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
.frameless .notion-topbar {
|
|
height: calc(var(--configured-dragarea_height, 10px) + 80px) !important;
|
|
}
|
|
.frameless .notion-topbar > :nth-child(2) {
|
|
height: 80px !important;
|
|
display: grid !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-buttons-area {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 14px;
|
|
}
|
|
.window-button {
|
|
background: transparent;
|
|
border: 0;
|
|
margin: 0px 0px 0px 9px;
|
|
width: 32px;
|
|
line-height: 26px;
|
|
border-radius: 4px;
|
|
font-size: 16px;
|
|
transition: background 0.2s;
|
|
cursor: default;
|
|
}
|
|
.window-button svg {
|
|
margin-top: 8px;
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
.window-button svg path {
|
|
fill: currentColor;
|
|
}
|
|
.window-button svg line {
|
|
stroke: currentColor;
|
|
}
|
|
|
|
.notion-dark-theme .window-button:hover {
|
|
background: var(--theme_dark-button_hover);
|
|
box-shadow: 0 0 0 0.5px var(--theme_dark-button_hover-border);
|
|
}
|
|
.notion-dark-theme .window-button.btn-close:hover {
|
|
background: var(--theme_dark-button_close);
|
|
}
|
|
.notion-dark-theme .window-button.btn-close:hover svg line {
|
|
stroke: var(--theme_dark-button_close-fill);
|
|
}
|
|
|
|
.notion-light-theme .window-button.btn-close:hover {
|
|
background: var(--theme_light-button_close);
|
|
}
|
|
.notion-light-theme .window-button.btn-close:hover svg line {
|
|
stroke: var(--theme_light-button_close-fill);
|
|
}
|
|
.notion-light-theme .window-button:hover {
|
|
background: var(--theme_light-button_hover);
|
|
box-shadow: 0 0 0 0.5px var(--theme_light-button_hover-border);
|
|
}
|