From 06cd368cd111a4ef61786bc70f1e95eaa3540b5d Mon Sep 17 00:00:00 2001 From: Roland Stigge Date: Sat, 20 Jan 2018 13:41:20 +0100 Subject: Progress indicator --- html/webbox.css | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) (limited to 'html/webbox.css') diff --git a/html/webbox.css b/html/webbox.css index dbed171..b9421a5 100644 --- a/html/webbox.css +++ b/html/webbox.css @@ -79,6 +79,28 @@ div, td, h1 { box-sizing: border-box; } + +.progresswindow { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0); + opacity: 1; + z-index: 20; + border-width: 0; + border-collapse: collapse; + box-sizing: border-box; +} + +.progresscanvas { + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + background-color: rgba(0, 0, 0, 0); +} table.menudialog { width: 100%; } @@ -205,6 +227,15 @@ table.list td.name { margin: 0; } + .progresswindow { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + margin: 0; + } + table.list td { padding: 5px; } @@ -244,3 +275,13 @@ table.list td.name { padding: 0; border-collapse: collapse; } + +::-moz-selection { /* Firefox */ + color: #000000; + background: #FFFFFF; +} + +::selection { + color: #000000; + background: #FFFFFF; +} -- cgit v1.2.3