从 ToggleButtonBar 中删除选定按钮上的突出显示

发布于 2024-07-23 06:41:51 字数 56 浏览 7 评论 0原文

好吧,标题说明了一切。 我正在尝试消除 ToggleButtonBar 中所选按钮周围的突出显示

Well, title explains all. I'm trying to get rid of the highlight that comes around of the selected button in a ToggleButtonBar

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

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

发布评论

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

评论(2

情独悲 2024-07-30 06:41:51

为了获得您想要的确切外观,最好的选择是使用 Flash、Fireworks、Photoshop 等,并根据您的喜好调整按钮皮肤。 边框是皮肤的一部分。 您也可以创建程序化皮肤。

一个快速解决方法是将突出显示设置为与按钮相同的颜色。

切换按钮栏{
按钮样式名称:“myButton”;
}

按钮.myButton{
主题颜色:#999999;
}

注意...这纯粹是一个快速修复,并且还会调整按钮悬停颜色,因此仅将其用作小胜利。

To get the exact look you want your best bet is to jump in Flash, Fireworks, Photoshop, etc and tweak a button skin to your liking. The border is part of the skin. You can create a programmatic skin as well.

A quick fix is to set the highlight the same color as the button.

ToggleButtonBar{
button-style-name: "myButton";
}

Button.myButton{
theme-color: #999999;
}

Mind you...it is purely a quick fix and will tweak your button hover color as well so only use it as a small win.

唠甜嗑 2024-07-30 06:41:51

我最终找到了解决方法,实际上很简单! (感谢 KapInspect 工具)

我只需为 selectedDownSkin 样式创建自定义皮肤

I eventually find how to resolve it, quiet simple actually! (Thanks to the KapInspect tool)

I just had to create a custom skin for the selectedDownSkin style

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