Changeset 1621:ee70ba4550a7
- Timestamp:
- 08/30/13 10:45:43 (10 years ago)
- Branch:
- default
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/post.php
r1620 r1621 641 641 642 642 if ($has_action) { 643 echo '<form action="comments_actions.php" id="form-comments" method="post" class="clear">';644 } 645 646 echo '<h3 class="clear">'.__('Trackbacks').'</h3>';643 echo '<form action="comments_actions.php" id="form-comments" method="post">'; 644 } 645 646 echo '<h3>'.__('Trackbacks').'</h3>'; 647 647 648 648 if (!$trackbacks->isEmpty()) { -
admin/style/default.css
r1619 r1621 26 26 padding: 0; 27 27 } 28 28 29 a, a:link, a:visited { 29 30 color: #2373A8; … … 378 379 } 379 380 #search-menu * { 380 height: 20px; /* ie < 9 sucks */ 381 height: 2rem; 381 height: 22px; /* ie < 9 sucks */ 382 height: 2.2rem; 383 display: inline-block; 384 vertical-align: top; 385 line-height: 22px; 382 386 } 383 387 #search-menu p { 384 display: inline-block;385 388 border: 1px solid #999; 386 389 border-radius: .3em; … … 388 391 overflow: hidden; 389 392 } 390 # search-menu #qx {391 width: 12 0px; /* ie < 9 sucks */392 width: 12 rem;393 #qx { 394 width: 124px; /* ie < 9 sucks */ 395 width: 12.4rem; 393 396 border-bottom-left-radius: .3em; 394 397 border-top-left-radius: .3em; 395 398 background: transparent url(search.png) no-repeat 4px center; 396 399 text-indent: 18px; 397 padding: 0 2px;400 padding: 0; 398 401 border: none; 402 height: 22px; 403 height: 2.2rem; 404 } 405 #qx:focus { 406 border: 2px solid #BBDB58; 399 407 } 400 408 #search-menu input[type="submit"] { 401 409 padding: 0 3px; 402 410 padding: 0 .3rem; 411 margin-left: -4px; 403 412 background: #dfdfdf; 404 413 border-color: #999; … … 621 630 float: right; 622 631 } 623 #entry-sidebar input[type="text"],624 632 #entry-sidebar select { 625 width: 1 4em; /* to prevent inline with label */633 width: 100%; 626 634 } 627 635 #entry-sidebar input#post_position { … … 1181 1189 margin-top: 2em; 1182 1190 } 1191 p.clear.vertical-separator { 1192 padding-top: 2em; 1193 } 1183 1194 .border-top { 1184 1195 border-top: 1px solid #999; … … 1418 1429 background: #f9f9f9; 1419 1430 color: #000; 1420 border-width: 1px;1431 border-width: 2px; 1421 1432 border-style: solid; 1422 border-color: #666 #ccc #ccc #999; 1433 border-color: #ccc #ddd #ddd #ccc; 1434 } 1435 select { 1436 border-right: none; 1423 1437 } 1424 1438 input.invalid, textarea.invalid, select.invalid { … … 1547 1561 -webkit-box-sizing: border-box; 1548 1562 -moz-box-sizing: border-box; 1549 box-sizing: border-box; 1563 box-sizing: border-box; 1550 1564 border: 2px solid #BBDB58; 1551 1565 } -
admin/style/jsToolBar/jsToolBar.css
r1618 r1621 6 6 } 7 7 .jstEditor textarea, .jstEditor iframe { 8 margin: 0;9 border: 0;10 padding: 0;11 }12 .jstEditor textarea {13 8 -webkit-box-sizing: border-box; 14 9 -moz-box-sizing: border-box; 15 10 box-sizing: border-box; 11 margin: 0; 12 border: 2px solid #f9f9f9; 16 13 width: 100%; 17 14 padding: .5em 0 0 0; … … 26 23 border-style: solid; 27 24 } 28 .jstEditor textarea:focus {25 .jstEditor textarea:focus, .jstEditor iframe:focus { 29 26 border: 2px solid #BBDB58; 30 27 } -
admin/user.php
r1620 r1621 206 206 207 207 echo 208 '<form action="user.php" method="post" id="user-form" class="fieldset">'.208 '<form action="user.php" method="post" id="user-form">'. 209 209 '<div class="two-cols">'. 210 210 … … 224 224 225 225 echo 226 '<form action="user.php" method="post" id="user-form">'.227 '<fieldset><legend>'.__('User information').'</legend>'.228 '<div class="two-cols">'.229 '<div class="col">'.230 '<p><label for="user_id" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Username:').' '.231 form::field('user_id',20,255,html::escapeHTML($user_id)).232 '</label></p>'.233 '<p class="form-note">'.__('At least 2 characters using letters, numbers or symbols.').'</p>'.234 235 226 '<div class="pw-table">'. 236 227 '<p class="pw-cell">'. … … 319 310 320 311 echo 321 '<p class="clear border-top"><label for="your_pwd" class="required">'.312 '<p class="clear vertical-separator"><label for="your_pwd" class="required">'. 322 313 '<abbr title="'.__('Required field').'">*</abbr> '.__('Your password:').'</label>'. 323 314 form::password('your_pwd',20,255).'</p>'. … … 387 378 } 388 379 else { 389 echo '<p>'.sprintf(__(' User %s is super admin.'),$user_id).'</p>';380 echo '<p>'.sprintf(__('%s is super admin (all rights on all blogs).'),'<strong>'.$user_id.'</strong>').'</p>'; 390 381 } 391 382 echo '</div>'; -
locales/fr/main.po
r1620 r1621 3244 3244 msgstr "Identifiant (login) :" 3245 3245 3246 msgid "%s is super admin (all rights on all blogs)." 3247 msgstr "%s est super administrateur (tous les droits sur tous les blogs)." 3248 3246 3249 msgid "Interface" 3247 3250 msgstr "Interface" -
plugins/pages/page.php
r1620 r1621 455 455 'post_hide' => 456 456 '<p><label for="post_selected" class="classic">'.form::checkbox('post_selected',1,$post_selected).' '. 457 __('Hide in widget Pages').'</label> </p>'.457 __('Hide in widget Pages').'</label>'. 458 458 '</p>', 459 459 'post_password' => … … 557 557 558 558 echo '</form>'; 559 echo '</div>'; 559 echo '</div>'; // End 560 560 561 561 if ($post_id && !empty($post_media)) … … 600 600 '<div id="comments" class="multi-part" title="'.__('Comments').'">'; 601 601 602 echo 603 '<p class="top-add"><a class="button add onblog_link" href="#comment-form">'.__('Add a comment').'</a></p>'; 604 602 605 if ($has_action) { 603 606 echo '<form action="comments_actions.php" method="post">'; … … 632 635 '</form>'; 633 636 } 634 635 echo '</div>'; 636 } 637 638 /* Add a comment 639 -------------------------------------------------------- */ 640 if ($post_id) 641 { 637 /* Add a comment 638 -------------------------------------------------------- */ 639 642 640 echo 643 '<div class=" multi-part" id="add-comment" title="'.__('Add a comment').'">'.641 '<div class="fieldset clear">'. 644 642 '<h3>'.__('Add a comment').'</h3>'. 645 643 … … 658 656 '</p>'. 659 657 660 '<p class="area"><label for="comment_content" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Comment:').'</label> '. 658 '<p class="area"><label for="comment_content" class="required"><abbr title="'.__('Required field').'">*</abbr> '. 659 __('Comment:').'</label> '. 661 660 form::textarea('comment_content',50,8,html::escapeHTML('')). 662 661 '</p>'. … … 665 664 $core->formNonce(). 666 665 '<input type="submit" name="add" value="'.__('Save').'" /></p>'. 667 '</div>'. 666 '</div>'. #constrained 667 668 668 '</form>'. 669 '</div>'; 669 '</div>'. #add comment 670 '</div>'; #comments 670 671 } 671 672
Note: See TracChangeset
for help on using the changeset viewer.