aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/web/static/app.css
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/web/static/app.css')
-rw-r--r--libmproxy/web/static/app.css46
1 files changed, 45 insertions, 1 deletions
diff --git a/libmproxy/web/static/app.css b/libmproxy/web/static/app.css
index 047651b4..d767ac76 100644
--- a/libmproxy/web/static/app.css
+++ b/libmproxy/web/static/app.css
@@ -175,6 +175,33 @@ header .menu {
.flow-table th {
font-weight: normal;
box-shadow: 0 1px 0 #a6a6a6;
+ position: relative !important;
+ padding-left: 1px;
+ -webkit-touch-callout: none;
+ -webkit-user-select: none;
+ -khtml-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+.flow-table th.sort-asc,
+.flow-table th.sort-desc {
+ background-color: #fafafa;
+}
+.flow-table th.sort-asc:after,
+.flow-table th.sort-desc:after {
+ font: normal normal normal 14px/1 FontAwesome;
+ position: absolute;
+ right: 3px;
+ top: 3px;
+ padding: 2px;
+ background-color: rgba(250, 250, 250, 0.8);
+}
+.flow-table th.sort-asc:after {
+ content: "\f0de";
+}
+.flow-table th.sort-desc:after {
+ content: "\f0dd";
}
.flow-table tr {
cursor: pointer;
@@ -244,7 +271,8 @@ header .menu {
}
.flow-detail {
width: 100%;
- overflow: auto;
+ overflow-x: auto;
+ overflow-y: scroll;
}
.flow-detail nav {
background-color: #F2F2F2;
@@ -263,6 +291,12 @@ header .menu {
max-height: 100px;
overflow-y: auto;
}
+.flow-detail hr {
+ margin: 0 0 5px;
+}
+.view-options {
+ margin-top: 10px;
+}
.flow-detail table {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
width: 100%;
@@ -279,6 +313,9 @@ header .menu {
width: 50%;
padding-right: 1em;
}
+.header-table td {
+ line-height: 1.3em;
+}
.header-table .header-name {
width: 33%;
padding-right: 1em;
@@ -289,6 +326,13 @@ header .menu {
text-overflow: ellipsis;
white-space: nowrap;
}
+.flowview-image {
+ text-align: center;
+}
+.flowview-image img {
+ max-width: 100%;
+ max-height: 100%;
+}
.eventlog {
height: 200px;
flex: 0 0 auto;