Define a foreground color when using a defined background color.

This commit is contained in:
Daniel Widerin 2013-04-09 16:41:40 +02:00
parent 2322a91800
commit 6852d4a836
3 changed files with 12 additions and 3 deletions

View File

@ -1,6 +1,14 @@
Changelog
=========
1.0b4 (unreleased)
------------------
- If we set background to 'white' we should set foreground to 'black' to avoid
people getting white font on white background if they use white font color
for their plone sites. [saily]
1.0b3 (2013-02-04)
------------------

View File

@ -69,11 +69,12 @@ dl.multipleSelectionWidget,
}
.multipleSelectionWidget dd {
width: 198px;
background: white;
background: #FFF;
overflow:auto;
}
.multipleSelectionWidget label {
display: block;
color: #000;
}
.querywidget {
float: left;
@ -105,4 +106,4 @@ dl.querywidget dd {
have the highest priority. */
.multipleSelectionWidget .hiddenStructure {
display: none !important;
}
}

View File

@ -1,6 +1,6 @@
from setuptools import setup, find_packages
version = '1.0b3'
version = '1.0b4'
long_description = open("README.rst").read() + "\n" + \
open("CHANGES.rst").read()