[Rt-devel] RT 3.8.7 dangling div in Elements/Header

Dale Bewley dlbewley at lib.ucdavis.edu
Fri Dec 11 19:18:06 EST 2009


In both 3.8.6 and 3.8.7 (not looked elsewhere) the file /usr/share/rt3/html/Elements/Header places Elements/Logo outside of the <div id="quickbar">. The web2/layout.css refers to the logo within the quickbar.

div#quickbar, div#logo {
    font-size: 0.9em;
}
div#quickbar a, div#logo a {
    color: #000;
}

It seems to me the Elements/Logo should be moved down. (see patch below)

Also, it seems that <div> with id quickbar is missing a corresponding </div>.

[root at electro Elements]# diff -u Header.3.8.7.dist Header
--- Header.3.8.7.dist	2009-12-11 16:04:48.000000000 -0800
+++ Header	2009-12-10 16:51:56.000000000 -0800
@@ -83,10 +83,11 @@
   <body<% $id && qq[ id="comp-$id"] |n %>>
 
 % if ($ShowBar) {
-<& /Elements/Logo, %ARGS &>
 
 <div id="quickbar">
+  <& /Elements/Logo, %ARGS &>
   <& /Elements/PersonalQuickbar, %ARGS &>
+</div> <!-- end quickbar -->
 % }
 
 <%INIT>

--
Dale Bewley - Unix Administrator - Shields Library - UC Davis
GPG: 0xB098A0F3 0D5A 9AEB 43F4 F84C 7EFD  1753 064D 2583 B098 A0F3


More information about the Rt-devel mailing list