diff --git a/platform/webext/options_ui.html b/platform/webext/options_ui.html deleted file mode 100644 index 368167a..0000000 --- a/platform/webext/options_ui.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - -
- - - - - diff --git a/src/_locales/en/messages.json b/src/_locales/en/messages.json index 6f2c8b0..0e2f0f9 100644 --- a/src/_locales/en/messages.json +++ b/src/_locales/en/messages.json @@ -11,6 +11,10 @@ "message": "uMatrix — Dashboard", "description": "" }, + "loggerPageName": { + "message": "uMatrix — Logger", + "description": "Title for the logger window" + }, "settingsPageName": { "message": "Settings", "description": "a tab in dashboard" diff --git a/src/css/common.css b/src/css/common.css index e3d3139..6950fa9 100644 --- a/src/css/common.css +++ b/src/css/common.css @@ -55,6 +55,10 @@ body[dir="rtl"] { position: relative; cursor: pointer; } +*[data-i18n-tip]:after { + content: ""; + opacity: 0; + } *[data-i18n-tip]:hover:after { background-color: #fffffa; border: 1px solid gray; @@ -65,10 +69,14 @@ body[dir="rtl"] { font: 12px sans-serif; line-height: 140%; min-width: 25vw; + opacity: 1; padding: 4px 6px; + pointer-events: none; position: absolute; text-align: start; top: 110%; + -webkit-transition: opacity 0.15s 0.5s; + transition: opacity 0.15s 0.5s; white-space: pre-line; z-index: 20; } diff --git a/src/css/logger-ui.css b/src/css/logger-ui.css index b411807..4ff7fef 100644 --- a/src/css/logger-ui.css +++ b/src/css/logger-ui.css @@ -12,6 +12,7 @@ body { #toolbar { background-color: white; border: 0; + border-bottom: 1px solid #ccc; box-sizing: border-box; -moz-box-sizing: border-box; left: 0; @@ -125,7 +126,6 @@ body.f table tr.f { body #content td { border: 1px solid #ccc; - border-top: none; min-width: 0.5em; padding: 3px; vertical-align: top; @@ -133,9 +133,6 @@ body #content td { word-break: break-all; word-wrap: break-word; } -#content table tr td { - border-top: 1px solid #ccc; - } #content table tr td:first-of-type { border-left: none; } diff --git a/src/dashboard.html b/src/dashboard.html index b2140bd..1fa2196 100644 --- a/src/dashboard.html +++ b/src/dashboard.html @@ -2,6 +2,7 @@ +