]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
make sign out clickable, ignoring automatic redirect for now
authorCasey <casey@rainier.(none)>
Thu, 10 Sep 2009 21:39:23 +0000 (14:39 -0700)
committerCasey <casey@rainier.(none)>
Thu, 10 Sep 2009 21:39:23 +0000 (14:39 -0700)
demos/chat/static/chat.css
demos/chat/templates/index.html

index 657d191c27e94216be86db8504015612c19d9209..a400c326057f3c29536dce3050bc7678aa1886d3 100644 (file)
@@ -49,3 +49,8 @@ td {
 #inbox .message {
   padding-top: 0.25em;
 }
+
+#nav {
+  float: right;
+  z-index: 99;
+}
index 1f2583faf5413c89fa37e07093d0b010f0ab3f38..cdd8658899f4f9123d42cf9f0a7a23e4dc0803ad 100644 (file)
@@ -6,7 +6,7 @@
     <link rel="stylesheet" href="{{ static_url("chat.css") }}" type="text/css"/>
   </head>
   <body>
-    <div style="float:right">
+    <div id="nav">
       <b>{{ escape(current_user["name"]) }}</b> -
       <a href="/auth/logout">{{ _("Sign out") }}</a>
     </div>