Package: iceweasel Version: 3.0~rc2-2 Severity: normal Hey, I use a dark skin in Xfce, so the default background-color in Iceweasel of input-boxes etc is black. But because I want black on white and not white on black, I added a few lines in my userContent.css-file. For Iceweasel 2, this all works fine, but now with Iceweasel 3 there are some problems with the background-color. e.g. the google search field background-color is black. For the YouTube-searchfield, background-color works and the field is white. In both cases, background-color appears in the DOM Inspector. Any suggestions why the box is black at google and most other pages? YouTube is the only exception I found. Appended an image of google and the userContent.css.
Greets, Michael -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.24-1-amd64 (SMP w/2 CPU cores) Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Shell: /bin/sh linked to /bin/bash Versions of packages iceweasel depends on: ii debianutils 2.28.4 Miscellaneous utilities specific t ii fontconfig 2.6.0-1 generic font configuration library ii libc6 2.7-10 GNU C Library: Shared libraries ii libglib2.0-0 2.16.3-2 The GLib library of C routines ii libgtk2.0-0 2.12.10-2 The GTK+ graphical user interface ii libnspr4-0d 4.7.1-3 NetScape Portable Runtime Library ii libstdc++6 4.3.1-2 The GNU Standard C++ Library v3 ii procps 1:3.2.7-8 /proc file system utilities ii psmisc 22.6-1 Utilities that use the proc filesy ii xulrunner-1.9 1.9~rc2-5 XUL + XPCOM application runner iceweasel recommends no packages. -- no debconf information
/*
* Edit this file and copy it as userContent.css into your
* profile-directory/chrome/
*/
/*
* This file can be used to apply a style to all web pages you view
* Rules without !important are overruled by author rules if the
* author sets any. Rules with !important overrule author rules.
*/
/*
* example: turn off "blink" element blinking
*
* blink { text-decoration: none ! important; }
*
*/
/*
* example: give all tables a 2px border
*
* table { border: 2px solid; }
*/
/*
* example: turn off "marquee" element
*
* marquee { -moz-binding: none; }
*
*/
/*
* For more examples see http://www.mozilla.org/unix/customizing.html
*/
input {
border: 2px inset white;
background: white !important;
color: black;
}
textarea {
border: 2px inset white;
background-color: white;
color: black;
}
select {
border: 2px inset white;
background-color: white;
color: black;
}
input[type="radio"],
input[type="checkbox"] {
border: 2px inset white !important;
background-color: white !important;
color: ThreeDFace !important;
}
*|*::-moz-radio {
background-color: white;
}
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
border: 2px outset white;
background-color: #eeeeee;
color: black;
}
body {
background-color: white;
color: black;
display: block;
margin: 8px;
}
<<attachment: Google.png>>

