From fccd91bbd28b197569d44f303caf6f997413af7e Mon Sep 17 00:00:00 2001 From: Iain Patterson Date: Thu, 7 Nov 2013 11:32:12 -0500 Subject: [PATCH] Added popup div. A new, initially hidden div, is defined at the end of the document. Later we will use it to show popup windows. --- lib/footer.php | 1 + www/style.css | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/lib/footer.php b/lib/footer.php index 9943ff0..3ccf4a8 100644 --- a/lib/footer.php +++ b/lib/footer.php @@ -1,3 +1,4 @@ + diff --git a/www/style.css b/www/style.css index 84af4f4..79f7f55 100644 --- a/www/style.css +++ b/www/style.css @@ -16,6 +16,8 @@ } .printonly { } + + #popup { } } @media screen { @@ -97,3 +99,12 @@ a.delete { table.report > * > tr > td { padding-right: 0.25em; } + +#popup { + display: none; + position: absolute; + z-index: 10; + width: 500px; + height: 375px; + background: #eeeeee; +} -- 2.7.4