Changeset 1600:0c98dd875a1b
- Timestamp:
- 08/27/13 15:43:08 (10 years ago)
- Branch:
- default
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/js/prelude.js
r1590 r1600 7 7 aElts[i].onfocus=function() { 8 8 $('#prelude a').removeClass('hidden'); 9 $('# main-menu').css('padding-top', '6em');9 $('#wrapper').css('padding-top', '1em'); 10 10 } 11 11 } … … 23 23 // init 24 24 $(function() { 25 $('# main-menu').css('padding-top', '.5em');25 $('#wrapper').css('padding-top', '0'); 26 26 }); -
admin/style/default.css
r1599 r1600 125 125 } 126 126 #prelude { 127 line-height: 1. 9;127 line-height: 1.5; 128 128 margin: 0; 129 129 padding: 0; … … 133 133 left: 0; 134 134 background: #A2CBE9; 135 width: 1 4.5em;135 width: 100%; 136 136 } 137 137 #prelude li { … … 139 139 margin: 0; 140 140 background:transparent; 141 display: inline; 141 142 } 142 143 #prelude li a { 143 padding -left: 16px; /* ie < 9 sucks */144 padding -left: 1.6rem;144 padding: 3px 16px 3px 8px; /* ie < 9 sucks */ 145 padding: 3px 1.6rem 3px .8rem; 145 146 background: #A2CBE9; 146 147 color: #000; … … 328 329 float: left; 329 330 margin:0; 330 padding-top: 4.5em;331 padding-top: .5em; 331 332 padding-bottom: 1em; 332 333 background: #f7f7f7; -
inc/admin/lib.pager.php
r1587 r1600 23 23 $this->rs =& $rs; 24 24 $this->rs_count = $rs_count; 25 $this->html_prev = __('« prev.');26 $this->html_next = __('next »');25 $this->html_prev = __('« prev.'); 26 $this->html_next = __('next »'); 27 27 } 28 28 } … … 49 49 } 50 50 $html_block = 51 '<table class="clear">< tr>'.51 '<table class="clear"><caption class="hidden">'.__('Entries list').'</caption><tr>'. 52 52 '<th colspan="2" class="first">'.__('Title').'</th>'. 53 '<th >'.__('Date').'</th>'.54 '<th >'.__('Category').'</th>'.55 '<th >'.__('Author').'</th>'.56 '<th >'.__('Comments').'</th>'.57 '<th >'.__('Trackbacks').'</th>'.58 '<th >'.__('Status').'</th>'.53 '<th scope="col">'.__('Date').'</th>'. 54 '<th scope="col">'.__('Category').'</th>'. 55 '<th scope="col">'.__('Author').'</th>'. 56 '<th scope="col">'.__('Comments').'</th>'. 57 '<th scope="col">'.__('Trackbacks').'</th>'. 58 '<th scope="col">'.__('Status').'</th>'. 59 59 '</tr>%s</table>'; 60 60 … … 134 134 '<td class="nowrap">'. 135 135 form::checkbox(array('entries[]'),$this->rs->post_id,$checked,'','',!$this->rs->isEditable()).'</td>'. 136 '<td class="maximal" ><a href="'.$this->core->getPostAdminURL($this->rs->post_type,$this->rs->post_id).'">'.136 '<td class="maximal" scope="row"><a href="'.$this->core->getPostAdminURL($this->rs->post_type,$this->rs->post_id).'">'. 137 137 html::escapeHTML($this->rs->post_title).'</a></td>'. 138 138 '<td class="nowrap">'.dt::dt2str(__('%Y-%m-%d %H:%M'),$this->rs->post_dt).'</td>'. … … 164 164 165 165 $html_block = 166 '<table class="clear">< tr>'.167 '<th >'.__('Title').'</th>'.168 '<th >'.__('Date').'</th>'.169 '<th >'.__('Author').'</th>'.170 '<th >'.__('Status').'</th>'.166 '<table class="clear"><caption class="hidden">'.__('Entries list').'</caption><tr>'. 167 '<th scope="col">'.__('Title').'</th>'. 168 '<th scope="col">'.__('Date').'</th>'. 169 '<th scope="col">'.__('Author').'</th>'. 170 '<th scope="col">'.__('Status').'</th>'. 171 171 '</tr>%s</table>'; 172 172 … … 231 231 232 232 $res .= 233 '<td class="maximal"><a href="'.$this->core->getPostAdminURL($this->rs->post_type,$this->rs->post_id).'" '.233 '<td scope="row" class="maximal"><a href="'.$this->core->getPostAdminURL($this->rs->post_type,$this->rs->post_id).'" '. 234 234 'title="'.html::escapeHTML($this->rs->getURL()).'">'. 235 235 html::escapeHTML($this->rs->post_title).'</a></td>'. … … 260 260 $html_block = 261 261 '<table><caption class="hidden">'.__('Comments and trackbacks list').'</caption><tr>'. 262 '<th scope="col"><span class="hidden">'.__('Select').'</span></th>'. 263 '<th scope="col"><span class="hidden txt-center">'.__('Edit').'</span></th>'. 264 '<th scope="col" abbr="author">'.__('Type and author').'</th>'. 262 '<th colspan="3" scope="col" abbr="comm" class="first">'.__('Type and author').'</th>'. 265 263 '<th scope="col">'.__('Date').'</th>'. 266 264 '<th scope="col" class="txt-center">'.__('Status').'</th>'. … … 369 367 370 368 $html_block = 371 '<table class="clear">< tr>'.372 '<th colspan="2" >'.__('Username').'</th>'.373 '<th >'.__('First Name').'</th>'.374 '<th >'.__('Last Name').'</th>'.375 '<th >'.__('Display name').'</th>'.376 '<th class="nowrap">'.__('Entries').'</th>'.369 '<table class="clear"><caption class="hidden">'.__('Users list').'</caption><tr>'. 370 '<th colspan="2" scope="col" class="first">'.__('Username').'</th>'. 371 '<th scope="col">'.__('First Name').'</th>'. 372 '<th scope="col">'.__('Last Name').'</th>'. 373 '<th scope="col">'.__('Display name').'</th>'. 374 '<th scope="col" class="nowrap">'.__('Entries').'</th>'. 377 375 '</tr>%s</table>'; 378 376 … … 415 413 '<td class="nowrap">'.form::hidden(array('nb_post[]'),(integer) $this->rs->nb_post). 416 414 form::checkbox(array('users[]'),$this->rs->user_id).'</td>'. 417 '<td class="maximal" ><a href="user.php?id='.$this->rs->user_id.'">'.415 '<td class="maximal" scope="row"><a href="user.php?id='.$this->rs->user_id.'">'. 418 416 $this->rs->user_id.'</a> '.$img_status.'</td>'. 419 417 '<td class="nowrap">'.html::escapeHTML($this->rs->user_firstname).'</td>'. -
locales/fr/main.po
r1599 r1600 2454 2454 msgstr "Erreur de file d'attente :" 2455 2455 2456 msgid "« prev."2457 msgstr "« préc."2458 2459 msgid "next »"2460 msgstr "suiv. »"2456 msgid "« prev." 2457 msgstr "« préc." 2458 2459 msgid "next »" 2460 msgstr "suiv. »" 2461 2461 2462 2462 msgid "No entry" … … 3199 3199 msgstr "Pour changer l'ordre des catégories, modifier leur numéro de position et cliquez sur “Enregistrer l'ordre des catégories”." 3200 3200 3201 msgid "Reorder all categories on the top level and delete selected categories" 3202 msgstr "Replacer toutes les catégories au premier niveau et supprimer les catégories sélectionnées" 3203 3201 3204 #test tableau commentaires 3202 3205
Note: See TracChangeset
for help on using the changeset viewer.