diff options
| author | Maximilian Hils <git@maximilianhils.com> | 2015-03-17 03:05:59 +0100 |
|---|---|---|
| committer | Maximilian Hils <git@maximilianhils.com> | 2015-03-17 03:05:59 +0100 |
| commit | 40c242c3f6e9de093f68ad3e1f8887ae49a28b84 (patch) | |
| tree | 5094f259893167b6425a88c6709ed6135d573eaa /libmproxy/web/static/app.css | |
| parent | 4a92c425175a4e592c8760f028be683f53ab9b90 (diff) | |
| download | mitmproxy-40c242c3f6e9de093f68ad3e1f8887ae49a28b84.tar.gz mitmproxy-40c242c3f6e9de093f68ad3e1f8887ae49a28b84.tar.bz2 mitmproxy-40c242c3f6e9de093f68ad3e1f8887ae49a28b84.zip | |
add table sort
Diffstat (limited to 'libmproxy/web/static/app.css')
| -rw-r--r-- | libmproxy/web/static/app.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libmproxy/web/static/app.css b/libmproxy/web/static/app.css index 047651b4..4f24ddd9 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; |
