diff options
author | bob <bcz@cs.brown.edu> | 2019-02-13 10:38:59 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-02-13 10:38:59 -0500 |
commit | 47157f2d95ac1a9541ae313da321d050b073d0a7 (patch) | |
tree | 683e79c48cda177224748243ea5e72d58eabb2d1 /src/client/views/nodes/CollectionFreeFormDocumentView.tsx | |
parent | 3033e4d5f26bbdb808c1a88d1ecabb57b2acade4 (diff) |
more css playing. moved NodeView to DocumentView.scss
Diffstat (limited to 'src/client/views/nodes/CollectionFreeFormDocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/CollectionFreeFormDocumentView.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/views/nodes/CollectionFreeFormDocumentView.tsx b/src/client/views/nodes/CollectionFreeFormDocumentView.tsx index 544ace075..a2fbe96d2 100644 --- a/src/client/views/nodes/CollectionFreeFormDocumentView.tsx +++ b/src/client/views/nodes/CollectionFreeFormDocumentView.tsx @@ -7,11 +7,10 @@ import { SelectionManager } from "../../util/SelectionManager"; import { CollectionDockingView } from "../collections/CollectionDockingView"; import { CollectionFreeFormView } from "../collections/CollectionFreeFormView"; import { ContextMenu } from "../ContextMenu"; -import "./NodeView.scss"; +import "./DocumentView.scss"; import React = require("react"); import { DocumentView, DocumentViewProps } from "./DocumentView"; import { Transform } from "../../util/Transform"; -import { COLLECTION_BORDER_WIDTH } from '../../views/collections/CollectionViewBase'; @observer @@ -218,7 +217,7 @@ export class CollectionFreeFormDocumentView extends DocumentView { render() { var parentScaling = this.nativeWidth > 0 ? this.width / this.nativeWidth : 1; return ( - <div className="node" ref={this._mainCont} + <div className="documentView-node" ref={this._mainCont} onContextMenu={this.onContextMenu} onPointerDown={this.onPointerDown} style={{ |