外部 CSS 覆盖

发布于 2024-10-04 08:47:20 字数 630 浏览 2 评论 0原文

我是 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 技术交流群。

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

发布评论

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

评论(1

山人契 2024-10-11 08:47:20

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.

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