From 6d29f93e9eaaabe20c0d46887048f2367bfbb3cf Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Mon, 30 Mar 2015 03:49:50 +0200 Subject: web: add prompt for keyboard navigation --- libmproxy/web/static/app.css | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'libmproxy/web/static/app.css') diff --git a/libmproxy/web/static/app.css b/libmproxy/web/static/app.css index 2e71a32b..a7dc4f00 100644 --- a/libmproxy/web/static/app.css +++ b/libmproxy/web/static/app.css @@ -351,6 +351,31 @@ header .menu { max-width: 100%; max-height: 100%; } +.prompt-dialog { + top: 0; + bottom: 0; + left: 0; + right: 0; + position: fixed; + z-index: 100; + background-color: rgba(0, 0, 0, 0.1); +} +.prompt-content { + position: fixed; + bottom: 0; + left: 0; + right: 0; + height: 25px; + padding: 2px 5px; + background-color: white; + box-shadow: 0 -1px 3px lightgray; +} +.prompt-content .option { + cursor: pointer; +} +.prompt-content .option:not(:last-child)::after { + content: ", "; +} .eventlog { height: 200px; flex: 0 0 auto; -- cgit v1.2.3