Ignore:
Timestamp:
Sep 1, 2009, 9:48:06 PM (15 years ago)
Author:
nikrou
Message:

placement des boutons

Location:
extensions/akBookStyle/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • extensions/akBookStyle/trunk/css/ak_style.css

    r3795 r3811  
    1616}
    1717
     18td.navbar {
     19  width: 24px;
     20  padding: 200px 0 0 0;
     21}
     22
    1823td.left {
     24  text-align:right;
     25}
     26
     27td.right {
    1928  text-align:left;
    2029}
    2130
    22 .ak_display a.navButton {
    23 }
    24 
    2531.ak_display img.button {
    26 }
    27 
    28 td.right {
    2932}
    3033
     
    3740}
    3841/******************/
    39 #menubar, .titrePage {
     42#theHeader, #menubar, .navigationBar, .titrePage {
    4043  display: none;
    4144}
  • extensions/akBookStyle/trunk/language/fr_FR/plugin.lang.php

    r3806 r3811  
    99$lang['ak_by_line_changed'] = "Le nombre de colonne a été mis à jour";
    1010$lang['ak_thumbnail_size'] = "Taille des imagettes";
    11 $lang['ak_by_line_changed'] = "La taille des imagette a été mis à jour";
     11$lang['ak_thumbnail_size_changed'] = "La taille des imagette a été mis à jour";
    1212
    1313$lang['ak_event_click'] = "clic";
  • extensions/akBookStyle/trunk/template/ak_thumbnails.tpl

    r3807 r3811  
    3131<table class="ak_display">
    3232  <tr>
    33         {if $AK_THUMBNAILS_LOC == 'top'}
     33    {if $AK_THUMBNAILS_LOC == 'top'}
    3434    {include file=$AK_HORIZONTAL_TPL|@get_extent:'horizontal_thumbs'}
    35         </tr>
    36         <tr>
    37   {/if}
    38         {if $AK_THUMBNAILS_LOC == 'left'}
     35  </tr>
     36  <tr>
     37    {/if}
     38    {if $AK_THUMBNAILS_LOC == 'left'}
    3939    {include file=$AK_VERTICAL_TPL|@get_extent:'vertical_thumbs'}
    40   {/if}
     40    {/if}
    4141    <td> {* Picture *}
    4242      {include file=$AK_RELOADED_IMAGE_TPL|@get_extent:'picture_reload'}
    4343    </td>
    44         {if $AK_THUMBNAILS_LOC == 'right'}
     44    {if $AK_THUMBNAILS_LOC == 'right'}
    4545    {include file=$AK_VERTICAL_TPL|@get_extent:'vertical_thumbs'}
    46   {/if}
     46    {/if}
    4747  </tr>
    48         {if $AK_THUMBNAILS_LOC == 'bottom'}
    49         <tr>
     48  {if $AK_THUMBNAILS_LOC == 'bottom'}
     49  <tr>
    5050    {include file=$AK_HORIZONTAL_TPL|@get_extent:'horizontal_thumbs'}
    51         </tr>
     51  </tr>
    5252  {/if}
    5353</table>
  • extensions/akBookStyle/trunk/template/ak_vertical.tpl

    r3804 r3811  
     1    {if !empty($navbar) and isset($navbar.URL_PREV)}
     2    <td class="navbar left">
     3      <a class="navButton" href="{$navbar.URL_PREV}"
     4         title="{'previous_page'|@translate}">
     5        <img src="{$ROOT_URL}{$themeconf.icon_dir}/left.png"
     6             class="button" alt="{'previous_page'|@translate}">
     7      </a>       
     8    </td>
     9    {/if}
    110    <td>
    211      <table class="thumbnails">
     
    1928        {/if}
    2029        {/foreach}
    21        
    22         {if isset($AK_NAV_PREV) or isset($AK_NAV_NEXT)} {* thumbnails navigation bar *}
    23         <tr class="nline">
    24           <td class="left">
    25             {if isset($AK_NAV_PREV)}
    26             <a class="navButton" href="{$AK_NAV_PREV}"
    27                title="{'previous_page'|@translate}">
    28               <img src="{$ROOT_URL}{$themeconf.icon_dir}/left.png"
    29              class="button" alt="{'previous_page'|@translate}">
    30             </a>
    31             {/if}
    32           </td>
    33           <td class="right">
    34             {if isset($AK_NAV_NEXT)}
    35             <a class="navButton" href="{$AK_NAV_NEXT}"
    36                title="{'next_page'|@translate}">
    37               <img src="{$ROOT_URL}{$themeconf.icon_dir}/right.png"
     30      </table> {* end of Thumbnails *}
     31    </td>
     32    {if !empty($navbar) and isset($navbar.URL_NEXT)}
     33    <td class="navbar right">
     34      <a class="navButton" href="{$navbar.URL_NEXT}"
     35         title="{'next_page'|@translate}">
     36        <img src="{$ROOT_URL}{$themeconf.icon_dir}/right.png"
    3837             class="button" alt="{'next_page'|@translate}">
    39             </a>
    40             {/if}
    41           </td>
    42         </tr>
    43         {/if}
    44       </table> {* end of Thumbnails *}
     38      </a>
     39    </td>
     40    {/if}
    4541
    46     </td>
Note: See TracChangeset for help on using the changeset viewer.