Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Oracle APEX 中创建了选项卡容器
我想知道如何更改活动选项卡的颜色以通知用户当前选择了哪个选项卡。
谢谢
最简单的方法是打开 Theme Roller 并在 Custom CSS 选项卡中输入以下内容:
.t-Header .a-MenuBar-item.a-Menu--current, .t-Header .a-MenuBar-item.a-Menu--current.is-focused { background-color: #cacaca; }
或者,您可以将此 CSS 添加到页面 0 或将其添加到主题模板中,或将其写入您作为静态应用程序文件上传的 css 文件并在页面模板中引用该文件。