diff --git a/static/css/style.css b/static/css/style.css index ac069dfc7..d8bb2b5db 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -574,3 +574,13 @@ form label { left: 50%; transform: translate(-50%, -50%); } + +#c { + position: absolute; + top: 0; + left: 0; + width: 100%; /* Make sure the canvas fills the modal */ + height: 100%; + z-index: 1000; /* Ensure it's above the blurred background */ + pointer-events: none; /* Ensure clicks pass through to underlying content */ +} diff --git a/templates/dashboard.html b/templates/dashboard.html index b6e355a60..a4f7c6fee 100755 --- a/templates/dashboard.html +++ b/templates/dashboard.html @@ -104,15 +104,6 @@ z-index: 1000; /* Ensure it's behind the canvas */ } - #c { - position: absolute; - top: 0; - left: 0; - width: 100%; /* Make sure the canvas fills the modal */ - height: 100%; - z-index: 1000; /* Ensure it's above the blurred background */ - pointer-events: none; /* Ensure clicks pass through to underlying content */ - } @@ -127,12 +118,6 @@