Changeset 1526:b17db2367958 for plugins
- Timestamp:
- 08/22/13 22:55:04 (12 years ago)
- Branch:
- default
- Location:
- plugins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/aboutConfig/index.php
r1474 r1526 189 189 </div> 190 190 191 <div id="global" class="multi-part" title="<?php echo __(' global settings'); ?>">191 <div id="global" class="multi-part" title="<?php echo __('Global settings'); ?>"> 192 192 193 193 <?php … … 210 210 '<form action="plugin.php" method="post">'. 211 211 '<p class="anchor-nav">'. 212 '<label for="gs_nav" class="classic">'.__('Goto:').'</label> '.form::combo('gs_nav',$ns_combo). 213 ' 212 '<label for="gs_nav" class="classic">'.__('Goto:').'</label> '.form::combo('gs_nav',$ns_combo).' '. 213 '<input type="submit" value="'.__('Ok').'" id="gs_submit" />'. 214 214 '<input type="hidden" name="p" value="aboutConfig" />'. 215 215 $core->formNonce().'</p></form>'; -
plugins/blowupConfig/index.php
r1499 r1526 235 235 236 236 echo 237 '<p><a class="back" href="blog_theme.php">'.__('Back to Blog themes').'</a></p>';237 '<p><a class="back" href="blog_theme.php">'.__('Back to Blog appearance').'</a></p>'; 238 238 239 239 -
plugins/tags/tag_posts.php
r1480 r1526 123 123 } 124 124 125 echo '<p><a href="'.$p_url.'&m=tags">'.__('Back to tags list').'</a></p>';125 echo '<p><a class="back" href="'.$p_url.'&m=tags">'.__('Back to tags list').'</a></p>'; 126 126 127 127 if (!$core->error->flag()) … … 132 132 '<div class="fieldset">'. 133 133 '<form action="'.$this_url.'" method="post">'. 134 '<h3>'.__('Actions for this tag').'</h3>'.134 '<h3>'.__('Actions').'</h3>'. 135 135 '<p><label for="new_tag_id">'.__('Edit tag name:').'</label>'. 136 136 form::field('new_tag_id',20,255,html::escapeHTML($tag)). … … 142 142 echo 143 143 '<form id="tag_delete" action="'.$this_url.'" method="post">'. 144 '<p class="no-margin">'.__('Delete this tag:').145 '< /p><p><input type="submit" class="delete" name="delete" value="'.__('Delete').'" />'.144 '<p>'.__('Delete this tag:').' '. 145 '<input type="submit" class="delete" name="delete" value="'.__('Delete').'" />'. 146 146 $core->formNonce(). 147 147 '</p></form>'; … … 151 151 152 152 # Show posts 153 echo '<h3>'. __('List of entries with this tag').'</h3>';153 echo '<h3>'.sprintf(__('List of entries with the tag “%s”'),html::escapeHTML($tag)).'</h3>'; 154 154 $post_list->display($page,$nb_per_page, 155 155 '<form action="posts_actions.php" method="post" id="form-entries">'. -
plugins/widgets/style.css
r1518 r1526 4 4 background: #eee; 5 5 padding: 1.5em 1% 0; 6 border: 1px solid #ccc;7 6 margin: 0 1% 0 0; 8 7 } 9 #widgets .widget-name { 8 #widgets > div { 9 border: 1px solid #ccc; 10 margin-bottom: .5em; 10 11 background: #fff; 11 12 min-height: 3em; 13 padding: 0 0 4px 0; 14 } 15 #widgets .widget-name, #widgets .js-remove { 16 background: #fff; 17 margin-bottom: 0; 18 padding: 4px 8px; 19 } 20 #widgets .widget-name { 21 min-height: 3em; 22 padding-bottom: 0; 12 23 } 13 24 #listWidgets h3 { … … 30 41 padding: 1em 0; 31 42 } 43 #dndnav > div, #dndextra > div, #dndcustom > div { 44 padding: O; 45 border: 1px solid #999; 46 margin-bottom: 1em; 47 } 32 48 33 49 .widget-name { … … 35 51 color: #000; 36 52 padding: 4px 6px; 37 margin: 0.5em 0 0 0; 38 border-width: 1px 1px 1px 1px; 39 border-style: solid; 40 border-color: #999; 53 margin: 0; 41 54 font-weight: bold; 42 55 } … … 50 63 margin-bottom: -1px; 51 64 } 65 .removeWidget { 66 padding: 8px 6px; 67 margin: 0; 68 } 52 69 53 70 .widgetSettings { 54 border-width: 0 1px 1px 1px; 55 border-style: solid; 56 border-color: #666; 57 padding: 4px 6px; 71 border-top: 1px solid #ddd; 72 padding: 8px 6px; 58 73 background: #f5f5f5; 59 74 } 60 61 75 #widgets .widgetSettings { 62 76 display: none; 63 77 } 64 65 78 .hideControls .widgetSettings { 66 79 display: none;
Note: See TracChangeset
for help on using the changeset viewer.