diff options
author | Maximilian Hils <git@maximilianhils.com> | 2017-03-16 18:36:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-16 18:36:39 +0100 |
commit | 7a8b362df6878a2b7c6db3919b106c28eb91a8bf (patch) | |
tree | ac110683c34ac527e31aa2e9712ce3c60bee4138 | |
parent | 6d66184ebacbfa81759d61ac691cd91ffda616fc (diff) | |
parent | 9f8004ed62442eb141c549a5d1b498100c6b7d03 (diff) | |
download | mitmproxy-7a8b362df6878a2b7c6db3919b106c28eb91a8bf.tar.gz mitmproxy-7a8b362df6878a2b7c6db3919b106c28eb91a8bf.tar.bz2 mitmproxy-7a8b362df6878a2b7c6db3919b106c28eb91a8bf.zip |
Merge pull request #2156 from syahn/pretty-popup
[web] Adjust pop-up docs position
-rw-r--r-- | web/src/css/header.less | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/web/src/css/header.less b/web/src/css/header.less index 97c69930..aa9abc76 100644 --- a/web/src/css/header.less +++ b/web/src/css/header.less @@ -106,10 +106,18 @@ header { .filter-input .popover { top: 27px; + left: 43px; display: block; max-width: none; opacity: 0.9; + @media (max-width: @screen-xs-max) { + + top: 16px; + left: 29px; + right: 2px; + } + .popover-content { max-height: 500px; overflow-y: auto; |