外部 CSS 覆盖
我是 Flex 的新手。这是我的问题,
.css
s|Button,mx|Button
{
chrome-color: #CC0000;
cornerRadius: 3;
color: #CCCCCC;
border-thickness:1;
border-color:#000000;
}
mx|Accordion
{
chrome-color:#ffffff;
}
手风琴的镀铬颜色被设置为按钮的镀铬颜色。下拉列表的镀铬颜色也被设置为相同的.. 我试过了..
<mx:accordion chromeColor="#ffffff" />
它仍然是#CC0000... 当我删除 s|Button 时... 即,
mx|Button
{
chrome-color: #CC0000;
cornerRadius: 3;
color: #CCCCCC;
border-thickness:1;
border-color:#000000;
}
这很正常...我不想将所有更改为... 有帮助吗???
提前致谢
i'm a newbie to flex. here is my problem
.css
s|Button,mx|Button
{
chrome-color: #CC0000;
cornerRadius: 3;
color: #CCCCCC;
border-thickness:1;
border-color:#000000;
}
mx|Accordion
{
chrome-color:#ffffff;
}
the accordion's chrome color is being set to button's chrome color..also the dropdownlist's chrome color is being set to the same..
i tried..
<mx:accordion chromeColor="#ffffff" />
it is still #CC0000...
and when i remove s|Button...
i.e.,
mx|Button
{
chrome-color: #CC0000;
cornerRadius: 3;
color: #CCCCCC;
border-thickness:1;
border-color:#000000;
}
its normal...i don't want to change all the to ...
Any HELP???
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
mx 命名空间中的 Accordion 组件没有铬色样式。
仅当您应用 Spark 主题时,您可以使用 chromeColor 样式。 Spark 主题向 Accordion 容器添加了 chromeColor 样式。所以这是一个特定于主题的风格。
样式要么是常见的,要么是与特定主题相关的。如果样式是通用的,那么它可以与任何主题一起使用。如果样式与特定主题关联,则仅当您的应用程序使用该主题时才能使用该样式。
There is no chrome-color style for Accordion component in mx namespace.
You can use chromeColor style when you apply Spark theme only. Spark theme adds chromeColor style to Accordion container. So it's a theme specific style.
Styles are either common or associated with a specific theme. If the style is common, it can be used with any theme. If a style is associated with a specific theme, it can only be used if your application uses that theme.