[geeklog-cvs] Geeklog-1.x/public_html/layout/professional header.thtml, 1.31, 1.32 menuitem.thtml, 1.1.1.1, 1.2 menuitem_last.thtml, 1.1.1.1, 1.2 menuitem_none.thtml, 1.1.1.1, 1.2 style.css, 1.92, 1.93

Oliver ospiess at qs1489.pair.com
Mon Sep 17 01:36:52 EDT 2007


Update of /usr/home/geeklog2/cvsroot/geeklog/Geeklog-1.x/public_html/layout/professional
In directory qs1489.pair.com:/tmp/cvs-serv32276

Modified Files:
	header.thtml menuitem.thtml menuitem_last.thtml 
	menuitem_none.thtml style.css 
Log Message:
build menu with li-tags to reduce classes, increase consistency & cascading css, allow easier CSS changes

Index: menuitem_last.thtml
===================================================================
RCS file: /usr/home/geeklog2/cvsroot/geeklog/Geeklog-1.x/public_html/layout/professional/menuitem_last.thtml,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** menuitem_last.thtml	26 Sep 2004 09:59:43 -0000	1.1.1.1
--- menuitem_last.thtml	17 Sep 2007 05:36:50 -0000	1.2
***************
*** 1 ****
! <a href="{menuitem_url}" class="header-navigation">{menuitem_text}</a>  
--- 1 ----
! <li class="last"><a href="{menuitem_url}">{menuitem_text}</a></li>

Index: header.thtml
===================================================================
RCS file: /usr/home/geeklog2/cvsroot/geeklog/Geeklog-1.x/public_html/layout/professional/header.thtml,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** header.thtml	13 Mar 2007 04:02:27 -0000	1.31
--- header.thtml	17 Sep 2007 05:36:50 -0000	1.32
***************
*** 15,22 ****
  </head>
  <body dir="{direction}">
!     <div class="header-navigation-container">
!         <div class="header-navigation-line">
              {menu_elements}
!         </div>
      </div>
      <div class="header-logobg-container-inner">
--- 15,22 ----
  </head>
  <body dir="{direction}">
!     <div class="header-navigation-container clearfix">
!         <ul>
              {menu_elements}
!         </ul>
      </div>
      <div class="header-logobg-container-inner">

Index: menuitem.thtml
===================================================================
RCS file: /usr/home/geeklog2/cvsroot/geeklog/Geeklog-1.x/public_html/layout/professional/menuitem.thtml,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** menuitem.thtml	26 Sep 2004 09:59:43 -0000	1.1.1.1
--- menuitem.thtml	17 Sep 2007 05:36:50 -0000	1.2
***************
*** 1 ****
! <a href="{menuitem_url}" class="header-navigation">{menuitem_text}</a>  : 
--- 1 ----
! <li><a href="{menuitem_url}">{menuitem_text}</a></li>

Index: style.css
===================================================================
RCS file: /usr/home/geeklog2/cvsroot/geeklog/Geeklog-1.x/public_html/layout/professional/style.css,v
retrieving revision 1.92
retrieving revision 1.93
diff -C2 -d -r1.92 -r1.93
*** style.css	17 Sep 2007 04:37:22 -0000	1.92
--- style.css	17 Sep 2007 05:36:50 -0000	1.93
***************
*** 246,249 ****
--- 246,265 ----
    clear:both;
  }
+ /* clear floats by applying the clearfix class to float-encasing block !*******/
+ .clearfix:after {
+   content: ".";
+   display: block;
+   height: 0;
+   clear: both;
+   visibility: hidden;
+ }
+ .clearfix {
+   display: inline-block;
+ }
+ 
+ /* Hides from IE-mac \*/
+ * html .clearfix {height: 1%;}
+ .clearfix {display: block;}
+ /* End hide from IE-mac */
  /* general formatting classes **************************************************/
  .b {
***************
*** 468,502 ****
    border-bottom:1px solid #FFFFFF;
  }
! .header-navigation-line {
    background:#E7E7E7;
    border-bottom:1px solid #CCCCCC;
    color:#FFFFFF;
-   padding-bottom:3px;
-   padding-top:4px;
    text-align:right;
  }
! .header-navigation-line a:link {
    background:transparent;
-   border-bottom:0px solid #CCCCCC;
-   color:#0000FF;
    font-size:.9em;
  }
! .header-navigation-line a:visited {
!   background:transparent;
!   border-bottom:0px solid #CCCCCC;
    color:#800080;
-   font-size:0.9em;
  }
! .header-navigation-line a:hover {
!   background:transparent;
!   border-bottom:0px solid #CCCCCC;
    color:#008000;
-   font-size:0.9em;
  }
! .header-navigation-line a:active {
!   background:transparent;
!   border-bottom:0px solid #CCCCCC;
    color:#FF0000;
-   font-size:0.9em;
  }
  .header-welcomeanddate-text {
--- 484,516 ----
    border-bottom:1px solid #FFFFFF;
  }
! .header-navigation-container ul{
!   list-style: none;
!   padding:0px;
!   margin:0px;
    background:#E7E7E7;
    border-bottom:1px solid #CCCCCC;
    color:#FFFFFF;
    text-align:right;
+   height:24px;
  }
! .header-navigation-container li{
!   float:right;
!   padding-right:18px;
!   padding-top:4px;
    background:transparent;
    font-size:.9em;
  }
! 
! .header-navigation-container a:link {
!   color:#0000FF;
! }
! .header-navigation-container a:visited {
    color:#800080;
  }
! .header-navigation-container a:hover {
    color:#008000;
  }
! .header-navigation-container a:active {
    color:#FF0000;
  }
  .header-welcomeanddate-text {

Index: menuitem_none.thtml
===================================================================
RCS file: /usr/home/geeklog2/cvsroot/geeklog/Geeklog-1.x/public_html/layout/professional/menuitem_none.thtml,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** menuitem_none.thtml	26 Sep 2004 09:59:43 -0000	1.1.1.1
--- menuitem_none.thtml	17 Sep 2007 05:36:50 -0000	1.2
***************
*** 1 ****
-  
\ No newline at end of file
--- 0 ----




More information about the geeklog-cvs mailing list