Changeset 2479 for trunk/template


Ignore:
Timestamp:
Aug 20, 2008, 2:35:22 AM (16 years ago)
Author:
rvelices
Message:
  • local.lang is loaded without fallback on default language or PHPWG_DEFAULT_LANGUAGE (needed to change the signature of load_language which became a little too big)
  • move a function from functions.inc.php to functions_picture.inc.php (included only when necessary)
  • removed some css (not as much as I wanted)
Location:
trunk/template/yoga
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/template/yoga/default-layout.css

    r2476 r2479  
    164164FORM.filter FIELDSET P
    165165{
    166   clear: left;
    167   display: block;
     166        clear: left;
     167        display: block;
    168168}
    169169
    170170FORM.filter INPUT[type="submit"] {
    171   margin-top: 1em;
    172 }
    173 
    174 FORM.properties UL, FORM#update UL {
    175   list-style-type: none;
    176   margin: 0;
    177   padding: 0;
    178 }
    179 
    180 FORM.properties LI, FORM#update UL {
    181   margin-bottom: 0.5em;
    182   padding: 0;
    183   line-height: 1.8em;
    184   clear: left;
     171        margin-top: 1em;
     172}
     173
     174FORM.properties UL {
     175        list-style-type: none;
     176        margin: 0;
     177        padding: 0;
     178}
     179
     180FORM.properties LI {
     181        margin-bottom: 0.5em;
     182        padding: 0;
     183        line-height: 1.8em;
     184        clear: left;
    185185}
    186186
  • trunk/template/yoga/picture.css

    r2295 r2479  
    5959}
    6060
    61 .navThumb {
    62     margin-top: 2px;
    63 }
    64 #thumbPrev {
    65     float: left;
    66 }
    67 
    68 #thumbNext {
    69     float: right;
    70 }
    71 
    7261#linkPrev {
    73     margin-right: 10px;
    74     margin-left: 5px;
     62        float: left;
    7563}
    7664
    7765#linkNext {
    78     margin-right: 5px;
    79     margin-left: 10px;
     66        float: right;
     67}
     68
     69#linkPrev IMG {
     70        margin-right: 10px;
     71        margin-left: 5px;
     72}
     73
     74#linkNext IMG {
     75        margin-right: 5px;
     76        margin-left: 10px;
    8077}
    8178
     
    9794
    9895.rateButton, .rateButtonSelected, .rateButtonStarFull, .rateButtonStarEmpty  {
    99   padding:0;
    100   border:0;
     96        padding:0;
     97        border:0;
    10198}
    10299
    103100.rateButton, .rateButtonStarFull, .rateButtonStarEmpty {
    104   cursor: pointer;
     101        cursor: pointer;
    105102}
    106103
    107104.rateButtonSelected {
    108   font-weight:bold;
    109   font-size:120%;
     105        font-weight:bold;
     106        font-size:120%;
    110107}
    111108
  • trunk/template/yoga/picture.tpl

    r2435 r2479  
    9494
    9595{if isset($previous) }
    96 <a class="navThumb" id="thumbPrev" href="{$previous.U_IMG}" title="{'previous_page'|@translate} : {$previous.TITLE}" rel="prev">
    97   <img src="{$previous.THUMB_SRC}" class="thumbLink" id="linkPrev" alt="{$previous.TITLE}">
     96<a class="navThumb" id="linkPrev" href="{$previous.U_IMG}" title="{'previous_page'|@translate} : {$previous.TITLE}" rel="prev">
     97  <img src="{$previous.THUMB_SRC}" alt="{$previous.TITLE}">
    9898</a>
    9999{/if}
    100100{if isset($next) }
    101 <a class="navThumb" id="thumbNext" href="{$next.U_IMG}" title="{'next_page'|@translate} : {$next.TITLE}" rel="next">
    102   <img src="{$next.THUMB_SRC}" class="thumbLink" id="linkNext" alt="{$next.TITLE}">
     101<a class="navThumb" id="linkNext" href="{$next.U_IMG}" title="{'next_page'|@translate} : {$next.TITLE}" rel="next">
     102  <img src="{$next.THUMB_SRC}" alt="{$next.TITLE}">
    103103</a>
    104104{/if}
Note: See TracChangeset for help on using the changeset viewer.