[CMF-checkins] CVS: Products/CMFDecor/skins/zpt_generic - logged_in.pt:1.2 zpt_stylesheet.css:1.2

Andrew Sawyers andrew@digicool.com
Fri, 27 Jul 2001 15:18:52 -0400


Update of /cvs-repository/Products/CMFDecor/skins/zpt_generic
In directory cvs.zope.org:/tmp/cvs-serv870/CMFDecor/skins/zpt_generic

Modified Files:
	logged_in.pt zpt_stylesheet.css 
Log Message:

*fixed a cookie bug in TALES syntax in logged_in


 
=== Products/CMFDecor/skins/zpt_generic/logged_in.pt 1.1 => 1.2 ===
+<div tal:condition="exists: here/portal_skins | nothing">
   <div tal:condition="here/portal_skins/updateSkinCookie | nothing"
         tal:define="dummy here/setupCurrentSkin">
   </div>
@@ -9,8 +9,8 @@
 <body>
 <div metal:fill-slot="main">
  <div tal:define="p_props here/portal_properties">
-  <div tal:condition="here/portal_membership/isAnonymousUser | nothing"
-       tal:define="dummy python: request['RESPONSE'].expireCookie('__ac', path='/')">
+  <div tal:condition="here/portal_membership/isAnonymousUser | nothing">
+       <span tal:define="dummy python: request['RESPONSE'].expireCookie('__ac', path='/')"></span>
       <h1 class="DesktopTitle">Login failure</h1>
       <p class="Desktop">You are not currently logged in.  Your username and or password may be incorrect.
 	  Your browser may also not be configured to accept HTTP cookies.  If you need help please contact 


=== Products/CMFDecor/skins/zpt_generic/zpt_stylesheet.css 1.1 => 1.2 ===
 
 div.Desktop a:link {
-    text-decoration: hover;
+    text-decoration: none;
+    color: #336699;
+}
+
+div.Desktop table tr td {
+    font-size: 80%;
     color: #336699;
 }
 
 div.Desktop a:visited {
-    text-decoration: hover;
+    text-decoration: none;
     color: #336699;
 }
 
 div.Desktop a:active {
-    text-decoration: hover;
+    text-decoration: none;
     color: #FF0000;
 }