Style logged-in message.
authorGreg Price <price@mit.edu>
Thu, 17 Apr 2008 01:49:51 +0000 (21:49 -0400)
committerGreg Price <price@mit.edu>
Thu, 17 Apr 2008 01:49:51 +0000 (21:49 -0400)
Moved to upper right, name in bold.

Also fixed a bug where a tag went unmatched when 'simple' is true.

svn path=/trunk/packages/sipb-xen-www/; revision=417

code/static/style.css
code/templates/skeleton.tmpl

index 3b713ec..cf11700 100644 (file)
@@ -64,3 +64,11 @@ td.error {
   display: inline;
   padding: .2em;
 }
+
+/* Logged-in welcome message. */
+.loggedin {
+  float: right;
+}
+.loggedin .name {
+  font-weight: bold;
+}
index 99962db..4e3e51a 100644 (file)
@@ -44,7 +44,7 @@ function helppopup(name){
 </div>
 
 #if not $varExists('simple') or not $simple
-<p>[You are logged in as $user.]</p>
+<p class="loggedin">Welcome, <span class="name">$user</span>.</p>
 
 <ul class="navigation">
 <li><a href="list">List</a></li>
@@ -53,8 +53,8 @@ function helppopup(name){
 <li><a href="vnc?machine_id=$machine.machine_id">Console</a></li>
 #end if
 <li><a href="help">Help</a></ul></li>
-#end if
 </ul>
+#end if
 
 <div id="result" class="result">
 #if $varExists('result')