灰儿 发表于 2023-9-23 11:23:27

nextcloud隐藏右上角联系人菜单(contactsmenu)方法

我通过安装“Custom CSS”插件可以实现自定义Nextcloud界面外观,“Custom CSS”插件地址如下:
https://apps.nextcloud.com/apps/theming_customcss


隐藏右上角联系人菜单(contactsmenu),即联系人图标,代码为:
#contactsmenu {
      display: none;
}
隐藏右上角工具栏中“通知”菜单,即小铃声图标。代码为:
.notifications {
    display: none;
}

隐藏右上角工具栏中“搜索”菜单,即放大镜图标。代码为:
#searchbox {
      display: none;
}
隐藏左侧菜单中的“文件设置”按钮,即齿轮图标。代码为:
#app-settings {
display: none;
}
相关链接:
https://help.nextcloud.com/t/theming-custom-css/20134
https://help.nextcloud.com/t/how ... enu-with-css/105322


页: [1]
查看完整版本: nextcloud隐藏右上角联系人菜单(contactsmenu)方法