标签: oracle-apex oracle-apex-5.1
我想根据:P4_COLOR项目的值设置区域标题的强调色/背景色。例如,如果为:P4_COLOR = blue,则实际区域标题的重音必须为蓝色(即u-color-1)。
:P4_COLOR
:P4_COLOR = blue
u-color-1
我尝试在backgroud-color标记内使用html h1,例如:
backgroud-color
h1
<h1 style="background-color:&P4_COLOR.;">Title name</h1>
有什么想法吗?
答案 0 :(得分:1)
以下JavaScript将与模板选项相同
$('#region_static_id').addClass('t-Region--accent1')
或者使用颜色修改器
$('#region_static_id .t-Region-header').addClass('u-color-9-bg')
或者您可以在该区域的Appearance-CSS类中将重音作为替换字符串提供。