editableCell icon indicating copy to clipboard operation
editableCell copied to clipboard

Remove any remaining issues preventing us from support 'edge' browsers

Open jstclair opened this issue 11 years ago • 1 comments

jstclair avatar Dec 02 '14 12:12 jstclair

Found a solution for the selection border issues that is widely-supported - woot! CSS Outline

Just requires a single line in the SelectionViews createElement:

function createElement(document) {
    var elem = createElem(document, 'div', 'editable-cell-selection');

    elem.tabIndex = -1;
    elem.style.backgroundColor = 'rgba(245, 142, 00, 0.15)';
    elem.style.outline = '1px solid #86bae8';

    return elem;
}

jstclair avatar Dec 08 '14 09:12 jstclair