Added popup div.
authorIain Patterson <me@iain.cx>
Thu, 7 Nov 2013 16:32:12 +0000 (11:32 -0500)
committerIain Patterson <me@iain.cx>
Thu, 7 Nov 2013 16:32:12 +0000 (11:32 -0500)
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
www/style.css

index 9943ff0..3ccf4a8 100644 (file)
@@ -1,3 +1,4 @@
 </div>
 </div>
+<div id="popup"></div>
 </body>
 </html>
 </body>
 </html>
index 84af4f4..79f7f55 100644 (file)
@@ -16,6 +16,8 @@
   }
 
   .printonly { }
   }
 
   .printonly { }
+
+  #popup { }
 }
 
 @media screen {
 }
 
 @media screen {
@@ -97,3 +99,12 @@ a.delete {
 table.report > * > tr > td {
   padding-right: 0.25em;
 }
 table.report > * > tr > td {
   padding-right: 0.25em;
 }
+
+#popup {
+  display: none;
+  position: absolute;
+  z-index: 10;
+  width: 500px;
+  height: 375px;
+  background: #eeeeee;
+}