Obsidian 插件样式:修改 note toolbar 插件布局像 cmenu 那样显示
Note Toolbar 它可以为不同的文件夹配置不同的工具栏,并能够在文件夹之间自适应切换,而且可以非常方便的编辑工具栏按钮。
可以用下面的样式定制 Note Toolbar 布局以模拟 Cmenu 显示
样式设置
您可以将 Note Toolbar 的显示样式更改为类似于 Cmenu 插件的样式。这种设置仅在工具栏名称中包含“cmenu”时生效。
- 将工具栏的位置设置为“置顶(固定位置)”, 样式只保留显示边框,其他设置保持默认,如下图所示。
- 注意:目前,该设置暂不支持移动端,因此建议在移动设备上隐藏此工具栏。
自带的分割符和行号符可以正常运行
CSS 样式
对应的 Style Setting 设置有如下:
cmenu 对齐方式:flex-start、flex-end、space-around、space-between、space-evenly
图片来自《深入解析 CSS》P138 5.4.1 理解弹性容器的属性
/* @settings
name: Note Toolbar 仿 cMenu 的菜单栏
id: Note Toolbar 仿 cMenu 的菜单栏
settings:
-
id: cmenu-note-toolbar-width
title: cmenu宽度
type: variable-number
default: 460
format: px
-
id: cmenu-flex-just-content
title: cmenu对齐方式
description:
type: variable-select
default: flex-start
options:
- flex-start
- flex-end
- space-around
- space-between
- space-evenly
*/
body {
--cmenu-note-toolbar-width: 460px;
--cmenu-flex-justily-content: flex-start;
}
/* note toolbar 像 cmenu那样显示 */
div[data-name *="cmenu"] {
z-index: var(--layer-status-bar);
position: absolute;
bottom: 60px;
width: 100% !important;
pointer-events: none !important;
display: flex;
justify-content: center !important;
background-color: transparent !important;
div.callout, .callout-content {
background-color: transparent !important;
border: 0 !important;
margin: 0 !important;
opacity: 1 !important;
/* width: fit-content;
height: fit-content; */
}
ul[role="menu"] {
pointer-events: auto !important;
width: fit-content;
max-width: var(--cmenu-note-toolbar-width);
/* display: grid !important;
grid-template-columns: repeat(10, minmax(0, 1fr)); */
display: flex;
flex-flow: row wrap;
justify-content: var(--cmenu-flex-just-content);
gap: 8px 5px !important;
padding: 10px !important;
transition: 200ms ease;
height: auto;
border-radius: 6px;
z-index: var(--layer-status-bar);
box-shadow: 0px 3px 30px rgb(31 38 135 / 15%);
margin: 33px !important;
border: 1px solid var(--background-modifier-border);
/* 添加毛玻璃效果 */
backdrop-filter: blur(10px);
/* background-color: rgba(255, 255, 255, 0.1) !important; */
background-color: transparent;
li {
border-radius: 6px;
background-color: var(--background-secondary);
&>span {
width: 40px;
display: flex;
align-items: center;
justify-content: center;
padding: 6px !important;
svg {
transform: scale(1.2);
}
}
.cg-note-toolbar-item-label {
display: none;
}
}
}
}
讨论
若阁下有独到的见解或新颖的想法,诚邀您在文章下方留言,与大家共同探讨。
反馈交流
其他渠道
版权声明
版权声明:所有 PKMer 文章如果需要转载,请附上原文出处链接。