aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/css/layout.less
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-02-15 14:58:46 +0100
committerMaximilian Hils <git@maximilianhils.com>2016-02-15 14:58:46 +0100
commit33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04 (patch)
tree31914a601302579ff817504019296fd7e9e46765 /web/src/css/layout.less
parent36f34f701991b5d474c005ec45e3b66e20f326a8 (diff)
downloadmitmproxy-33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04.tar.gz
mitmproxy-33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04.tar.bz2
mitmproxy-33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04.zip
move mitmproxy
Diffstat (limited to 'web/src/css/layout.less')
-rw-r--r--web/src/css/layout.less65
1 files changed, 0 insertions, 65 deletions
diff --git a/web/src/css/layout.less b/web/src/css/layout.less
deleted file mode 100644
index 1075d6c9..00000000
--- a/web/src/css/layout.less
+++ /dev/null
@@ -1,65 +0,0 @@
-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%;
- }
- }
-}