Changeset 1619:5d925866b5b3
- Timestamp:
- 08/29/13 23:40:31 (12 years ago)
- Branch:
- default
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/js/_post.js
r1606 r1619 145 145 legend_click: true 146 146 }); 147 $('# post_format').parent().children('label').toggleWithLegend($('#post_format'),{147 $('#label_format').toggleWithLegend($('#label_format').parent().children().not('#label_format'),{ 148 148 cookie: 'dcx_post_format', 149 149 legend_click: true -
admin/post.php
r1613 r1619 439 439 '</p>', 440 440 'post_format' => 441 '<p><label for="post_format" class="ib">'.__('Text formating').'</label>'. 442 form::combo('post_format',$formaters_combo,$post_format,'maximal'). 441 '<div>'. 442 '<h5 id="label_format"><label for="post_format" class="ib">'.__('Text formating').'</label></h5>'. 443 '<p>'.form::combo('post_format',$formaters_combo,$post_format,'maximal'). 443 444 '</p>'. 444 445 '<p>'.($post_id && $post_format != 'xhtml' ? 445 446 '<a id="convert-xhtml" class="button maximal" href="post.php?id='.$post_id.'&xconv=1">'. 446 __('Convert to XHTML').'</a>' : '').'</p> ')),447 __('Convert to XHTML').'</a>' : '').'</p></div>')), 447 448 'metas-box' => array( 448 449 'title' => __('Ordering'), -
admin/style/default.css
r1618 r1619 78 78 h5 { 79 79 font-size: 12px; /* ie < 9 sucks */ 80 font-size: 1. 3rem;80 font-size: 1.2rem; 81 81 color: #575859; 82 82 } … … 625 625 width: 14em; /* to prevent inline with label */ 626 626 } 627 #entry-sidebar input#post_position { 628 width: 4em; 629 } 627 630 .box { 628 631 border-bottom: 1px solid #ddd; … … 979 982 height: 105px; 980 983 border: 1px solid #fff; 984 } 985 #themes a:focus div, #themes a:hover div, 986 #themes a:focus div.current-theme, #themes a:hover div.current-theme { 987 background: #BBDB58; 981 988 } 982 989 /* ---------------------------------------------------------- Plugins list */ -
locales/fr/plugins.po
r1610 r1619 1981 1981 msgid "Syntax color for theme editor" 1982 1982 msgstr "Coloration syntaxique de l'éditeur de thème" 1983 1984 msgid "Hide in widget Pages" 1985 msgstr "Ne pas lister dans le widget Pages" -
plugins/pages/page.php
r1617 r1619 392 392 393 393 394 /* Post form if we can edit p ost394 /* Post form if we can edit page 395 395 -------------------------------------------------------- */ 396 396 if ($can_edit_page) … … 413 413 '</p>', 414 414 'post_format' => 415 '<p><label for="post_format" class="ib">'.__('Text formating').'</label>'. 416 form::combo('post_format',$formaters_combo,$post_format,'maximal'). 415 '<div>'. 416 '<h5 id="label_format"><label for="post_format" class="ib">'.__('Text formating').'</label></h5>'. 417 '<p>'.form::combo('post_format',$formaters_combo,$post_format,'maximal'). 417 418 '</p>'. 418 419 '<p>'.($post_id && $post_format != 'xhtml' ? 419 420 '<a id="convert-xhtml" class="button maximal" href="post.php?id='.$post_id.'&xconv=1">'. 420 __('Convert to XHTML').'</a>' : '').'</p> ')),421 __('Convert to XHTML').'</a>' : '').'</p></div>')), 421 422 'metas-box' => array( 422 423 'title' => __('Ordering'), … … 450 451 __('Warning: Trackbacks are not more accepted for this entry.').'</p>') : 451 452 '<p class="form-note warn">'.__('Warning: Trackbacks are not accepted on this blog.').'</p>'), 453 'post_hide' => 454 '<p><label for="post_selected" class="classic">'.form::checkbox('post_selected',1,$post_selected).' '. 455 __('Hide in widget Pages').'</label></p>'. 456 '</p>', 452 457 'post_password' => 453 458 '<p><label for="post_password" class="ib">'.__('Password').'</label>'.
Note: See TracChangeset
for help on using the changeset viewer.