obsidian外观
Obsidian 样式 - 更小的标签页标题栏
插件ID:obsidian%E6%A0%B7%E5%BC%8F-%E6%9B%B4%E5%B0%8F%E7%9A%84%E6%A0%87%E7%AD%BE%E9%A1%B5%E6%A0%87%E9%A2%98%E6%A0%8F
obsidian%E6%A0%B7%E5%BC%8F-%E6%9B%B4%E5%B0%8F%E7%9A%84%E6%A0%87%E7%AD%BE%E9%A1%B5%E6%A0%87%E9%A2%98%E6%A0%8F
obsidian%E6%A0%B7%E5%BC%8F %E6%9B%B4%E5%B0%8F%E7%9A%84%E6%A0%87%E7%AD%BE%E9%A1%B5%E6%A0%87%E9%A2%98%E6%A0%8F:Obsidian 样式 - 更小的标签页标题栏
Obsidian 样式 - 更小的标签页标题栏
标签页标题栏是指标签页下方的那段标题栏
提供两种美化方式(css 代码来自https://github.com/replete/obsidian-minimal-theme-css-snippets)
样式一
/*
Floating Tab Header
With inline title enabled, it seems a waste to take up vertical space of the 'view header'
especially if you don't use the back/forward buttons or the breadcrumb, so this minifies
that interface into a float right toolbar.
https://github.com/replete/obsidian-minimal-theme-css-snippets
*/
/* Floating tab header styles */
.view-header {
background:transparent !important;
border:none;
position:fixed;
top:8px;
right:10px;
right: calc(var(--scrollbar-size) + 8px);
padding: 5px 5px;
justify-content:end;
border-radius: 8px;
/* border:1px solid hsla(var(--base-h), var(--base-s), var(--base-l), 1); */
border:1px solid transparent;
height:auto;
z-index:500; /* Fixes in excalidraw */
}
.view-header:hover,
.view-header:focus-within {
border:1px solid var(--divider-color);
box-shadow: -2px 2px 6px -2px var(--divider-color);
background-color: var(--background-primary) !important;
}
/* Show/hide nav + breadcrumb interaction */
.view-header-nav-buttons,
.view-header-title-container,
.view-header .cmdr-adder {
opacity:0;
display:none;
}
.view-header:hover :is(.view-header-nav-buttons, .view-header-title-container),
.view-header:focus-within :is(.view-header-nav-buttons, .view-header-title-container){
opacity:1;
display:flex
}
/* Tweak commander '+' icon */
.view-header:hover .cmdr-adder,
.view-header:focus-within .cmdr-adder {
opacity:0.4;
display:flex;
}
/* Excalidraw fix */
[data-type="excalidraw"] .view-header .clickable-icon:not(:last-of-type){
display:none;
opacity:0;
}
[data-type="excalidraw"] .view-header:hover .clickable-icon:not(.view-header-icon) {
display:flex;
opacity:1;
}
样式二
/*
Floating Tab Header Mini
With inline title enabled, it seems a waste to take up vertical space of the 'view header'
especially if you don't use the back/forward buttons or the breadcrumb, so this minifies
that interface into a float right toolbar.
https://github.com/replete/obsidian-minimal-theme-css-snippets
*/
/* Floating tab header styles */
.view-header {
background:transparent !important;
border:none;
position:fixed;
top:8px;
right:10px;
right: calc(var(--scrollbar-size) + 8px);
padding: 5px 5px;
justify-content:end;
border-radius: 8px;
/* border:1px solid hsla(var(--base-h), var(--base-s), var(--base-l), 1); */
border:1px solid transparent;
height:auto;
z-index:500; /* Fixes in excalidraw */
}
.view-header:hover,
.view-header:focus-within {
border:1px solid var(--divider-color);
box-shadow: -2px 2px 6px -2px var(--divider-color);
background-color: var(--background-primary) !important;
}
/* Show/hide nav + breadcrumb interaction */
.view-header-nav-buttons,
.view-header-title-container,
.view-header .cmdr-adder,
.view-header .clickable-icon:not(:last-child) {
opacity:0;
display:none;
}
.view-header:hover :is(.view-header-nav-buttons, .view-header-title-container),
.view-header:focus-within :is(.view-header-nav-buttons, .view-header-title-container),
.view-header:is(:hover) .clickable-icon:not(.view-header-icon){
opacity:1;
display:flex
}
/* Tweak commander '+' icon */
.view-header:hover .cmdr-adder,
.view-header:focus-within .cmdr-adder {
opacity:0.4;
display:flex;
}
/* Excalidraw fix */
[data-type="excalidraw"] .view-header .clickable-icon:not(:last-of-type){
display:none;
opacity:0;
}
[data-type="excalidraw"] .view-header:hover .clickable-icon:not(.view-header-icon) {
display:flex;
opacity:1;
}
讨论
若阁下有独到的见解或新颖的想法,诚邀您在文章下方留言,与大家共同探讨。
反馈交流
其他渠道
版权声明
版权声明:所有 PKMer 文章如果需要转载,请附上原文出处链接。