summaryrefslogtreecommitdiff
path: root/template/logged_dump.st
diff options
context:
space:
mode:
authorScott Ostler <sostler@ubuntu.(none)>2009-12-15 22:09:02 -0500
committerScott Ostler <sostler@ubuntu.(none)>2009-12-15 22:09:02 -0500
commit5a8312ca25868679df1acb3b3fc208482460ee0e (patch)
treeea10033604aad870d3eb1fe849a47999919d7164 /template/logged_dump.st
parent3e3015be26c5d73a864a693e9694b5dee26e8a31 (diff)
New design
Diffstat (limited to 'template/logged_dump.st')
-rwxr-xr-xtemplate/logged_dump.st38
1 files changed, 34 insertions, 4 deletions
diff --git a/template/logged_dump.st b/template/logged_dump.st
index 51b67c6..706f24b 100755
--- a/template/logged_dump.st
+++ b/template/logged_dump.st
@@ -1,8 +1,38 @@
+ <style type="text/css">
+
+ .logged-dump {
+img{
+ max-width:650px;
+ width: expression(this.width > 650 ? 650: true);
+ max-height:400px;
+ height: expression(this.width > 400 ? 400: true);
+ max-width:400px;
+ }
+ .content {
+img{
+ max-width:650px;
+ width: expression(this.width > 650 ? 650: true);
+ max-height:400px;
+ height: expression(this.width > 400 ? 400: true);
+ max-width:400px;
+ }
+
+img{
+ max-width:650px;
+ width: expression(this.width > 650 ? 650: true);
+ max-height:400px;
+ height: expression(this.width > 400 ? 400: true);
+ max-width:400px;
+ body {
+ background-image: url(static/bg4.png);
+}
+ body,td,th {
+ font-family: Arial, Helvetica, sans-serif;
+}
+ </style>
<div class="logged-dump">
- $if(dump.avatar)$
- <img class="dump-avatar" src="$dump.avatar$" width="75" height="75">
- $endif$
- <div><b>$dump.nick$</b> -- $dump.created_on$</div>
+
+ <div>$dump.created_on$</div>
<div class="content">$dump.content$</div>
<hr />
</div>