git://git.iain.cx/iain
/
readifood.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3d5b79f
)
Added popup div.
author
Iain Patterson
<me@iain.cx>
Thu, 7 Nov 2013 16:32:12 +0000
(11:32 -0500)
committer
Iain 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
patch
|
blob
|
history
www/style.css
patch
|
blob
|
history
diff --git
a/lib/footer.php
b/lib/footer.php
index
9943ff0
..
3ccf4a8
100644
(file)
--- a/
lib/footer.php
+++ b/
lib/footer.php
@@
-1,3
+1,4
@@
</div>
+<div id="popup"></div>
</body>
</html>
diff --git
a/www/style.css
b/www/style.css
index
84af4f4
..
79f7f55
100644
(file)
--- 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;
+}