diff --git a/mobile/chrome/content/browser-ui.js b/mobile/chrome/content/browser-ui.js
index 3a99c7f93649..e76493346979 100644
--- a/mobile/chrome/content/browser-ui.js
+++ b/mobile/chrome/content/browser-ui.js
@@ -592,7 +592,6 @@ var BrowserUI = {
var bookmark = document.getElementById("bookmark-container");
var urllist = document.getElementById("urllist-container");
var container = document.getElementById("browser-container");
- var prefs = document.getElementById("pref-pane");
if (aMode == UIMODE_URLVIEW)
{
diff --git a/mobile/chrome/content/browser.css b/mobile/chrome/content/browser.css
index 03bd9c6edec0..ef25874a5366 100644
--- a/mobile/chrome/content/browser.css
+++ b/mobile/chrome/content/browser.css
@@ -10,7 +10,7 @@ richlistitem[type="documenttab"] {
-moz-binding: url("chrome://browser/content/deckbrowser.xml#documenttab");
}
-#pref-pane > scrollbox
+#prefs-container > scrollbox
{
overflow: auto;
}
diff --git a/mobile/chrome/content/browser.xul b/mobile/chrome/content/browser.xul
index 00321131ae27..44890b4b3abe 100644
--- a/mobile/chrome/content/browser.xul
+++ b/mobile/chrome/content/browser.xul
@@ -40,7 +40,6 @@
-
@@ -240,7 +239,7 @@
-
+
diff --git a/mobile/chrome/jar.mn b/mobile/chrome/jar.mn
index 5369fcc5a895..b4cb2713f558 100644
--- a/mobile/chrome/jar.mn
+++ b/mobile/chrome/jar.mn
@@ -52,7 +52,6 @@ classic.jar:
images/right_sidebar_middle.png (skin/images/right_sidebar_middle.png)
images/right_sidebar_bottom.png (skin/images/right_sidebar_bottom.png)
images/right_buttons.png (skin/images/right_buttons.png)
- richpref.css (skin/richpref.css)
@AB_CD@.jar:
% locale browser @AB_CD@ %
diff --git a/mobile/chrome/skin/browser.css b/mobile/chrome/skin/browser.css
index 0b13dfed6acc..55fa91168e66 100644
--- a/mobile/chrome/skin/browser.css
+++ b/mobile/chrome/skin/browser.css
@@ -544,3 +544,46 @@ findbar {
min-width: 280px;
padding: 10px;
}
+
+/* Preferences window */
+#prefs-container
+{
+ background-color: rgba(123,125,123,0.9);
+}
+
+richpref
+{
+ background-color: white;
+}
+
+.prefsection
+{
+ font-size: 1.5em ! important;
+ color: white;
+ background-color: grey;
+ padding: .2em 0 .2em 0;
+}
+
+.prefbox
+{
+ padding: .3em .3em .3em .5em;
+ border: thin solid lightgrey;
+}
+
+.preftitle
+{
+ font-size: 1.25em ! important;
+}
+
+.prefdesc
+{
+ font-size: 1em ! important;
+ color: grey;
+ background-color: white;
+}
+
+/* BUG: This rule doesn't actually work; I don't know why. */
+richpref > button
+{
+ font-size: 1em ! important;
+}
diff --git a/mobile/chrome/skin/richpref.css b/mobile/chrome/skin/richpref.css
deleted file mode 100644
index 3e5507faf5e5..000000000000
--- a/mobile/chrome/skin/richpref.css
+++ /dev/null
@@ -1,41 +0,0 @@
-#pref-pane
-{
- background-color: rgba(123,125,123,0.9);
-}
-
-richpref
-{
- background-color: white;
-}
-
-.prefsection
-{
- font-size: 1.5em ! important;
- color: white;
- background-color: grey;
- padding: .2em 0 .2em 0;
-}
-
-.prefbox
-{
- padding: .3em .3em .3em .5em;
- border: thin solid lightgrey;
-}
-
-.preftitle
-{
- font-size: 1.25em ! important;
-}
-
-.prefdesc
-{
- font-size: 1em ! important;
- color: grey;
- background-color: white;
-}
-
-/* BUG: This rule doesn't actually work; I don't know why. */
-richpref > button
-{
- font-size: 1em ! important;
-}