You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs-cvs@perl.apache.org by st...@apache.org on 2002/01/18 03:23:09 UTC

cvs commit: modperl-docs/tmpl/custom/html index index_body page page_body tail

stas        02/01/17 18:23:09

  Modified:    src      style.css
               tmpl/custom/html index index_body page page_body tail
  Log:
  * moved breadcrumb into its own box
  * renamed some div.'s
  * moved divs around so they are easier to find
  * added two <br> between tail and the right-box closing div, to add some
  "blank" space at the end of page
  Submitted by:	Thomas Klausner <do...@zsi.at>
  Reviewed by:	stas
  
  Revision  Changes    Path
  1.9       +56 -62    modperl-docs/src/style.css
  
  Index: style.css
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/style.css,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- style.css	17 Jan 2002 16:02:32 -0000	1.8
  +++ style.css	18 Jan 2002 02:23:09 -0000	1.9
  @@ -35,60 +35,17 @@
           font-family: courier new, courier, monospace;
   }
   
  -div.navbar       a {text-decoration: none; color: #0000ff;}
  -div.activenav    a {text-decoration: none; color: #ffffff;}
  -div.navbarglobal a {text-decoration: none; color: #828DA6;}
  -div.notactivenav a {text-decoration: none; color: #525D76;}
  -div.toc          a {text-decoration: none; color: #0000ff;}
   
  -/* boxes */
  -div.leftcont {
  +/* main boxes */
  +div.leftbox {
           position: absolute;
           top: 5px;
           left: 5px;
           width: 160px;
  -}
  -
  -div.cbox {
  -        position: absolute;
  -        top: 5px;
  -        left: 175px;
           padding: 0px;
  -        margin-right: 10px;
  -}
  -
  -div.content {
  -        padding: 5px;
  -        border: 2px;
  -        border-style: solid;
  -        border-color: #000000;
  -        background-color: #ffffff;
   }
   
  -div.tail {
  -        padding: 1px;
  -        font-size: x-small;
  -        font-family: helvetica, verdana, sans-serif;
  -        border: 2px;
  -        border-style: solid;
  -        border-color: #000000;
  -        background-color: #ffffff;
  -}
  -
  -div.toc {
  -        font-size: small;
  -}
  -
  -div.navbarlocaltext {
  -        font-size: x-small;
  -}
  -
  -
  -div.download {
  -        font-size: x-small;
  -}
  -
  -div.cbody {
  +div.rightbox {
           position: absolute;
           top: 5px;
           left: 175px;
  @@ -96,30 +53,33 @@
           margin-right: 10px;
   }
   
  +/* boxes in the left box */
   div.logo {
           padding: 5px;
           border: 1px;
           border-style: solid;
           border-color: #000000;
           text-align: center;
  +        background-color: #ffffff;
   }
   
  -
  -div.navbar {
  -        padding: 2px;
  -        border: 0px;
  +div.menu {
  +        border: 1px;
  +        padding: 5px;
           border-style: solid;
           border-color: #000000;
  +        background-color: #ffffff;
   }
   
   div.activenav {
           font-weight: bold;
  -        padding: 2px;
  +        padding: 5px;
           background-color: #525D76;
   }
  +div.activenav    a {text-decoration: none; color: #ffffff;}
   
   div.notactivenav {
  -        padding: 2px;
  +        padding: 5px;
           font-weight: bold;
           border: 1px;
           border-style: solid;
  @@ -127,30 +87,64 @@
           margin-top: -1px;
   
   }
  +div.notactivenav a {text-decoration: none; color: #525D76;}
   
  -div.navbarglobal {
  -        padding: 2px;
  +div.ad {
  +        border: 1px;
  +        padding: 5px;
  +        border-style: solid;
  +        border-color: #000000;
           background-color: #ffffff;
  -        color: #000000;
  +        font-size: x-small;
   }
   
  -div.navbarlocal {
  -        text-align: right;
  +/* boxes in the right box */
  +div.content {
  +        padding: 5px;
  +        border: 2px;
  +        border-style: solid;
  +        border-color: #000000;
  +        background-color: #ffffff;
   }
   
  -div.menu {
  -        border: 1px;
  +div.navbarglobal {
           padding: 5px;
  +        border: 2px;
           border-style: solid;
           border-color: #000000;
           background-color: #ffffff;
  +        color: #000000;
   }
  +div.navbarglobal a {text-decoration: none; color: #828DA6;}
   
  -div.ad {
  -        border: 1px;
  -        padding: 5px;
  +div.navbarlocal {
  +        text-align: right;
  +}
  +
  +
  +
  +div.tail {
  +        padding: 1px;
  +        font-size: x-small;
  +        font-family: helvetica, verdana, sans-serif;
  +        border: 2px;
           border-style: solid;
           border-color: #000000;
           background-color: #ffffff;
  +}
  +
  +div.toc {
  +        font-size: small;
  +}
  +div.toc          a {text-decoration: none; color: #0000ff;}
  +
  +
  +div.download {
           font-size: x-small;
   }
  +
  +
  +
  +
  +
  +
  
  
  
  1.6       +3 -5      modperl-docs/tmpl/custom/html/index
  
  Index: index
  ===================================================================
  RCS file: /home/cvs/modperl-docs/tmpl/custom/html/index,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- index	15 Jan 2002 15:39:27 -0000	1.5
  +++ index	18 Jan 2002 02:23:09 -0000	1.6
  @@ -10,16 +10,14 @@
       content = ''
   -%]
   
  -<div class='leftcont'>
  +<div class='leftbox'>
       [% INCLUDE menu_top_level nav=doc.nav; %]
       <br>
       [% INCLUDE ad -%]
   </div>
   
  -<div class='cbox'>
  -    <div class='content'>
  -        [% INCLUDE index_body %]
  -    </div>
  +<div class='rightbox'>
  +    [% INCLUDE index_body %]
       <br>
       [% INCLUDE tail %]
   </div>
  
  
  
  1.2       +6 -0      modperl-docs/tmpl/custom/html/index_body
  
  Index: index_body
  ===================================================================
  RCS file: /home/cvs/modperl-docs/tmpl/custom/html/index_body,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index_body	5 Jan 2002 19:29:53 -0000	1.1
  +++ index_body	18 Jan 2002 02:23:09 -0000	1.2
  @@ -1,6 +1,11 @@
   [%
       INCLUDE navbar_global nav=doc.nav;
  +%]
  +<br>
   
  +<!-- content-->
  +<div class='content'>
  +[%
       INCLUDE title;
   
       IF doc.body.top;
  @@ -18,3 +23,4 @@
       END;
   
   %]
  +</div>
  \ No newline at end of file
  
  
  
  1.6       +5 -5      modperl-docs/tmpl/custom/html/page
  
  Index: page
  ===================================================================
  RCS file: /home/cvs/modperl-docs/tmpl/custom/html/page,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- page	15 Jan 2002 15:39:27 -0000	1.5
  +++ page	18 Jan 2002 02:23:09 -0000	1.6
  @@ -10,7 +10,7 @@
       content = ''
   -%]
   
  -<div class='leftcont'>
  +<div class='leftbox'>
       [% INCLUDE menu_top_level
                 nav=doc.nav
                 rel_doc_root=doc.dir.rel_doc_root;
  @@ -19,12 +19,12 @@
       [% INCLUDE ad -%]
   </div>
   
  -<div class='cbody'>
  -    <div class='content'>
  -        [% INCLUDE page_body %]
  -    </div>
  +<!-- right box-->
  +<div class='rightbox'>
  +    [% INCLUDE page_body %]
       <br>
       [% INCLUDE tail %]
  +<!-- end right box-->
   </div>
   
   </body>
  
  
  
  1.4       +7 -2      modperl-docs/tmpl/custom/html/page_body
  
  Index: page_body
  ===================================================================
  RCS file: /home/cvs/modperl-docs/tmpl/custom/html/page_body,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- page_body	17 Jan 2002 16:02:32 -0000	1.3
  +++ page_body	18 Jan 2002 02:23:09 -0000	1.4
  @@ -2,7 +2,12 @@
       INCLUDE navbar_global 
           nav=doc.nav
           rel_doc_root=doc.dir.rel_doc_root;
  +%]
  +<br>
   
  +<!-- content-->
  +<div class='content'>
  +[%
       INCLUDE title;
   
       INCLUDE navbar_local
  @@ -25,6 +30,6 @@
   
   
   %]
  -
  -
  +</div>
  +<!-- end content-->
   
  
  
  
  1.3       +1 -1      modperl-docs/tmpl/custom/html/tail
  
  Index: tail
  ===================================================================
  RCS file: /home/cvs/modperl-docs/tmpl/custom/html/tail,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- tail	15 Jan 2002 15:39:27 -0000	1.2
  +++ tail	18 Jan 2002 02:23:09 -0000	1.3
  @@ -21,5 +21,5 @@
           </tr>
       </table>
   </div>
  -
  +<br><br>
   <!-- end footer (tail)-->
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-cvs-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-cvs-help@perl.apache.org