3.5 stylesheet: Can't set handle-border-color, handle-border-width

Hi Jesse,

I’m having trouble setting the handle-border-color and handle-border-width in a stylesheet (see on github). I always seem to be getting this slight blue border (derived from tint-color from my tests) around the handles.

Any ideas where this border comes from?

Thanks so much,
Pascal

I think you want:

item[expanded] {
  handle-border-color: none;
}

You need that because the base stylesheet has:

item[expanded] {
    handle-border-color: @handle-secondary-color;
}

Thanks, that was it