diff options
| author | Clemens <cle1000.cb@gmail.com> | 2016-07-19 12:23:20 +0200 |
|---|---|---|
| committer | Clemens <cle1000.cb@gmail.com> | 2016-07-19 12:23:20 +0200 |
| commit | 48728af43ad746d70ef3e251dc28b75028dea1e6 (patch) | |
| tree | 77b8b1eef4845c5bcc641d748435a32558c5d089 /web/src/css | |
| parent | 87797d7ac07108ce5fd00902918e4900907b94b6 (diff) | |
| download | mitmproxy-48728af43ad746d70ef3e251dc28b75028dea1e6.tar.gz mitmproxy-48728af43ad746d70ef3e251dc28b75028dea1e6.tar.bz2 mitmproxy-48728af43ad746d70ef3e251dc28b75028dea1e6.zip | |
moved flow editor state to redux
Diffstat (limited to 'web/src/css')
| -rw-r--r-- | web/src/css/codemirror.less | 4 | ||||
| -rw-r--r-- | web/src/css/flowview.less | 9 |
2 files changed, 11 insertions, 2 deletions
diff --git a/web/src/css/codemirror.less b/web/src/css/codemirror.less index 47c766f4..6504db50 100644 --- a/web/src/css/codemirror.less +++ b/web/src/css/codemirror.less @@ -2,4 +2,8 @@ border: 1px solid #ccc; } +.CodeMirror{ + height: auto !important; + max-height: 1000px !important; +} @import (inline) "../../node_modules/codemirror/lib/codemirror.css"; diff --git a/web/src/css/flowview.less b/web/src/css/flowview.less index 328e3a26..419739a4 100644 --- a/web/src/css/flowview.less +++ b/web/src/css/flowview.less @@ -8,13 +8,18 @@ } } +.edit-flow-container { + position: relative; +} + .edit-flow { position: absolute; - right: 25px; - top: 140px; + right: 0px; + top: 5px; height: 40px; width: 40px; border-radius: 20px; + z-index: 10000; background-color: white; border: solid 2px rgba(248, 145, 59, 0.7); |
