mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 05:29:02 +00:00
162 lines
2.8 KiB
CSS
162 lines
2.8 KiB
CSS
/**
|
|
* notion-enhancer: tabs
|
|
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (https://notion-enhancer.github.io/) under the MIT license
|
|
*/
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: var(--theme--bg) !important;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
background: var(--theme--bg_secondary);
|
|
width: 100%;
|
|
padding: 8px;
|
|
user-select: none;
|
|
-webkit-app-region: drag;
|
|
z-index: 3;
|
|
}
|
|
|
|
#tabs {
|
|
display: flex;
|
|
margin-bottom: -8px;
|
|
overflow: hidden;
|
|
}
|
|
.tab {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
width: 14em;
|
|
max-width: 14em;
|
|
overflow: hidden;
|
|
padding: 6.4px 9.6px 6.4px 9.6px;
|
|
|
|
color: var(--theme--text_secondary);
|
|
background: var(--theme--bg);
|
|
font-family: var(--theme--font_sans);
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
border: none;
|
|
border-bottom: 3px solid var(--theme--ui_divider);
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
.tab .tab-icon {
|
|
font-size: 14px;
|
|
margin-right: 6px;
|
|
}
|
|
.tab .tab-icon[style*='background'] {
|
|
width: 14px;
|
|
height: 14px;
|
|
align-self: center;
|
|
margin-right: 8px;
|
|
}
|
|
.tab .tab-title {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.tab:hover {
|
|
background: var(--theme--ui_interactive-hover);
|
|
}
|
|
.tab.current {
|
|
background: var(--theme--ui_interactive-active);
|
|
}
|
|
|
|
#tabs.dragged-over {
|
|
box-shadow: 2px 0 0 0 var(--theme--accent_blue-selection);
|
|
}
|
|
.tab.dragged-over {
|
|
box-shadow: inset 2px 0 0 0 var(--theme--accent_blue-selection);
|
|
}
|
|
|
|
.new-tab,
|
|
.tab-close {
|
|
transition: background 20ms ease-in 0s;
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
border-radius: 3px;
|
|
height: 20px;
|
|
width: 20px;
|
|
padding: 0 0.25px 0 0;
|
|
|
|
border: none;
|
|
background: transparent;
|
|
font-size: 14px;
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
.new-tab svg,
|
|
.tab-close svg {
|
|
width: 14px;
|
|
height: 14px;
|
|
fill: var(--theme--icon_secondary);
|
|
color: var(--theme--icon_secondary);
|
|
}
|
|
.new-tab:focus,
|
|
.new-tab:hover,
|
|
.tab-close:focus,
|
|
.tab-close:hover {
|
|
background: var(--theme--ui_interactive-hover);
|
|
}
|
|
.new-tab:active,
|
|
.tab-close:active {
|
|
background: var(--theme--ui_interactive-active);
|
|
}
|
|
|
|
.new-tab {
|
|
align-self: center;
|
|
margin: 0 48px -4px 6px;
|
|
}
|
|
.tab-close {
|
|
margin-left: auto;
|
|
}
|
|
|
|
#window-actions {
|
|
margin-left: auto;
|
|
}
|
|
#window-actions > * {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
#root {
|
|
flex-grow: 1;
|
|
}
|
|
.notion-webview {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: none;
|
|
}
|
|
.search-webview {
|
|
width: 100%;
|
|
height: 60px;
|
|
display: none;
|
|
transition: transform 70ms ease-in;
|
|
transform: translateY(-100%);
|
|
pointer-events: none;
|
|
position: absolute;
|
|
z-index: 2;
|
|
}
|
|
.search-webview.search-active {
|
|
transition: transform 70ms ease-out;
|
|
transform: translateY(0%);
|
|
pointer-events: auto;
|
|
}
|