diff options
| author | bob <bcz@cs.brown.edu> | 2019-12-09 10:16:58 -0500 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-12-09 10:16:58 -0500 |
| commit | 2b5002cb19fd896426df2a26b981b99fb88dc119 (patch) | |
| tree | d929ea2c4f761146367043c65125f7cd3f904535 /src/client/views/MainView.scss | |
| parent | e5ca273b70c2c41f953ad2a534afabdb313f3e99 (diff) | |
| parent | cfaf02757f5aebd2ccce0bbef8b6f5e232932693 (diff) | |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web
Diffstat (limited to 'src/client/views/MainView.scss')
| -rw-r--r-- | src/client/views/MainView.scss | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/src/client/views/MainView.scss b/src/client/views/MainView.scss index 0ee30f117..a8924c6b1 100644 --- a/src/client/views/MainView.scss +++ b/src/client/views/MainView.scss @@ -7,11 +7,18 @@ width: 100%; } +.mainContent-div { + position: relative; + width:100%; + height:100%; +} + // add nodes menu. Note that the + button is actually an input label, not an actual button. .mainView-docButtons { position: absolute; bottom: 20px; - left: 250px; + left: calc(100% + 5px); + z-index: 1; } #mainView-container { @@ -27,13 +34,13 @@ width: 100%; height: 100%; position: absolute; + display: flex; } .mainView-flyoutContainer { display: flex; flex-direction: column; - position: absolute; - width: 100%; + position: relative; height: 100%; .documentView-node-topmost { @@ -59,9 +66,11 @@ .mainView-libraryFlyout { height: 100%; + width:100%; position: absolute; display: flex; flex-direction: column; + z-index: 1; } .mainView-expandFlyoutButton { @@ -73,6 +82,7 @@ .mainView-libraryHandle { width: 20px; + left: calc(100% - 10px); height: 40px; top: 50%; border: 1px solid black; @@ -80,6 +90,7 @@ position: absolute; z-index: 1; touch-action: none; + cursor: ew-resize; } .mainView-workspace { |
