aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/css/flowdetail.less
diff options
context:
space:
mode:
authorJim Shaver <dcypherd@gmail.com>2015-06-23 21:48:05 -0500
committerJim Shaver <dcypherd@gmail.com>2015-06-23 21:48:05 -0500
commit080e4534253338c94e6d8c86cb3679ff15410f85 (patch)
tree6322fb822332b4135f0ff14de8c2d7137016f734 /web/src/css/flowdetail.less
parentdb5c0b210b0133d7cd58124c727dbc24480e2568 (diff)
parent074d8d7c7463cdb1f0a90e165a4b3ada3554b4c2 (diff)
downloadmitmproxy-080e4534253338c94e6d8c86cb3679ff15410f85.tar.gz
mitmproxy-080e4534253338c94e6d8c86cb3679ff15410f85.tar.bz2
mitmproxy-080e4534253338c94e6d8c86cb3679ff15410f85.zip
Merge branch 'master' into hardfailvenv
Conflicts: dev
Diffstat (limited to 'web/src/css/flowdetail.less')
-rw-r--r--web/src/css/flowdetail.less51
1 files changed, 43 insertions, 8 deletions
diff --git a/web/src/css/flowdetail.less b/web/src/css/flowdetail.less
index 7649057f..edf97566 100644
--- a/web/src/css/flowdetail.less
+++ b/web/src/css/flowdetail.less
@@ -1,13 +1,13 @@
//TODO: Move into some utils
-.monospace(){
+.monospace() {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
-
.flow-detail {
width: 100%;
- overflow: auto;
-
+ overflow-x: auto;
+ overflow-y: scroll;
+
nav {
background-color: #F2F2F2;
}
@@ -27,18 +27,50 @@
max-height: 100px;
overflow-y: auto;
}
+ .request-line {
+ margin-bottom: 2px;
+ }
+ /*.request .response-line,
+ .response .request-line {
+ opacity: 0.7;
+ }*/
+
+ hr {
+ margin: 0 0 5px;
+ }
+
}
+.inline-input {
+ margin: 0 -5px;
+ padding: 0 5px;
+
+ &[contenteditable] {
+
+ background-color: rgba(255, 255, 255, 0.2);
+
+ &.has-warning {
+ color: rgb(255, 184, 184);
+ }
+ &.has-success {
+ //color: green;
+ }
+ }
+}
+
+.view-options {
+ margin-top: 10px;
+}
.flow-detail table {
.monospace();
width: 100%;
table-layout: fixed;
word-break: break-all;
-
+
tr {
- &:not(:first-child){
- border-top: 1px solid #f7f7f7;
+ &:not(:first-child) {
+ border-top: 1px solid #f7f7f7;
}
}
@@ -59,12 +91,15 @@
}
.header-table {
+ td {
+ line-height: 1.3em;
+ }
.header-name {
width: 33%;
padding-right: 1em;
}
.header-value {
-
+
}
}