diff options
| author | bobzel <zzzman@gmail.com> | 2021-07-30 08:44:42 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-07-30 08:44:42 -0400 |
| commit | 22ba42b2a44828d8d6284ea36d4f34b702ed6a4b (patch) | |
| tree | cefd493ee8a12737fb895f4524d9bd1bb804b399 /src/client/views/nodes/MapBox/MapBox.scss | |
| parent | b3f81bf0cad1f7dadf47de7b7fc673b35180c46c (diff) | |
added sidebar button to mapBox
Diffstat (limited to 'src/client/views/nodes/MapBox/MapBox.scss')
| -rw-r--r-- | src/client/views/nodes/MapBox/MapBox.scss | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/src/client/views/nodes/MapBox/MapBox.scss b/src/client/views/nodes/MapBox/MapBox.scss index 04e8b0dd5..e329af15c 100644 --- a/src/client/views/nodes/MapBox/MapBox.scss +++ b/src/client/views/nodes/MapBox/MapBox.scss @@ -1,10 +1,11 @@ -.MapBox { +.mapBox { width: 100%; height: 100%; overflow: hidden; display: flex; - .MapBox-contents { + + .mapBox-contents { width: 100%; height: 100%; overflow: hidden; @@ -13,7 +14,7 @@ position: unset !important; // when the sidebar filter flys out, this prevents the map from extending outside the document box } - .map-wrapper { + .mapBox-wrapper { width: 100%; .searchbox { box-sizing: border-box; @@ -31,5 +32,17 @@ margin-left: -120px; } } + + .mapBox-sidebar-handle { + position: absolute !important; + top: 0; + //top: calc(50% - 17.5px); // use this to center vertically -- make sure it looks okay for slide views + width: 10px; + height: 100%; + max-height: 35px; + background: lightgray; + border-radius: 20px; + cursor:grabbing; + } } } |
