我的 Firefox 扩展中可以有一个没有阴影的 XUL 面板吗?
Firefox 扩展覆盖中的 XUL 面板始终免费附带阴影。 我怎样才能去掉这个阴影?
我不想要的阴影效果的示例代码:
<popupset>
<panel id="popuppanel" width="500" noautohide="true">
<vbox>
<label value="test"/>
<label value=""/>
<label value=""/>
<label value=""/>
</vbox>
</panel>
</popupset>
和屏幕截图:
我不想要的阴影效果示例图像。 http://img124.imageshack.us/img124/7766/shadowj.png
XUL panels in a Firefox extension overlay always come with a shadow for free. How can I remove this shadow?
Example code for the shadow effect I don't want:
<popupset>
<panel id="popuppanel" width="500" noautohide="true">
<vbox>
<label value="test"/>
<label value=""/>
<label value=""/>
<label value=""/>
</vbox>
</panel>
</popupset>
And a screenshot:
Example image of shadow effect I don't want. http://img124.imageshack.us/img124/7766/shadowj.png
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用以下 CSS 语句:
-moz-window-shadow: none;
另请参阅 Firefox 内部 CSS 样式表(mac 版本)了解其书签面板。
Use the following CSS statement:
-moz-window-shadow: none;
See also Firefox internal CSS stylesheet (mac version) for its bookmark panel.
我认为这是操作系统所做的一部分。 就像菜单上也有一个阴影一样。 记事本。 我不得不说我对 Vista 不熟悉,但可以肯定地说它是特定于操作系统的。
I think that is part of the OS's doing. Like there is also a shadow on menus in eg. notepad. Not familiar with Vista I have to say, but it's safe to say that it's OS specific.
您可以通过 css 将背景颜色设置为透明:
background-color:透明;
You can set the background color to transparent via css:
background-color: transparent;