aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/css
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-12-11 19:59:54 +0100
committerMaximilian Hils <git@maximilianhils.com>2016-12-11 19:59:54 +0100
commitd1c7b203f08d4b1e1ee3c7a50762a4f08843feef (patch)
tree0e1edad4249c0a88e623abf3479a4697c2114276 /web/src/css
parent6540aedaab107a7eecf57d2275e578d97fc77335 (diff)
downloadmitmproxy-d1c7b203f08d4b1e1ee3c7a50762a4f08843feef.tar.gz
mitmproxy-d1c7b203f08d4b1e1ee3c7a50762a4f08843feef.tar.bz2
mitmproxy-d1c7b203f08d4b1e1ee3c7a50762a4f08843feef.zip
[web] style flow menu
Diffstat (limited to 'web/src/css')
-rw-r--r--web/src/css/header.less72
1 files changed, 49 insertions, 23 deletions
diff --git a/web/src/css/header.less b/web/src/css/header.less
index c90e91c4..a026d8aa 100644
--- a/web/src/css/header.less
+++ b/web/src/css/header.less
@@ -3,7 +3,6 @@
@menu-height: 85px;
-
header {
padding-top: 6px;
background-color: white;
@@ -18,35 +17,62 @@ header {
}
}
+@menu-legend-height: 16px;
+@menu-group-hmargin: 3px;
.menu-group {
- @description-height: 16px;
+ margin: 0 @menu-group-hmargin;
display: inline-block;
height: @menu-height;
vertical-align: top;
+}
- .entry {
- height: (@menu-height - @description-height)/3;
- line-height: 1;
- padding: 0.5rem 1rem;
+.menu-content {
+ height: @menu-height - @menu-legend-height;
+ text-align: center;
- label {
- font-size: 1.2rem;
- font-weight: normal;
- margin: 0;
- }
- input[type=checkbox] {
- margin: 0 2px;
- vertical-align: middle;
+ > .btn {
+ height: @menu-height - @menu-legend-height;
+ text-align: center;
+ margin: 0 1px;
+ padding: 12px 5px;
+ border: none;
+ border-radius: 0;
+ i {
+ font-size: 20px;
+ display: block;
+ margin: 0 auto 5px;
}
}
- .description {
- height: @description-height;
- text-align: center;
- font-size: 0.9rem;
+}
+
+
+.menu-entry {
+ height: (@menu-height - @menu-legend-height)/3;
+ line-height: 1;
+ padding: 0.5rem 1rem;
+
+ label {
+ font-size: 1.2rem;
+ font-weight: normal;
+ margin: 0;
+ }
+ input[type=checkbox] {
+ margin: 0 2px;
+ vertical-align: middle;
}
}
+
+
+.menu-legend {
+ height: @menu-legend-height;
+ text-align: center;
+ font-size: 12px;
+ padding: 0 5px;
+}
+
.menu-group + .menu-group:before {
@space: 10px;
+ margin-left: -@menu-group-hmargin;
content: " ";
border-left: solid 1px lighten(grey, 40%);
margin-top: @space;
@@ -68,11 +94,11 @@ header {
padding: 2px 2.5px;
- >.form-control,> .input-group-addon, > .input-group-btn>.btn {
- height: 23.5px;
- padding: 1px 5px;
- font-size: 12px;
- line-height: 1.5;
+ > .form-control, > .input-group-addon, > .input-group-btn > .btn {
+ height: 23.5px;
+ padding: 1px 5px;
+ font-size: 12px;
+ line-height: 1.5;
}
}
}