Dragger - Border Color

Tags: #<Tag:0x00007f8b22b304e8>

Hi @aleksandra_budnik

This is a follow on question from this post: Style Setting for Drag Border

23%20PM

That prior answer/sample you kindly clued me in on was to do with changing the “corner” grabber. I can’t find the style for border that is shown (red in the image above case).

How would I make that “red” border a different color? Thanks!

Hey Phil,

the class is called fill.

image

but the styling for this action is added via .js

function createHighlight() {
  var s = new _src.Selection({
    className: 'fill',
    border: {
      width: 1,
      color: '#ff0000'
    }
  });
  return s;
}