Bug 349437 - Menulist menuitem font doesn't inherit from the parent anymore: Make the font inherit and fix consumers in Firefox prefs. ui-r=beltzner, r=Mano, a=mtschrep.

git-svn-id: svn://10.0.0.236/trunk@240310 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
stefanh%inbox.com
2007-12-03 15:10:08 +00:00
parent ec81cdfe12
commit a114ea0bcf
5 changed files with 21 additions and 1 deletions

View File

@@ -39,6 +39,9 @@
# ***** END LICENSE BLOCK *****
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
#ifdef XP_MACOSX
<?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css"?>
#endif
<!DOCTYPE prefwindow SYSTEM "chrome://browser/locale/preferences/colors.dtd" >

View File

@@ -42,6 +42,9 @@
# ***** END LICENSE BLOCK *****
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
#ifdef XP_MACOSX
<?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css"?>
#endif
<!DOCTYPE prefwindow SYSTEM "chrome://browser/locale/preferences/fonts.dtd" >

View File

@@ -42,6 +42,9 @@
<!DOCTYPE prefwindow SYSTEM "chrome://browser/locale/preferences/languages.dtd">
<?xml-stylesheet href="chrome://global/skin/"?>
#ifdef XP_MACOSX
<?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css"?>
#endif
<prefwindow id="LanguagesDialog" type="child"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"

View File

@@ -38,6 +38,11 @@
#
# ***** END LICENSE BLOCK *****
*/
menulist > menupopup > menuitem {
font: -moz-pull-down-menu;
}
.prefWindow-dlgbuttons {
margin: 0 12px 8px 12px;
}
@@ -46,6 +51,12 @@
padding-top: 0 !important;
}
#FontsDialog > .prefWindow-dlgbuttons,
#ColorsDialog > .prefWindow-dlgbuttons,
#LanguagesDialog > .prefWindow-dlgbuttons {
margin: 0;
}
.windowDialog {
padding: 12px;
font: -moz-dialog;

View File

@@ -173,7 +173,7 @@ menulist > menupopup > menuitem,
menulist > menupopup > menu {
padding-right: 25px !important;
max-width: none;
font: -moz-pull-down-menu;
font: inherit;
color: -moz-FieldText;
}