在Firefox 4菜单文本等上禁用dropshadow


3

通过添加以下内容,可以在Firefox 4中使用选项卡禁用下拉阴影:

.tabbrowser-tab { text-shadow: none !important; }

到userChrome.css文件。

有谁知道我需要添加什么才能禁用主文件菜单文本以及下载栏中的文本等的阴影?


Answers:


0

您没有提及您的操作系统以及您使用的任何Firefox或系统主题。不幸的是,我无法确认您所描述的任何文本阴影。我正在使用Windows 7和Aero主题:

截图

但...

如果要text-shadow在选项卡标签,菜单项标签和下载标签上设置属性样式,则以下CSS选择器将起作用:

label.tab-label,
label.menu-iconic-text,
label.menu-text,
label.menubar-text,
label.name
{
    text-shadow: none !important;
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.