Page 1 of 1

Color Background on Fields like Priority, Status, etc.

Posted: 04 Sep 2015, 16:53
by pepe
A minor problem is the Color Background of fields like priority or Task Status. When choosing a Color from the Color picker, a #-sign is inserted before the hexcode. On some field records this works fine, on others the #-sign must be deleted for the Background Color to be displayed.
Regards,
Pepe

Re: Color Background on Fields like Priority, Status, etc.

Posted: 04 Sep 2015, 21:24
by support
can't reproduce it... which field types? can you provide some screenshots?

Re: Color Background on Fields like Priority, Status, etc.

Posted: 05 Sep 2015, 00:14
by pepe
Regards,
Pepe

Re: Color Background on Fields like Priority, Status, etc.

Posted: 05 Sep 2015, 09:25
by support
yes, found the problem and fixed it, this fix will be in version 1.6

but you can fix it now by changing short code.

open file includes/functions/app.php and find 331 line

Code: Select all

return '<div class="bg-color-value" style="background: #' . $color . ';">' . $value . '</div>';
and remove # in this line so it will looks like this

Code: Select all

return '<div class="bg-color-value" style="background: ' . $color . ';">' . $value . '</div>';