Changeset 988

Show
Ignore:
Timestamp:
03/24/07 21:46:13 (20 months ago)
Author:
nick
Message:

Put Kake's navbar changes back, but in a way that still allows you to shift the common locales and categories off somewhere else together

Location:
trunk
Files:
2 added
2 removed
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/README.CSS

    r973 r988  
    218218             optionally a link to the licence we're using it under. 
    219219 
    220 div#common_navigation 
    221     Used in: node.tt 
     220div#navbar_common_navigation 
     221    Used in: navbar.tt 
    222222    Purpose: Hold the common locales and categories, if enabled 
    223  
    224 div#common_categories 
    225     Used in: common_categories.tt 
     223div#navbar_locales 
     224    Used in: navbar_locales.tt 
     225    Purpose: Hold the common locales, if enabled 
     226div#navbar_categories 
     227    Used in: navbar_categories.tt 
    226228    Purpose: Hold the common categories, if enabled 
    227 h3#common_categories_title 
    228     Used in: common_categories.tt 
    229     Purpose: Title for the common categories 
    230 ul#common_categories_list 
    231     Used in: common_categories.tt 
    232     Purpose: Parent list for the common categories 
    233 li.common_category 
    234     Used in: common_categories.tt 
    235     Purpose: A common category 
    236 a.common_category_link 
    237     Used in: common_categories.tt 
    238     Purpose: A link to a common category 
    239  
    240 div#common_locales 
    241     Used in: common_locales.tt 
    242     Purpose: Hold the common locales, if enabled 
    243 h3#common_locales_title 
    244     Used in: common_locales.tt 
    245     Purpose: Title for the common locales 
    246 ul#common_locales_list 
    247     Used in: common_locales.tt 
    248     Purpose: Parent list for the common locales 
    249 li.common_locale 
    250     Used in: common_locales.tt 
    251     Purpose: A common locale 
    252 a.common_locale_link 
    253     Used in: common_locales.tt 
    254     Purpose: A link to a common locale 
     229div#navbar_group_title 
     230    Used in: navbar_categories.tt, navbar_locales.tt 
     231    Purpose: Title for the common categories / locales 
     232ul#navbar_group 
     233    Used in: navbar_categories.tt, navbar_locales.tt 
     234    Purpose: Parent list for the common categories / locales 
     235#navbar_group > li 
     236    Used in: navbar_categories.tt, navbar_locales.tt 
     237    Purpose: A common category / locale 
    255238 
    256239input#address 
  • trunk/templates/navbar.tt

    r972 r988  
    77  [% INCLUDE navbar_search.tt %] 
    88  [% INCLUDE navbar_this_page.tt %] 
     9 <div id="navbar_common_navigation"> 
     10  [% INCLUDE navbar_categories.tt %] 
     11  [% INCLUDE navbar_locales.tt %] 
     12 </div> 
    913  [% INCLUDE navbar_revision_info.tt %] 
    1014 
  • trunk/templates/node.tt

    r972 r988  
    150150[% END %] 
    151151 
    152 [% IF common_catloc %] 
    153 <div id="common_navigation"> 
    154   [% IF common_categories %] 
    155     [% INCLUDE common_categories.tt %] 
    156   [% END %] 
    157   [% IF common_locales %] 
    158     [% INCLUDE common_locales.tt %] 
    159   [% END %] 
    160 </div> 
    161 [% END %] 
    162  
    163152[% INCLUDE footer.tt %]