[Tracker-discuss] [issue364] Python Website: Color scheme of the issues tracker's textarea background

Ezio Melotti metatracker at psf.upfronthosting.co.za
Wed Dec 15 04:05:46 CET 2010


Ezio Melotti <ezio.melotti at gmail.com> added the comment:

Fixed in r87244 for the python-dev, meta and jython trackers.
I changed only the text color to black when the background is yellow and left it unchanged in the other cases. This means that, with your configuration, you should see white-on-black normally and black-on-yellow once you focus on the textarea.
Let me know if this is fine for you, and thanks for the report!

----------
assignedto:  -> ezio.melotti
nosy: +ezio.melotti
status: unread -> resolved

_______________________________________________________
PSF Meta Tracker <metatracker at psf.upfronthosting.co.za>
<http://psf.upfronthosting.co.za/roundup/meta/issue364>
_______________________________________________________
-------------- next part --------------
Index: instances/meta/html/style.css
===================================================================
--- instances/meta/html/style.css	(revision 83128)
+++ instances/meta/html/style.css	(working copy)
@@ -436,6 +436,7 @@
 input[type="radio"]:focus,
 input[type="password"]:focus,
 textarea:focus, select:focus {
+  color: #000000;
   background-color: #ffffc0;
 }
 
Index: instances/jython/html/style.css
===================================================================
--- instances/jython/html/style.css	(revision 83128)
+++ instances/jython/html/style.css	(working copy)
@@ -449,6 +449,7 @@
 input[type="radio"]:focus,
 input[type="password"]:focus,
 textarea:focus, select:focus {
+  color: #000000;
   background-color: #ffffc0;
 }
 
Index: instances/python-dev/html/style.css
===================================================================
--- instances/python-dev/html/style.css	(revision 83128)
+++ instances/python-dev/html/style.css	(working copy)
@@ -451,6 +451,7 @@
 input[type="radio"]:focus,
 input[type="password"]:focus,
 textarea:focus, select:focus {
+  color: #000000;
   background-color: #ffffc0;
 }
 


More information about the Tracker-discuss mailing list