Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
jstclair opened this issue Dec 2, 2014 · 1 comment

Comments

@jstclair
Copy link
Collaborator

jstclair commented Dec 2, 2014

No description provided.

jstclair added a commit that referenced this issue Dec 7, 2014
@jstclair
Copy link
Collaborator Author

jstclair commented Dec 8, 2014

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 added a commit that referenced this issue Dec 8, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant