diff options
| author | Sam Wilkins <abdullah_ahmed@brown.edu> | 2019-03-02 17:43:55 -0500 |
|---|---|---|
| committer | Sam Wilkins <abdullah_ahmed@brown.edu> | 2019-03-02 17:43:55 -0500 |
| commit | 950c656d06d7c6b25b82030feaa7c5c70102fe6a (patch) | |
| tree | f5ff6112a6d0c34c225479e94a85450559b3f769 /src/client/views/collections/CollectionSchemaView.scss | |
| parent | bf26137803c09807b6e7e3d9d9ad086a7ead32ac (diff) | |
| parent | bde8aabad7e5745b4797e73b564e4efb19faeca9 (diff) | |
Merge with master and initial pass at converting main to a component
Diffstat (limited to 'src/client/views/collections/CollectionSchemaView.scss')
| -rw-r--r-- | src/client/views/collections/CollectionSchemaView.scss | 37 |
1 files changed, 30 insertions, 7 deletions
diff --git a/src/client/views/collections/CollectionSchemaView.scss b/src/client/views/collections/CollectionSchemaView.scss index b02d528a0..88a3b73d4 100644 --- a/src/client/views/collections/CollectionSchemaView.scss +++ b/src/client/views/collections/CollectionSchemaView.scss @@ -4,13 +4,35 @@ position: absolute; width: 100%; height: 100%; - ::-webkit-scrollbar { - -webkit-appearance: none; - width: 10px; + .collectionSchemaView-previewRegion { + position: relative; + background: black; + float: left; + height: 100%; + } + .collectionSchemaView-previewHandle { + position: absolute; + height: 37px; + width: 20px; + z-index: 20; + right: 0; + top: 0; + background: Black ; + } + .collectionSchemaView-dividerDragger{ + position: relative; + background: black; + float: left; + height: 100%; } ::-webkit-scrollbar-thumb { border-radius: 5px; background-color: rgba(0, 0, 0, .5); + } + .collectionSchemaView-tableContainer { + position: relative; + float: left; + height: 100%; } .ReactTable { position: absolute; // display: inline-block; @@ -33,6 +55,7 @@ } .rt-tr-group { direction: ltr; + max-height: 44px; } .rt-td { border-width: 1; @@ -68,11 +91,11 @@ direction: ltr; } .ReactTable .rt-thead.-header { - background: grey; + background:grey; } - .ReactTable .rt-th, - .ReactTable .rt-td { - max-height: 75px; + .ReactTable .rt-th, .ReactTable .rt-td { + max-height: 44; + padding: 3px 7px; } .ReactTable .rt-tbody .rt-tr-group:last-child { border-bottom: grey; |
