- 优化财务仪表板数据展示 - 增强账户管理功能 - 改进预算和分类管理 - 完善报表和统计分析 - 优化交易管理界面 - 更新Workspace工作区 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
486 B
CSS
17 lines
486 B
CSS
/* Hide FinWise Pro parent menu and move children */
|
|
.vben-sub-menu:has(
|
|
.vben-sub-menu-content__title:is(:contains('FinWise Pro'), :contains('💎'))
|
|
) {
|
|
display: none !important;
|
|
}
|
|
|
|
/* Alternative approach using attribute selector if :contains doesn't work */
|
|
.vben-sub-menu .vben-sub-menu-content__title {
|
|
/* We'll use JavaScript to add a data attribute to the parent */
|
|
}
|
|
|
|
/* Mark submenu for hiding */
|
|
.vben-sub-menu[data-hide-finwise='true'] {
|
|
display: none !important;
|
|
}
|