Color Background on Fields like Priority, Status, etc.

Post Reply
pepe
Sponsor
Sponsor
Posts: 556
Joined: 25 Aug 2015, 21:35
Name: Pepe
Location: Graz, Austria
Contact:

Color Background on Fields like Priority, Status, etc.

Post 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
User avatar
support
Site Admin
Posts: 6215
Joined: 19 Oct 2014, 18:22
Name: Sergey Kharchishin
Location: Russia, Evpatoriya

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

Post by support »

can't reproduce it... which field types? can you provide some screenshots?
pepe
Sponsor
Sponsor
Posts: 556
Joined: 25 Aug 2015, 21:35
Name: Pepe
Location: Graz, Austria
Contact:

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

Post by pepe »

Regards,
Pepe
Attachments
Screenshot of Problem with Background colors
Screenshot of Problem with Background colors
User avatar
support
Site Admin
Posts: 6215
Joined: 19 Oct 2014, 18:22
Name: Sergey Kharchishin
Location: Russia, Evpatoriya

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

Post 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>';
Post Reply