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 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) 1.0b3 (2013-02-04)
------------------ ------------------

View File

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

View File

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