royc01 / notion-theme

notion复刻
108 stars 10 forks source link

该主题是否有打算和任我行一样做个隐藏顶栏呢? #345

Closed winter60 closed 2 months ago

winter60 commented 2 months ago

隐藏顶栏个人比较喜欢,这是个人使用时觉得这两者最直观的不同。如果没打算,R佬方便提供个简单的代码片段吗?感谢❤️

royc01 commented 2 months ago

之前两个都有,后面Savor用合并顶栏代替了,可以用之前版本的代码片段。

.toolbar{ height:38px; margin:7px 7px -38px 7px; opacity: 0; transition: all 300ms; transform:translateY(-32px); z-index:99; transition-delay: 500ms; border-radius:8px; box-shadow: 0 4px 9px rgba(0,0,0,.05), 0 1.5px 2.8px rgba(0,0,0,.07), 0 0.3px 0.7px rgba(0,0,0,.12); }

.toolbar:hover{ opacity: 1; transform:translateY(0px); transition: all 300ms; }

.layout-tab-bar { margin-right:0!important; margin-left:0!important; }

drag{

height:32px;
margin-bottom: 0px;

}

.fnflex-column.fnflex-shrink,.layoutcenter+.layoutresize--lr+.fn__flex-column{ padding-top:0px; }

toolbar+.fn__flex-1{

margin-top: -7px;

}

winter60 commented 2 months ago

厉害!谢啦!