diff options
| author | Stanley Yip <stanley_yip@brown.edu> | 2020-02-09 14:58:57 -0500 |
|---|---|---|
| committer | Stanley Yip <stanley_yip@brown.edu> | 2020-02-09 14:58:57 -0500 |
| commit | f6179334d6f2942631caa17b7c8ae2531d87c7c4 (patch) | |
| tree | 091da0ef7bedb900c958c28cebe4058fade644cf /src/client/views/collections/CollectionPivotView.scss | |
| parent | 07141291bee793955d7061f4e479942d7aceda67 (diff) | |
| parent | 87167fd126e161b29d8d798a5f04e3cf159aae16 (diff) | |
recommender system works
Diffstat (limited to 'src/client/views/collections/CollectionPivotView.scss')
| -rw-r--r-- | src/client/views/collections/CollectionPivotView.scss | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionPivotView.scss b/src/client/views/collections/CollectionPivotView.scss new file mode 100644 index 000000000..505091e98 --- /dev/null +++ b/src/client/views/collections/CollectionPivotView.scss @@ -0,0 +1,88 @@ +.collectionPivotView { + display: flex; + flex-direction: row; + position: absolute; + height: 100%; + width: 100%; + + .collectionPivotView-flyout { + width: 400px; + height: 300px; + display: inline-block; + + .collectionPivotView-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; + } + + .collectionPivotView-treeView { + display: flex; + flex-direction: column; + width: 200px; + height: 100%; + + .collectionPivotView-addfacet { + display: inline-block; + width: 200px; + height: 30px; + background: darkGray; + text-align: center; + + .collectionPivotView-button { + align-items: center; + display: flex; + width: 100%; + height: 100%; + + .collectionPivotView-span { + margin: auto; + } + } + + >div, + >div>div { + width: 100%; + height: 100%; + text-align: center; + } + } + + .collectionPivotView-tree { + display: inline-block; + width: 100%; + height: calc(100% - 30px); + } + } + + .collectionPivotView-pivot { + display: inline-block; + width: calc(100% - 200px); + height: 100%; + } + + .collectionPivotView-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 |
