Skip to content

nf-graph should not disable user-select/drag for every element within #84

@jayphelps

Description

@jayphelps

Right now everything inside .nf-graph is made non-selectable/draggable. This prevents someone from easily copying numbers, labels, etc which I don't think was the intent.

.nf-graph * {
  user-select: none;
  user-drag: none;
}

* {
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
-moz-user-drag: none;
-webkit-user-drag: none;
user-drag: none;
}

Instead, we should explicitly opt out things that should be selectable, Things like lines, paths, etc; if this is even necessary?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions