# HG changeset patch # User Markus Kottlaender # Date 1554826987 -7200 # Node ID 61f69e8919d34829c245a5cc4425bede2a07819e # Parent 2e7c0f9cff2499e01bd82c13e6262d90caf4cf68 client: prepared splitview Up to four panes can be used to display different components. Currently hardcoded to one pane with the map component. Two panes can be oriented vertically or horizontally and three panes can be set to left, right, top and bottom, which is the position of the one full-width or -height pane. diff -r 2e7c0f9cff24 -r 61f69e8919d3 client/src/assets/application.scss --- a/client/src/assets/application.scss Tue Apr 09 16:42:58 2019 +0200 +++ b/client/src/assets/application.scss Tue Apr 09 18:23:07 2019 +0200 @@ -209,3 +209,8 @@ overflow: hidden; text-overflow: ellipsis; } + +.wh-100 { + width: 100% !important; + height: 100% !important; +} diff -r 2e7c0f9cff24 -r 61f69e8919d3 client/src/components/Main.vue --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/client/src/components/Main.vue Tue Apr 09 18:23:07 2019 +0200 @@ -0,0 +1,130 @@ + + + + + diff -r 2e7c0f9cff24 -r 61f69e8919d3 client/src/components/Maplayer.vue --- a/client/src/components/Maplayer.vue Tue Apr 09 16:42:58 2019 +0200 +++ b/client/src/components/Maplayer.vue Tue Apr 09 18:23:07 2019 +0200 @@ -1,19 +1,23 @@