无渐变的 Flex 按钮
如何在 Flex (SDK 3.3) 中创建一个没有任何渐变或边框颜色的简单按钮?我的 CSS 如下所示。我仍然得到渐变和不同的边框颜色,我只想要一个普通的、方形的、纯色的按钮。
谢谢!
Button {
fontWeight:normal;
color:white;
fillAlphas: 1, 1, 1, 1;
fillColors: "0x0087B8", "0x0087B8","0x4A1870", "0x4A1870";
cornerRadius: 0;
focusAlpha: 1;
borderColor:"0x0087B8";
borderAlpha:1;
textRollOverColor: white;
}
how can I create a simple button in Flex (SDK 3.3) without any gradient or border color? My CSS is shown below. I still get gradient and different border color, I just want a plain, square, solid color button.
thanks!
Button {
fontWeight:normal;
color:white;
fillAlphas: 1, 1, 1, 1;
fillColors: "0x0087B8", "0x0087B8","0x4A1870", "0x4A1870";
cornerRadius: 0;
focusAlpha: 1;
borderColor:"0x0087B8";
borderAlpha:1;
textRollOverColor: white;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
感谢您的输入,我必须创建一个像这样的程序皮肤:
CSS 看起来像这样:
}
Thanks for your input, I had to create a programmtic skin like this:
The CSS looks like this:
}