ID:1670832
 
Resolved
The color picker didn't work in some browsers.
BYOND Version:507
Operating System:Windows 8 Pro 64-bit
Web Browser:Chrome 37.0.2062.102
Applies to:Webclient
Status: Resolved (507.1254)

This issue has been resolved.
#include "color selection.dms"

mob
verb/choose_color(c as color)
winset(src, "button", "background-color=[c]")

// color selection.dms: (it's just a button)
<body>
<div id=button byondclass=button skinparams="text=Color; command=choose-color"></div>
</body>

result

I assume it's supposed to show some kind of gradient in those black rectangles. :(
That's odd. This has worked for me in Dartium, which is based on Chrome. Does it work in other browsers for you? Is it only an issue in that one project?
In response to Lummox JR
It works in IE11! and yeah, it happens in every project.
I wonder if your Chrome is not displaying SVG for some reason. Flexi uses SVG or else it falls back on an older Microsoft debacle.

Maybe I should just replace it with mine. My picker uses linear gradients which are well supported in all current browsers.
Lummox JR resolved issue with message:
The color picker didn't work in some browsers.