diff options
| author | Maximilian Hils <git@maximilianhils.com> | 2014-09-18 02:22:10 +0200 |
|---|---|---|
| committer | Maximilian Hils <git@maximilianhils.com> | 2014-09-18 02:22:10 +0200 |
| commit | 0d64cc93278d39bd4c87cf5110d326f57574c8a1 (patch) | |
| tree | 41cdb8ea3fdd51304c23234ca8fd7c2372d96988 /web/src/css | |
| parent | 6a161be6b4c526fcc5f6581c7faff00a2c976f37 (diff) | |
| download | mitmproxy-0d64cc93278d39bd4c87cf5110d326f57574c8a1.tar.gz mitmproxy-0d64cc93278d39bd4c87cf5110d326f57574c8a1.tar.bz2 mitmproxy-0d64cc93278d39bd4c87cf5110d326f57574c8a1.zip | |
flowtable: add selection indicator, add keyboard navigation
Diffstat (limited to 'web/src/css')
| -rw-r--r-- | web/src/css/flowtable.less | 5 | ||||
| -rw-r--r-- | web/src/css/layout.less | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/web/src/css/flowtable.less b/web/src/css/flowtable.less index f96b7abf..d78fe31c 100644 --- a/web/src/css/flowtable.less +++ b/web/src/css/flowtable.less @@ -8,6 +8,9 @@ tr { cursor: pointer; + &.selected { + background-color: hsla(209, 52%, 84%, 0.5) !important; + } } td { @@ -19,8 +22,6 @@ //tr:nth-child(odd) { background-color : white; } tr:nth-child(even) { background-color : rgba(0,0,0,0.05); } //tr:hover { background-color : hsla(209, 52%, 84%, 0.5); } - - .col-tls { width: 10px; diff --git a/web/src/css/layout.less b/web/src/css/layout.less index c8fad204..320baee8 100644 --- a/web/src/css/layout.less +++ b/web/src/css/layout.less @@ -13,7 +13,7 @@ html, body, #container { } } -#main { +main { flex: 1 1 auto; overflow: auto; }
\ No newline at end of file |
