BUGFIX: Prevent FormField Description from being styled as nolabel

If you add a field with a description to the edit form the description gets rendered in a span flush to the left. This is because BulkImageUploadField has the class nolabel. This is a simple fix to re-apply the standard styling.
This commit is contained in:
Tom Densham 2013-05-08 15:53:42 +02:00
parent 8a8279895a
commit b35424062b

View File

@ -62,4 +62,9 @@ li.ss-uploadfield-item.template-download .imgPreview
#BulkImageUploadField .ss-uploadfield-item-status.dirty
{
color: #f25000;
}
}
#BulkImageUploadField .field .help
{
margin: 4px 0 0 184px;
}