client/servlet/www/static/css/mktree.jsp

Code
Comments
Other
Rev Date Author Line
1129 30 Jan 07 gregory 1 /**
1129 30 Jan 07 gregory 2 <% response.setHeader("Content-Type", "text/css"); %>
1129 30 Jan 07 gregory 3 <%
1129 30 Jan 07 gregory 4   String img = request.getContextPath() + "/static/img";
1129 30 Jan 07 gregory 5 %>
1129 30 Jan 07 gregory 6 **/
1129 30 Jan 07 gregory 7
1129 30 Jan 07 gregory 8 /* Put this inside a @media qualifier so Netscape 4 ignores it */
1129 30 Jan 07 gregory 9 @media screen, print { 
1129 30 Jan 07 gregory 10   /* Turn off list bullets */
1132 30 Jan 07 gregory 11   ul.mktree  li { list-style: none; white-space: nowrap;} 
1129 30 Jan 07 gregory 12   /* Control how "spaced out" the tree is */
1184 13 Feb 07 gregory 13   ul.mktree, ul.mktree ul , ul.mktree li { margin-left:10px; padding:1px; }
1129 30 Jan 07 gregory 14   /* Provide space for our own "bullet" inside the LI */
1129 30 Jan 07 gregory 15   ul.mktree  li           .bullet { padding-left: 15px; }
1129 30 Jan 07 gregory 16   /* Show "bullets" in the links, depending on the class of the LI that the link's in */
1194 14 Feb 07 gregory 17   ul.mktree  li.liOpen    .bullet { cursor: pointer; background: url('<%=img%>/minus.gif')  center left no-repeat; }
1194 14 Feb 07 gregory 18   ul.mktree  li.liClosed  .bullet { cursor: pointer; background: url('<%=img%>/plus.gif')   center left no-repeat; }
1129 30 Jan 07 gregory 19   ul.mktree  li.liBullet  .bullet { cursor: pointer; background: url('<%=img%>/bullet.gif') center left no-repeat; }
1129 30 Jan 07 gregory 20   /* Sublists are visible or not based on class of parent LI */
1129 30 Jan 07 gregory 21   ul.mktree  li.liOpen    ul { display: block; }
1129 30 Jan 07 gregory 22   ul.mktree  li.liClosed  ul { display: none; }
1129 30 Jan 07 gregory 23   /* Format menu items differently depending on what level of the tree they are in */
1184 13 Feb 07 gregory 24   ul.mktree  li { font-size: 1em; }
1184 13 Feb 07 gregory 25   ul.mktree  li ul li { font-size: 0.9em; }
1129 30 Jan 07 gregory 26 }