diff options
| author | Aldo Cortesi <aldo@nullcube.com> | 2014-12-27 23:08:56 +1300 |
|---|---|---|
| committer | Aldo Cortesi <aldo@nullcube.com> | 2014-12-27 23:08:56 +1300 |
| commit | ab06c2436be23c9bfbf3af924f0117ecdb6724b4 (patch) | |
| tree | 950bec445a85dd4eef9efb8ebe83b94f314345d7 /web/src/css | |
| parent | 8a8437470e224ee53acbd9a353c7d01a83168cd4 (diff) | |
| parent | 3e63107e9473e3ec6676c047171a5d23c79b7dcd (diff) | |
| download | mitmproxy-ab06c2436be23c9bfbf3af924f0117ecdb6724b4.tar.gz mitmproxy-ab06c2436be23c9bfbf3af924f0117ecdb6724b4.tar.bz2 mitmproxy-ab06c2436be23c9bfbf3af924f0117ecdb6724b4.zip | |
Merge branch 'master' of ssh.github.com:mitmproxy/mitmproxy
Diffstat (limited to 'web/src/css')
| -rw-r--r-- | web/src/css/header.less | 42 |
1 files changed, 29 insertions, 13 deletions
diff --git a/web/src/css/header.less b/web/src/css/header.less index ce85d528..3bbd2833 100644 --- a/web/src/css/header.less +++ b/web/src/css/header.less @@ -1,21 +1,37 @@ +@import (reference) '../../bower_components/bootstrap/less/variables.less'; +@import (reference) '../../bower_components/bootstrap/less/mixins/grid.less'; + header { - background-color: white; + background-color: white; + + .title-bar { + line-height: 25px; + text-align: center; + } - .title-bar { - line-height: 25px; - text-align: center; - } + @separator-color: lighten(grey, 15%); - @separator-color: lighten(grey, 15%); + .menu { + padding: 10px; + border-bottom: solid @separator-color 1px; + } +} + +@menu-row-gutter-width: 5px; +.menu-row { + .make-row(@menu-row-gutter-width); +} - .menu { - padding: 10px; - border-bottom: solid @separator-color 1px; - } +.filter-input { + .make-md-column(3, @menu-row-gutter-width); } .filter-input .popover { - top: 27px; - display: block; - width: 100%; + top: 27px; + display: block; + max-width: none; + .popover-content { + max-height: 500px; + overflow-y: auto; + } }
\ No newline at end of file |
