Skip to content
Snippets Groups Projects
Commit 3dc437b5 authored by David Sehnal's avatar David Sehnal
Browse files

mol-plugin: ColorControl

parent b70b57f7
No related branches found
No related tags found
No related merge requests found
......@@ -246,11 +246,25 @@ export class ColorControl extends SimpleParam<PD.Color> {
this.update(Color(parseInt(e.target.value)));
}
stripStyle(): React.CSSProperties {
return {
background: Color.toStyle(this.props.value),
position: 'absolute',
bottom: '0',
height: '4px',
right: '0',
left: '0'
};
}
renderControl() {
return <select value={this.props.value} onChange={this.onChange} style={{ borderLeft: `16px solid ${Color.toStyle(this.props.value)}` }}>
{ColorValueOption(this.props.value)}
{ColorOptions()}
</select>;
return <div style={{ position: 'relative' }}>
<select value={this.props.value} onChange={this.onChange}>
{ColorValueOption(this.props.value)}
{ColorOptions()}
</select>
<div style={this.stripStyle()} />
</div>;
}
}
......@@ -273,10 +287,7 @@ export class ColorScaleControl extends SimpleParam<PD.ColorScale<any>> {
renderControl() {
return <div style={{ position: 'relative' }}>
<select value={this.props.value || ''} onChange={this.onChange} disabled={this.props.isDisabled}>
{this.props.param.options.map(([value, label]) =>
<option key={value} value={value}>
{label}
</option>)}
{this.props.param.options.map(([value, label]) => <option key={value} value={value}>{label}</option>)}
</select>
<div style={this.stripStyle()} />
</div>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment