Dotclear

Changeset 1514:fe93bb38a591


Ignore:
Timestamp:
08/21/13 10:45:32 (12 years ago)
Author:
Anne Kozlika <kozlika@…>
Branch:
default
Message:

Filters box. Add h4 and replace "Apply filters" by "Apply filters and display options".

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • admin/blogs.php

    r1426 r1514  
    9797     echo 
    9898     '<form action="blogs.php" method="get" id="filters-form">'. 
    99      '<h3>'.__('Filter blogs list').'</h3>'. 
     99     '<h3 class="hidden">'.__('Filter blogs list').'</h3>'. 
    100100      
    101101     '<div class="table">'. 
    102102     '<div class="cell">'. 
     103     '<h4>'.__('Filters').'</h4>'. 
    103104     '<p><label for="q" class="ib">'.__('Search:').'</label> '. 
    104105     form::field('q',20,255,html::escapeHTML($q)).'</p>'. 
     
    106107      
    107108     '<div class="cell filters-options">'. 
     109     '<h4>'.__('Display options').'</h4>'. 
    108110     '<p><label for="sortby" class="ib">'.__('Order by:').'</label> '. 
    109111     form::combo('sortby',$sortby_combo,html::escapeHTML($sortby)).'</p>'. 
     
    115117     '</div>'. 
    116118 
    117      '<p><input type="submit" value="'.__('Apply filters').'" />'. 
     119     '<p><input type="submit" value="'.__('Apply filters and display options').'" />'. 
    118120     '<br class="clear" /></p>'. //Opera sucks 
    119121     '</form>'; 
  • admin/comments.php

    r1480 r1514  
    219219     echo 
    220220     '<form action="comments.php" method="get" id="filters-form">'. 
    221      '<h3>'.__('Filter comments and trackbacks list').'</h3>'. 
     221     '<h3 class="hidden">'.__('Filter comments and trackbacks list').'</h3>'. 
    222222     '<div class="table">'. 
    223223 
    224224     '<div class="cell">'. 
     225     '<h4>'.__('Filters').'</h4>'. 
    225226     '<p><label for="type" class="ib">'.__('Type:').'</label> '. 
    226227     form::combo('type',$type_combo,$type).'</p> '. 
     
    229230     '</div>'. 
    230231      
    231      '<div class="cell">'. 
     232     '<div class="cell filters-sibling-cell">'. 
    232233     '<p><label for="author" class="ib">'.__('Author:').'</label> '. 
    233234     form::field('author',20,255,html::escapeHTML($author)).'</p>'. 
     
    237238      
    238239     '<div class="cell filters-options">'. 
     240     '<h4>'.__('Display options').'</h4>'. 
    239241     '<p><label for="sortby" class="ib">'.__('Order by:').'</label> '. 
    240242     form::combo('sortby',$sortby_combo,$sortby).'</p>'. 
     
    247249      
    248250     '</div>'. 
    249      '<p><input type="submit" value="'.__('Apply filters').'" />'. 
     251     '<p><input type="submit" value="'.__('Apply filters and display options').'" />'. 
    250252     '<br class="clear" /></p>'. //Opera sucks 
    251253     '</form>'; 
  • admin/posts.php

    r1476 r1514  
    269269     echo 
    270270     '<form action="posts.php" method="get" id="filters-form">'. 
    271      '<h3>'.__('Filter posts list').'</h3>'. 
     271     '<h3 class="hidden">'.__('Filter posts list').'</h3>'. 
    272272 
    273273     '<div class="table">'. 
    274274     '<div class="cell">'. 
     275     '<h4>'.__('Filters').'</h4>'. 
    275276     '<p><label for="user_id" class="ib">'.__('Author:').'</label> '. 
    276277     form::combo('user_id',$users_combo,$user_id).'</p>'. 
     
    281282     '</div>'. 
    282283      
    283      '<div class="cell">'. 
     284     '<div class="cell filters-sibling-cell">'. 
    284285     '<p><label for="selected" class="ib">'.__('Selected:').'</label> '. 
    285286     form::combo('selected',$selected_combo,$selected).'</p>'. 
     
    291292      
    292293     '<div class="cell filters-options">'. 
     294     '<h4>'.__('Display options').'</h4>'. 
    293295     '<p><label for="sortby" class="ib">'.__('Order by:').'</label> '. 
    294296     form::combo('sortby',$sortby_combo,$sortby).'</p>'. 
     
    301303     '</div>'. 
    302304 
    303      '<p><input type="submit" value="'.__('Apply filters').'" />'. 
     305     '<p><input type="submit" value="'.__('Apply filters and display options').'" />'. 
    304306     '<br class="clear" /></p>'. //Opera sucks 
    305307     '</form>'; 
  • admin/style/default.css

    r1512 r1514  
    883883option.avail10n { 
    884884     background: transparent url(../images/check-on.png) no-repeat 0 50%; 
     885} 
     886/* ----------------------------------------------------------  Antispam extensions */ 
     887.antispam { 
     888     height: 200px; 
     889     overflow: auto; 
     890     margin-bottom: 1em; 
     891} 
     892.antispam p { 
     893     margin: 1px 0 0 0; 
     894     padding: 0.2em 0.5em; 
     895} 
     896.antispam p.global { 
     897     background: #ccff99; 
    885898} 
    886899/* ------------------------------------------------------------------ contextual help */ 
     
    15861599     padding: 0; 
    15871600     margin-bottom: 1em; 
    1588      margin-top: 1.5em; 
     1601     margin-top: .5em; 
    15891602} 
    15901603#filters-form .cell { 
     
    15931606     vertical-align: top; 
    15941607} 
     1608#filters-form .filters-sibling-cell { 
     1609     padding-top: 3.8em; 
     1610} 
    15951611#filters-form .filters-options { 
    15961612     padding-left: 2em; 
     
    16071623#filters-form select { 
    16081624     width: 14em; 
     1625} 
     1626#filters-form h4 { 
     1627     margin-top: 0; 
     1628     margin-bottom: 2em; 
    16091629} 
    16101630 
  • admin/users.php

    r1474 r1514  
    120120     echo 
    121121     '<form action="users.php" method="get" id="filters-form">'. 
    122      '<h3>'.__('Filter users list').'</h3>'. 
     122     '<h3 class="hidden">'.__('Filter users list').'</h3>'. 
    123123      
    124124     '<div class="table">'. 
    125125     '<div class="cell">'. 
     126     '<h4>'.__('Filters').'</h4>'. 
    126127     '<p><label for="q" class="ib">'.__('Search:').'</label> '. 
    127128     form::field('q',20,255,html::escapeHTML($q)).'</p>'. 
     
    129130 
    130131     '<div class="cell filters-options">'. 
     132     '<h4>'.__('Display options').'</h4>'. 
    131133     '<p><label for="sortby" class="ib">'.__('Order by:').'</label> '. 
    132134     form::combo('sortby',$sortby_combo,$sortby).'</p> '. 
     
    138140     '</div>'. 
    139141 
    140      '<p><input type="submit" value="'.__('Apply filters').'" />'.     
     142     '<p><input type="submit" value="'.__('Apply filters and display options').'" />'.     
    141143     '<br class="clear" /></p>'. //Opera sucks 
    142144     '</form>'; 
  • locales/fr/main.po

    r1508 r1514  
    31413141msgid "Edit" 
    31423142msgstr "Modifier" 
     3143 
     3144msgid "Display options" 
     3145msgstr "Options d\'affichage" 
     3146 
     3147msgid "Apply filters and display options" 
     3148msgstr "Appliquer les filtres et options d\'affichage" 
Note: See TracChangeset for help on using the changeset viewer.

Sites map