diff options
| author | bob <bcz@cs.brown.edu> | 2020-01-16 16:15:26 -0500 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2020-01-16 16:15:26 -0500 |
| commit | e183f40509edec426b6519fe77590792c1f3f346 (patch) | |
| tree | 00dfd3733c50f45be969018fbb57c3c0ad271a03 /src/client/views/collections/CollectionPivotView.scss | |
| parent | fcd9313158f8c131cf5a124880c46ca7b20a1b25 (diff) | |
pivot viewer improvements.
Diffstat (limited to 'src/client/views/collections/CollectionPivotView.scss')
| -rw-r--r-- | src/client/views/collections/CollectionPivotView.scss | 57 |
1 files changed, 57 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..bd3d6c77b --- /dev/null +++ b/src/client/views/collections/CollectionPivotView.scss @@ -0,0 +1,57 @@ +.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%; + } + } + + .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: 200px; + height: calc(100% - 30px); + } + } + .collectionPivotView-pivot { + display:inline-block; + width: calc(100% - 200px); + height: 100%; + } +}
\ No newline at end of file |
