aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/css/flowview.less
diff options
context:
space:
mode:
authorClemens <cle1000.cb@gmail.com>2016-07-15 14:41:30 +0200
committerClemens <cle1000.cb@gmail.com>2016-07-15 14:41:30 +0200
commit87797d7ac07108ce5fd00902918e4900907b94b6 (patch)
treeda021755cc692b33ccf33eb3ebd8cd8ba89a8868 /web/src/css/flowview.less
parent5f3782dd5fb8be4c196f57cb07fd1cc2fd6b2f56 (diff)
downloadmitmproxy-87797d7ac07108ce5fd00902918e4900907b94b6.tar.gz
mitmproxy-87797d7ac07108ce5fd00902918e4900907b94b6.tar.bz2
mitmproxy-87797d7ac07108ce5fd00902918e4900907b94b6.zip
added new btn, changed to codemirror
Diffstat (limited to 'web/src/css/flowview.less')
-rw-r--r--web/src/css/flowview.less26
1 files changed, 25 insertions, 1 deletions
diff --git a/web/src/css/flowview.less b/web/src/css/flowview.less
index aa8a2df2..328e3a26 100644
--- a/web/src/css/flowview.less
+++ b/web/src/css/flowview.less
@@ -6,4 +6,28 @@
max-width: 100%;
max-height: 100%;
}
-} \ No newline at end of file
+}
+
+.edit-flow {
+ position: absolute;
+ right: 25px;
+ top: 140px;
+ height: 40px;
+ width: 40px;
+ border-radius: 20px;
+
+ background-color: white;
+ border: solid 2px rgba(248, 145, 59, 0.7);
+
+ text-align: center;
+ font-size: 22px;
+ line-height: 37px;
+
+ transition: all 100ms ease-in-out;
+}
+
+.edit-flow:hover {
+ background-color: rgba(239, 108, 0, 0.7);
+ color: rgba(0,0,0,0.8);
+ border: solid 2px transparent;
+}