﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
8302	2.7-Profile: Whitespace under color palettes	kpdesign		"Firefox 3.0.4/Windows XP: I am seeing white bars underneath each color box in the color palettes for the admin themes on the profile page (see screenshot). In checking wp-admin.css, there is a semi-colon missing at the end of the first line for '''.form-table .color-palette td''' that is causing this.

Code now:

{{{
.form-table .color-palette td {
    border-width: 1px 1px 0
    border-stile: solid solid none;
    height: 10px;
    line-height: 20px;
    width: 10px;
}
}}}

Should be:

{{{
.form-table .color-palette td {
    border-width: 1px 1px 0;
    border-stile: solid solid none;
    height: 10px;
    line-height: 20px;
    width: 10px;
}

}}}



"	defect (bug)	closed	normal	2.7	UI	2.7	normal	fixed	has-patch	kpdesign
