aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/css/layout.less
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-02-18 23:10:47 +0100
committerMaximilian Hils <git@maximilianhils.com>2016-02-18 23:10:47 +0100
commit7c6bf7abb3c0e94f9c4dfa77fe0690fe11c6d4d3 (patch)
tree3f583d91ff97924068f7017f770b710da2768abe /web/src/css/layout.less
parentbe02dd105b7803b7b2b6942f9d254539dfd6ba26 (diff)
parent61cde30ef8410dc5400039eea5d312fabf3779a9 (diff)
downloadmitmproxy-7c6bf7abb3c0e94f9c4dfa77fe0690fe11c6d4d3.tar.gz
mitmproxy-7c6bf7abb3c0e94f9c4dfa77fe0690fe11c6d4d3.tar.bz2
mitmproxy-7c6bf7abb3c0e94f9c4dfa77fe0690fe11c6d4d3.zip
Merge pull request #964 from mitmproxy/flat-structure
Flat structure
Diffstat (limited to 'web/src/css/layout.less')
-rw-r--r--web/src/css/layout.less65
1 files changed, 65 insertions, 0 deletions
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%;
+ }
+ }
+}