覆盖 Flex 控件的标签级外部 CSS

发布于 2024-07-29 11:08:44 字数 330 浏览 11 评论 0原文

我有一个外部 CSS 文件,它定义了 Button 标签的样式。

Button {fontSize 11;  blah...}

我试图覆盖 ToggleButtonBar 按钮的这种样式:

<mx:ToggleButtonBar dataProvider="{pm.portalNavigation}" fontSize="16" />

不幸的是,这似乎不起作用。 fontSize 保持在 11。如何覆盖外部 CSS 来调整 ButtonBar 中按钮的大小?

谢谢!

I have an external CSS file which defines the style for the Button tag.

Button {fontSize 11;  blah...}

I'm trying to override this style for the buttons of a ToggleButtonBar:

<mx:ToggleButtonBar dataProvider="{pm.portalNavigation}" fontSize="16" />

Unfortunately, this doesn't seem to work. The fontSize stays at 11. How can I override the external CSS to resize the buttons in my ButtonBar?

Thanks!

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

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

发布评论

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

评论(2

嘿看小鸭子会跑 2024-08-05 11:08:45

您需要设置buttonStyleName属性,所以

<mx:ToggleButtonBar buttonStyleName="myButtonStyle">...</mx:ToggleButtonBar>

.myButtonStyle{
   font-size: 16;
}

you need to set the buttonStyleName property, so

<mx:ToggleButtonBar buttonStyleName="myButtonStyle">...</mx:ToggleButtonBar>

.myButtonStyle{
   font-size: 16;
}
逆夏时光 2024-08-05 11:08:45

只是来自 Flex 文档的猜测。 ..

<mx:ToggleButtonBar dataProvider="{pm.portalNavigation}" styleDeclaration="font-size:16pt !important" />

Just a guess from the Flex documentation...

<mx:ToggleButtonBar dataProvider="{pm.portalNavigation}" styleDeclaration="font-size:16pt !important" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文