如何在工作区中编辑多个 Oracle Apex 应用程序的样式

发布于 2025-01-12 07:44:27 字数 372 浏览 0 评论 0原文

我想以更少的精力编辑工作区中多个应用程序的样式。我所说的“编辑样式”是指字体大小、背景颜色、位置等。

我的想法是在“静态工作空间文件”中使用我想要的类创建一个 CSS 文件,并将它们应用到所需的顶点项目。例如在一个区域中应用这个:

*.font16{
    font-size: 16px;
}

问题是:模态页面找不到文件,这在普通页面中不是问题。我在页面“CSS > 文件 URL”设置中使用路径“#WORKSPACE_IMAGES#styles.css”。

我不确定这是否是正确的方法,也许我应该编辑主题或模板,但由于我对 Apex 还很陌生,所以为了熟悉我选择了 CSS。

应用程序 Express v20.1

I want to edit the style of multiple applications inside my workspace with the less amout of effort. What I mean by "edit the style" is font size, background color, position, etc.

My idea was creating a CSS file at "Static Workspace Files" with the classes I want and applying them to the apex items needed. Applying this in a region for instance:

*.font16{
    font-size: 16px;
}

The problem is: modal pages can't find the file, which is not a problem in nomral pages. I'm using the path '#WORKSPACE_IMAGES#styles.css' in the page "CSS > File URLs" setting.

I'm not sure if this is the right approach, maybe I should edit Themes or Templates, but since I'm pretty new to Apex I chose CSS for familiarity.

Application Express v20.1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眸中客 2025-01-19 07:44:27

这就是静态工作空间文件的用途,即可以由同一工作空间中的多个应用程序使用的文件。
最简单的方法是创建一个 CSS,就像您所做的那样。
您不需要在每个页面中都包含该文件,这最终将成为维护的噩梦。
您可以简单地在应用程序级别包含该文件:
在共享组件中,进入用户界面属性并将文件包含在级联样式表下。
我通常有一个 global.css 文件(作为静态工作区文件)用于所有应用程序通用的内容,每个应用程序有一个 app.css 文件(作为静态应用程序文件)用于当前应用程序特定的内容。

screenshot

请注意,应用程序导出将包含静态应用程序文件,但不包含静态工作区文件。您需要自己导出/导入它们。

That's what Static Workspace Files are meant for, files that can be used by multiple applications in the same workspace.
The easiest approach for this is to create a CSS, like what you've done.
You don't need to inlcude the file in every single page, which would become a maintenance nightmare eventually.
You can simply include the file at the application level:
In Share Components, go in the User Interface Attributes and include the file under Cascading Style Sheets.
I usually have one global.css file (as a static workspace file) for anything common to all my apps and one app.css per application (as a static application file) for things specific to the current application.

screenshot

Note that application exports will contain the static application files, but they will not contain the static workspace files. You will need to export/import them yourself.

情域 2025-01-19 07:44:27

您尝试过主题滚轮吗?运行该页面,它位于开发人员工具栏中。

输入图片此处描述

Did you try Theme Roller? Run the page, it is down in developer's toolbar.

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文