From: Iain Patterson Date: Thu, 7 Nov 2013 16:32:12 +0000 (-0500) Subject: Added popup div. X-Git-Tag: 2013-11-07~1 X-Git-Url: http://git.iain.cx/?a=commitdiff_plain;h=fccd91bbd28b197569d44f303caf6f997413af7e;p=readifood.git 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. --- 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; +}