diff options
| author | bob <bcz@cs.brown.edu> | 2020-01-31 15:46:42 -0500 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2020-01-31 15:46:42 -0500 |
| commit | 07e53a4a244eff804e47c6b48b8eb4f2a5096b0e (patch) | |
| tree | b8d3c7d0f59e81d18c72a4a92de7d4e94a109a2e /src/client/views/collections/CollectionTimeView.scss | |
| parent | e34620f6ded8afd6bb3f96c2c2889c9165f64569 (diff) | |
added collectionTime view
Diffstat (limited to 'src/client/views/collections/CollectionTimeView.scss')
| -rw-r--r-- | src/client/views/collections/CollectionTimeView.scss | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionTimeView.scss b/src/client/views/collections/CollectionTimeView.scss new file mode 100644 index 000000000..4e06fdb84 --- /dev/null +++ b/src/client/views/collections/CollectionTimeView.scss @@ -0,0 +1,88 @@ +.collectionTimeView { + display: flex; + flex-direction: row; + position: absolute; + height: 100%; + width: 100%; + + .collectionTimeView-flyout { + width: 400px; + height: 300px; + display: inline-block; + + .collectionTimeView-flyout-item { + background-color: lightgray; + text-align: left; + display: inline-block; + position: relative; + width: 100%; + } + } + + .pivotKeyEntry { + position: absolute; + top: 5px; + right: 5px; + z-index: 10; + pointer-events: all; + padding: 5px; + border: 1px solid black; + } + + .collectionTimeView-treeView { + display: flex; + flex-direction: column; + width: 200px; + height: 100%; + + .collectionTimeView-addfacet { + display: inline-block; + width: 200px; + height: 30px; + background: darkGray; + text-align: center; + + .collectionTimeView-button { + align-items: center; + display: flex; + width: 100%; + height: 100%; + + .collectionTimeView-span { + margin: auto; + } + } + + >div, + >div>div { + width: 100%; + height: 100%; + text-align: center; + } + } + + .collectionTimeView-tree { + display: inline-block; + width: 100%; + height: calc(100% - 30px); + } + } + + .collectionTimeView-pivot { + display: inline-block; + width: calc(100% - 200px); + height: 100%; + } + + .collectionTimeView-dragger { + background-color: lightgray; + height: 40px; + width: 20px; + position: absolute; + border-radius: 10px; + top: 55%; + border: 1px black solid; + z-index: 2; + left: -10px; + } +}
\ No newline at end of file |
