From 18b619e164ced91cf0ac8d3fd3c18be1f07df1cc Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Thu, 18 Feb 2016 12:29:35 +0100 Subject: move mitmproxy/web to root --- web/src/css/layout.less | 65 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 web/src/css/layout.less (limited to 'web/src/css/layout.less') diff --git a/web/src/css/layout.less b/web/src/css/layout.less new file mode 100644 index 00000000..1075d6c9 --- /dev/null +++ b/web/src/css/layout.less @@ -0,0 +1,65 @@ +html, body, #container { + height: 100%; + margin: 0; + overflow: hidden; +} + +#container { + display: flex; + flex-direction: column; + + outline: none; // our root element is focused by default. + + > header, > footer, > .eventlog { + flex: 0 0 auto; + } +} + +.main-view { + flex: 1 1 auto; + + // All children of #container need an explicit height + // If we don't set this, the scrollbars disappear + // (https://github.com/mitmproxy/mitmproxy/issues/615) + height: 0; + + display: flex; + flex-direction: row; + + &.vertical { + flex-direction: column; + } + + .flow-detail, .flow-table { + flex: 1 1 auto; + } + +} + +.splitter { + flex: 0 0 1px; + background-color: #aaa; + position: relative; + + > div { + position: absolute; + //debug: background-color: orange; + } + + &.splitter-x { + cursor: col-resize; + > div { + margin-left: -1px; + width: 4px; + height: 100%; + } + } + &.splitter-y { + cursor: row-resize; + > div { + margin-top: -1px; + height: 4px; + width: 100%; + } + } +} -- cgit v1.2.3