Merge pull request #4 from saily/master

Set foreground color when background color is set.
This commit is contained in:
Timo Stollenwerk 2013-04-09 07:44:30 -07:00
commit e2ed232366
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()