Changes in [494:e16a5c9781e4:511:50d43f4dea8e]
- Files:
-
- 46 edited
-
admin/blog.php (modified) (1 diff)
-
admin/blog_del.php (modified) (3 diffs)
-
admin/blog_pref.php (modified) (1 diff)
-
admin/blog_theme.php (modified) (2 diffs)
-
admin/blogs.php (modified) (1 diff)
-
admin/categories.php (modified) (1 diff)
-
admin/category.php (modified) (1 diff)
-
admin/comment.php (modified) (1 diff)
-
admin/comments.php (modified) (1 diff)
-
admin/index.php (modified) (1 diff)
-
admin/js/color-picker.js (modified) (2 diffs)
-
admin/langs.php (modified) (1 diff)
-
admin/media.php (modified) (2 diffs)
-
admin/media_item.php (modified) (1 diff)
-
admin/permissions.php (modified) (1 diff)
-
admin/permissions_blog.php (modified) (1 diff)
-
admin/plugin.php (modified) (1 diff)
-
admin/plugins.php (modified) (1 diff)
-
admin/popup_link.php (modified) (1 diff)
-
admin/popup_posts.php (modified) (1 diff)
-
admin/post.php (modified) (1 diff)
-
admin/post_media.php (modified) (1 diff)
-
admin/posts.php (modified) (1 diff)
-
admin/posts_actions.php (modified) (2 diffs)
-
admin/preferences.php (modified) (1 diff)
-
admin/search.php (modified) (1 diff)
-
admin/style/default.css (modified) (48 diffs)
-
admin/trackbacks.php (modified) (1 diff)
-
admin/user.php (modified) (1 diff)
-
admin/users.php (modified) (1 diff)
-
inc/core/class.dc.media.php (modified) (1 diff)
-
plugins/aboutConfig/index.php (modified) (1 diff)
-
plugins/antispam/index.php (modified) (2 diffs)
-
plugins/blogroll/index.php (modified) (1 diff)
-
plugins/blowupConfig/index.php (modified) (1 diff)
-
plugins/importExport/index.php (modified) (2 diffs)
-
plugins/maintenance/index.php (modified) (1 diff)
-
plugins/pages/list.php (modified) (1 diff)
-
plugins/pages/page.php (modified) (1 diff)
-
plugins/pings/index.php (modified) (1 diff)
-
plugins/tags/_admin.php (modified) (2 diffs)
-
plugins/tags/tag_posts.php (modified) (1 diff)
-
plugins/tags/tags.php (modified) (1 diff)
-
plugins/themeEditor/index.php (modified) (1 diff)
-
plugins/userPref/index.php (modified) (1 diff)
-
plugins/widgets/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
admin/blog.php
r270 r500 70 70 71 71 echo 72 '<h2><a href="blogs.php">'.__('Blogs').'</a> › '.__('New blog').'</h2>'.72 '<h2><a href="blogs.php">'.__('Blogs').'</a> › <span class="page-title">'.__('New blog').'</span></h2>'. 73 73 74 74 '<form action="blog.php" method="post" id="blog-form">'. -
admin/blog_del.php
r270 r500 16 16 17 17 $blog_id = ''; 18 $blog_name = ''; 18 19 19 20 if (!empty($_POST['blog_id'])) … … 29 30 } else { 30 31 $blog_id = $rs->blog_id; 32 $blog_name = $rs->blog_name; 31 33 } 32 34 } … … 52 54 { 53 55 echo 54 '<h2 >'.__('Delete a blog').'</h2>'.56 '<h2 class="page-title">'.__('Delete a blog').'</h2>'. 55 57 '<p class="message">'.__('Warning').'</p>'. 56 58 '<p>'.sprintf(__('You are about to delete the blog %s. Every entry, comment and category will be deleted.'), 57 '<strong>'.$blog_id.' </strong>').'</p>'.59 '<strong>'.$blog_id.' ('.$blog_name.')</strong>').'</p>'. 58 60 '<p>'.__('Please give your password to confirm the blog deletion.').'</p>'; 59 61 -
admin/blog_pref.php
r270 r500 243 243 { 244 244 echo '<h2>'.(!$standalone ? '<a href="blogs.php">'.__('Blogs').'</a> › ' : ''). 245 html::escapeHTML($blog_name).' › '.246 __('Blog settings').'</ h2>';245 html::escapeHTML($blog_name).' › <span class="page-title">'. 246 __('Blog settings').'</span></h2>'; 247 247 248 248 if (!empty($_GET['add'])) { -
admin/blog_theme.php
r465 r500 216 216 { 217 217 echo 218 '<h2>'.html::escapeHTML($core->blog->name).' › '.__('Blog appearance').'</h2>';218 '<h2>'.html::escapeHTML($core->blog->name).' › <span class="page-title">'.__('Blog appearance').'</span></h2>'; 219 219 220 220 if (!empty($_GET['upd'])) { … … 333 333 echo 334 334 '<h2>'.html::escapeHTML($core->blog->name). 335 ' › <a href="blog_theme.php">'.__('Blog appearance').'</a> › '.__('Theme configuration').'</h2>'.335 ' › <a href="blog_theme.php">'.__('Blog appearance').'</a> › <span class="page-title">'.__('Theme configuration').'<span class="page-title"></h2>'. 336 336 '<p><a class="back" href="blog_theme.php">'.__('back').'</a></p>'; 337 337 -
admin/blogs.php
r270 r500 79 79 } 80 80 81 echo '<h2 >'.__('List of blogs').'</h2>';81 echo '<h2 class="page-title">'.__('List of blogs').'</h2>'; 82 82 83 83 if (!$core->error->flag()) -
admin/categories.php
r270 r500 68 68 } 69 69 70 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.__('Categories').'</h2>';70 echo '<h2>'.html::escapeHTML($core->blog->name).' › <span class="page-title">'.__('Categories').'</span></h2>'; 71 71 72 72 $rs = $core->blog->getCategories(array('post_type'=>'post')); -
admin/category.php
r454 r500 179 179 } 180 180 181 echo $title.'</h2>';181 echo '<span class="page-title">'.$title.'</span></h2>'; 182 182 183 183 echo -
admin/comment.php
r270 r500 184 184 } 185 185 186 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.__('Edit comment').'</h2>'; 187 188 echo '<p><a class="back" href="'.$core->getPostAdminURL($post_type,$post_id).'&co=1#c'.$comment_id.'"> '. 189 sprintf(__('Back to "%s"'),$post_title).'</a></p>'; 190 186 echo '<h2>'.html::escapeHTML($core->blog->name).' › <a href="'. 187 $core->getPostAdminURL($post_type,$post_id).'&co=1#c'.$comment_id.'"> '. 188 $post_title.'</a> › <span class="page-title">'.__('Edit comment').'</span></h2>'; 189 191 190 echo 192 191 '<form action="comment.php" method="post" id="comment-form">'. -
admin/comments.php
r476 r500 148 148 dcPage::open(__('Comments and trackbacks'),$starting_script); 149 149 150 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.__('Comments and trackbacks').'</h2>';150 echo '<h2>'.html::escapeHTML($core->blog->name).' › <span class="page-title">'.__('Comments and trackbacks').'</span></h2>'; 151 151 152 152 if (!$core->error->flag()) -
admin/index.php
r480 r510 191 191 ); 192 192 193 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.__('Dashboard');193 echo '<h2>'.html::escapeHTML($core->blog->name).' › <span class="page-title">'.__('Dashboard').'</span></h2>'; 194 194 195 195 if ($core->auth->getInfo('user_default_blog') != $core->blog->id && $core->auth->blog_count > 1) { 196 196 echo 197 ' - <a href="index.php?default_blog=1" class="button">'.__('Make this blog my default blog').'</a>'; 198 } 199 200 echo '</h2>'; 197 '<p><a href="index.php?default_blog=1" class="button">'.__('Make this blog my default blog').'</a></p>'; 198 } 201 199 202 200 if ($core->blog->status == 0) { -
admin/js/color-picker.js
r0 r499 36 36 span.css('display','block'); 37 37 38 span.css('width',($(this).width()+12)+'px'); 38 /*ligne supprimée car elle ne fait pas le calcul 39 du width de l'input et ça fout la merde */ 40 //span.css('width',($(this).width()+12)+'px'); 39 41 span.css('padding','0 5px 0 0'); 40 42 $(this).wrap(span); … … 45 47 position: 'absolute', 46 48 top: 3, 47 right: 0 49 /* la largeur du span n'étant pas calculée 50 right: 0 crée un affichage pourri. On vire. */ 51 //right: 0 48 52 }); 49 53 -
admin/langs.php
r270 r500 133 133 134 134 echo 135 '<h2 >'.__('Languages management').'</h2>';135 '<h2 class="page-title">'.__('Languages management').'</h2>'; 136 136 137 137 if (!empty($_GET['removed'])) { -
admin/media.php
r408 r505 222 222 call_user_func($open_f,__('Media manager')); 223 223 224 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.__('Media manager').' › '.__('confirm removal').'</h2>';224 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.__('Media manager').' › <span class="page-title">'.__('confirm removal').'</span></h2>'; 225 225 226 226 echo … … 278 278 } 279 279 280 echo '<h2>'.html::escapeHTML($core->blog->name).' › <a href="'.html::escapeURL($page_url.'&d=').'">'.__('Media manager').'</a>'. 281 ' / '.(isset($core->media) ? $core->media->breadCrumb(html::escapeURL($page_url).'&d=%s') : '').'</h2>'; 280 echo '<h2>'.html::escapeHTML($core->blog->name).' › '; 281 if (!isset($core->media)) { 282 echo '<span class="page-title">'.__('Media manager').'</span></h2>'; 283 } else { 284 $breadcrumb = $core->media->breadCrumb(html::escapeURL($page_url).'&d=%s','<span class="page-title">%s</span>'); 285 if ($breadcrumb == '') { 286 echo '<span class="page-title">'.__('Media manager').'</span></h2>'; 287 } else { 288 echo '<a href="'.html::escapeURL($page_url.'&d=').'">'.__('Media manager').'</a>'.' / '.$breadcrumb.'</h2>'; 289 } 290 } 282 291 283 292 if (!$dir) { -
admin/media_item.php
r375 r500 182 182 echo '<h2><a href="'.html::escapeURL($media_page_url).'">'.__('Media manager').'</a>'. 183 183 ' / '.$core->media->breadCrumb(html::escapeURL($media_page_url).'&d=%s'). 184 $file->basename.'</h2>';184 '<span class="page-title">'.$file->basename.'</span></h2>'; 185 185 186 186 # Insertion popup -
admin/permissions.php
r454 r500 98 98 ); 99 99 100 echo '<h2><a href="users.php">'.__('Users').'</a> › '.__('Permissions').'</h2>';100 echo '<h2><a href="users.php">'.__('Users').'</a> › <span class="page-title">'.__('Permissions').'</span></h2>'; 101 101 102 102 if (!empty($_GET['upd'])) { -
admin/permissions_blog.php
r270 r500 90 90 dcPage::open(__('choose a blog'),$starting_script); 91 91 92 echo '<h2><a href="users.php">'.__('Users').'</a> › '.__('Choose a blog').'</h2>';92 echo '<h2><a href="users.php">'.__('Users').'</a> › <span class="page-title">'.__('Choose a blog').'</span></h2>'; 93 93 94 94 if (!$core->error->flag()) -
admin/plugin.php
r270 r500 83 83 call_user_func($open_f,__('Plugin not found')); 84 84 85 echo '<h2 >'.__('Plugin not found').'</h2>';85 echo '<h2 class="page-title">'.__('Plugin not found').'</h2>'; 86 86 87 87 echo '<p>'.__('The plugin you reached does not exist or does not have an admin page.').'</p>'; -
admin/plugins.php
r270 r500 173 173 174 174 echo 175 '<h2 >'.__('Plugins management').'</h2>';175 '<h2 class="page-title">'.__('Plugins management').'</h2>'; 176 176 177 177 if (!empty($_GET['removed'])) { -
admin/popup_link.php
r270 r500 21 21 dcPage::openPopup(__('Add a link'),dcPage::jsLoad('js/jsToolBar/popup_link.js')); 22 22 23 echo '<h2 >'.__('Add a link').'</h2>';23 echo '<h2 class="page-title">'.__('Add a link').'</h2>'; 24 24 25 25 # Languages combo -
admin/popup_posts.php
r270 r500 33 33 dcPage::jsLoad('js/jsToolBar/popup_posts.js')); 34 34 35 echo '<h2 >'.__('Add a link to an entry').'</h2>';35 echo '<h2 class="page-title">'.__('Add a link to an entry').'</h2>'; 36 36 37 37 echo '<form action="popup_posts.php" method="get">'. -
admin/post.php
r458 r500 319 319 } 320 320 321 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.'<a href="posts.php">'.__('Entries').'</a> › '.$page_title;321 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.'<a href="posts.php">'.__('Entries').'</a> › <span class="page-title">'.$page_title.'</span>'; 322 322 323 323 if ($post_id && $post->post_status == 1) { -
admin/post_media.php
r270 r500 61 61 dcPage::open(__('Remove attachment')); 62 62 63 echo '<h2>'.__('Attachment').' › '.__('confirm removal').'</h2>';63 echo '<h2>'.__('Attachment').' › <span class="page-title">'.__('confirm removal').'</span></h2>'; 64 64 65 65 echo -
admin/posts.php
r270 r500 231 231 { 232 232 echo 233 '<h2>'.html::escapeHTML($core->blog->name).' › '.__('Entries').'</h2>'.233 '<h2>'.html::escapeHTML($core->blog->name).' › <span class="page-title">'.__('Entries').'</span></h2>'. 234 234 '<p class="top-add"><a class="button add" href="post.php">'.__('New entry').'</a></p>'; 235 235 -
admin/posts_actions.php
r270 r500 207 207 if ($action == 'category') 208 208 { 209 echo '<h2 >'.__('Change category for entries').'</h2>';209 echo '<h2 class="page-title">'.__('Change category for entries').'</h2>'; 210 210 211 211 # categories list … … 238 238 elseif ($action == 'author' && $core->auth->check('admin',$core->blog->id)) 239 239 { 240 echo '<h2 >'.__('Change author for entries').'</h2>';240 echo '<h2 class="page-title">'.__('Change author for entries').'</h2>'; 241 241 242 242 echo -
admin/preferences.php
r454 r500 334 334 } 335 335 336 echo '<h2 >'.$page_title.'</h2>';336 echo '<h2 class="page-title">'.$page_title.'</h2>'; 337 337 338 338 # User profile -
admin/search.php
r270 r500 73 73 74 74 echo 75 '<h2>'.html::escapeHTML($core->blog->name).' › '.__('Search').'</h2>'.75 '<h2>'.html::escapeHTML($core->blog->name).' › <span class="page-title">'.__('Search').'</span></h2>'. 76 76 '<form action="search.php" method="get">'. 77 77 '<fieldset><legend>'.__('Search options').'</legend>'. -
admin/style/default.css
r494 r511 11 11 # -- END LICENSE BLOCK ----------------------------------------- 12 12 */ 13 14 /* ------------------------------------------------------------------ html */ 13 15 body { 14 font: 7 6%/1.5em Helvetica,Arial,sans-serif;16 font: 75%/1.5em Helvetica,Arial,sans-serif; 15 17 color: #333; 16 18 background: #f5f5f5; … … 38 40 margin-bottom: 0.6em; 39 41 } 40 41 42 h2 { 42 43 color: #666; … … 44 45 padding: 4px 0; 45 46 } 46 47 .page-title { 48 color: #d30e60; 49 } 47 50 h3 { 48 51 color: #333; … … 81 84 /* LAYOUT 82 85 -------------------------------------------------------- */ 86 /* prelude */ 83 87 #prelude { 84 88 background: #575859; … … 95 99 color:#fff; 96 100 } 97 101 /* header */ 98 102 #header { 99 103 background: #575859; … … 126 130 #info-boxes { 127 131 background: #575859; 132 font-size: .95em; 133 height: 3em; 128 134 } 129 135 #info-box1 { … … 135 141 } 136 142 #info-box2 { 137 margin: 0;143 margin: .1em 0 0 0; 138 144 padding: .5em 1em 4px 0; 139 145 color: #fff; … … 144 150 } 145 151 #info-box1 select { 146 width: 20em;152 width: 15em; 147 153 } 148 154 #info-box1 a img, #info-box2 a img { … … 155 161 color: #fff; 156 162 border-bottom-color: #ccc; 157 margin-left: 0.5em;158 margin-right: 0.5em;163 margin-left: .3em; 164 margin-right: .3em; 159 165 white-space: nowrap; 166 font-weight: normal; 160 167 } 161 168 #info-box1 a { 162 margin-left: 1. 5em;169 margin-left: 1.33em; 163 170 } 164 171 #info-box2 a.active { … … 168 175 background-color: #f5f5f5; 169 176 color: #333; 177 font-weight: bold; 170 178 } 171 179 #info-box2 span { 172 180 color: #575859; 173 181 } 182 /* prelude */ 174 183 #wrapper { 175 184 width: 100%; … … 193 202 #content:before, #content:after {content:"";display:table;} 194 203 #content:after {clear:both;} 195 204 /* -------------------------------------------------- layout - multipart */ 205 .three-cols { 206 } 207 .three-cols .col { 208 width: 32.3%; 209 float: left; 210 margin-left: 1%; 211 } 212 .three-cols .col:first-child { 213 width: 33.3%; 214 margin-left: 0; 215 } 216 .two-cols { 217 position: static; 218 } 219 .two-cols .col { 220 width: 49%; 221 margin-left: 2%; 222 float: left; 223 } 224 .two-cols .col:first-child { 225 width: 49%; 226 margin-left: 0; 227 } 228 .two-cols .col70{ 229 width: 69%; 230 margin-left: 0; 231 float: left; 232 } 233 .two-cols .col30 { 234 width: 28%; 235 margin-left: 2%; 236 float: left; 237 } 238 /* -------------------------------------------------------------- layout - onglets */ 239 .part-tabs ul { 240 padding: .3em 0 1px 1em; 241 border-bottom: 1px solid #999; 242 } 243 .part-tabs li { 244 list-style: none; 245 margin: 0; 246 display: inline; 247 } 248 .part-tabs li a { 249 padding: .3em 0.5em; 250 margin-right: .5em; 251 border: 1px solid #999; 252 border-bottom: none; 253 background: #dfdfdf; 254 text-decoration: none; 255 -webkit-border-top-left-radius: .3em; 256 -webkit-border-top-right-radius: .3em; 257 -moz-border-radius-topleft: .3em; 258 -moz-border-radius-topright: .3em; 259 border-top-left-radius: .3em; 260 border-top-right-radius: .3em; 261 color: #000; 262 } 263 .part-tabs li.part-tabs-link a { 264 background: #ffe; 265 } 266 .part-tabs li a:hover, .part-tabs li a:focus { 267 color: #000; 268 background: #fff; 269 border-bottom-color: #fff; 270 } 271 .part-tabs li.part-tabs-active a { 272 background: #fff; 273 border-bottom: 1px solid #fff; 274 color: #000; 275 font-weight: bold; 276 } 277 /* ------------------------------------------------------------------ main-menu */ 196 278 #main-menu { 197 279 width: 13em; 198 280 float: left; 199 margin-top: 2em;281 margin-top: 1.2em; 200 282 margin-bottom: 1em; 201 283 } 202 284 203 285 #main-menu h3 { 204 margin: 0 0 0.5em 0;286 margin: 0 0 0.5em; 205 287 padding: .5em 0 0 .5em; 206 288 text-transform: uppercase; … … 216 298 #main-menu li { 217 299 display: block; 218 margin: 0.5em 0 0 0;300 margin: 0.5em 0 0; 219 301 padding: .2em 0 0 32px; 220 302 background-repeat: no-repeat; … … 236 318 margin-right: -1px; 237 319 } 238 # main-menu #dashboard-menu li{239 margin -left: 0;320 #favorites-menu { 321 margin: 0 0 2em; 240 322 } 241 323 #favorites-menu h3 { 242 margin-right: .5em; 243 background: transparent url(../images/menu/favorite.png) no-repeat right; 244 } 245 #favorites-menu { 246 background: #D9E1D9; 247 padding: .2em 0 .1em 0; 248 margin: 0 .5em 0 0; 249 } 250 #favorites-menu ul { 324 color: #333; 325 text-transform: none; 251 326 } 252 327 #favorites-menu a { … … 256 331 #favorites-menu .active { 257 332 background-color: transparent; 258 border: none ;333 border: none; 259 334 } 260 335 #favorites-menu .active a { 261 336 font-weight: bold; 262 337 } 263 338 /* ------------------------------------------------------------------ footer */ 264 339 #footer { 265 340 clear: both; … … 285 360 font-weight: normal; 286 361 } 287 #footer a.helplink { 288 display: block; 289 float: left; 290 } 291 292 #debug { 293 position: absolute; 294 top: 0; 362 /* ---------------------------------------------------------------------------- auth.php */ 363 #login-screen { 364 display: block; 365 width: 18em; 366 margin: 1.5em auto 0; 367 font-size: 1.1em; 368 } 369 #login-screen h1 { 370 text-indent: -2000px; 371 background: transparent url(dotclear-logo2.png) no-repeat top left; 372 height: 50px; 373 margin-bottom: .5em; 374 margin-left: .5em; 375 } 376 #login-screen fieldset { 377 border: 1px solid #999; 378 padding: 1em 1em 0 1em; 379 -moz-border-radius: 4px; 380 -webkit-border-radius: 4px; 381 border-radius: 4px; 382 } 383 #login-screen input[type=text], #login-screen input[type=password], #login-screen input[type=submit] { 295 384 width: 100%; 296 height: 4px; 297 background: #d99; 298 } 299 #debug div { 300 display: none; 301 padding: 3px 0.5em 2px; 302 } 303 #debug p { 304 margin: 0.5em 0; 305 } 306 #debug:hover { 307 height: auto; 308 } 309 #debug:hover div { 310 display: block; 311 } 312 313 /* DASHBOARD */ 385 } 386 #login-screen #issue { 387 margin-left: 1em; 388 font-size: 1em; 389 } 390 #login-screen #issue strong {font-weight: normal;} 391 392 393 /* ------------------------------------------------------------------ dashboard */ 314 394 #dashboard-main { 315 395 float: left; … … 348 428 text-decoration: underline; 349 429 } 350 351 430 #quick { 352 431 clear: left; … … 364 443 color: #666; 365 444 } 366 367 445 #dashboard-items { 368 446 float: left; … … 372 450 padding-top: 3em; 373 451 } 374 #dashboard-items pimg {452 #dashboard-items img { 375 453 vertical-align: middle; 376 454 } … … 384 462 color: #666; 385 463 } 386 # dashboard-items #news dt {464 #news dt { 387 465 font-weight: bold; 388 466 margin: 0 0 0.4em 0; 389 467 } 390 # dashboard-items #news dd {468 #news dd { 391 469 margin: 0 0 1em 0; 392 470 } 393 # dashboard-items #news dd p {471 #news dd p { 394 472 margin: 0.2em 0 0 0; 395 473 } … … 403 481 color: #fff; 404 482 } 405 406 /* POST */ 483 /* ------------------------------------------------------------------ post */ 407 484 #entry-wrapper { 408 485 float: left; … … 420 497 clear: both; 421 498 } 422 423 /* CATEGORIES */ 499 /* ------------------------------------------------------------------ categories */ 424 500 #categories { 425 501 margin: 1em 0 2em; … … 430 506 padding: 0; 431 507 } 432 #categories ulli {508 #categories li { 433 509 margin: .5em 0; 434 510 padding: .3em 1.5em; … … 439 515 border-radius: .3em; 440 516 } 441 #categories ul lih4 {442 margin: 0; 443 } 444 #categories ul lih4 span {517 #categories h4 { 518 margin: 0; 519 } 520 #categories h4 span { 445 521 font-weight: normal; 446 522 } 447 #categories ulli p {523 #categories li p { 448 524 margin: 0; 449 525 } … … 451 527 width: 100%; 452 528 } 453 454 /* MEDIA */ 529 /* ------------------------------------------------------------------ media */ 455 530 #media-icon { 456 531 float: left; … … 475 550 height: 500px; 476 551 } 477 478 552 #add-file-f { 479 553 position: relative; … … 486 560 border: none; 487 561 } 488 489 /* favorites */ 562 .media-list { 563 position: static; 564 } 565 .media-col-0 { 566 clear: left; 567 } 568 .media-item { 569 position: relative; 570 border-top: 1px solid #ccc; 571 margin-bottom: 1em; 572 padding: 5px 0; 573 } 574 div.media-list .media-item { 575 width: 49%; 576 float: left; 577 margin-right: 1%; 578 } 579 a.media-icon { 580 display: block; 581 border-bottom: none; 582 float: left; 583 } 584 .media-icon img { 585 display: block; 586 } 587 .media-item ul { 588 display: block; 589 list-style: none; 590 margin: 0 0 0 60px; 591 padding: 0; 592 } 593 li.media-action { 594 display: block; 595 position: absolute; 596 top: 5px; 597 right: 5px; 598 height: 16px; 599 } 600 li.media-action a { 601 border: none; 602 } 603 li.media-action form { 604 display: inline; 605 } 606 li.media-action input { 607 border: none; 608 } 609 /* ------------------------------------------------------------------ preferences */ 490 610 #my-favs ul { 491 611 list-style-type: none; … … 494 614 line-height: 1.2; 495 615 } 496 #my-favs ulli {616 #my-favs li { 497 617 display: block; 498 618 float: left; … … 513 633 display: inline; 514 634 } 515 516 635 #default-favs h3 { 517 636 margin-top: 2em; 518 637 margin-bottom: 1em; 519 638 } 520 521 639 .fav-list { 522 640 list-style-type: none; … … 530 648 position: relative; 531 649 } 532 .fav-list liimg {650 .fav-list img { 533 651 vertical-align: middle; 534 652 margin-right: .2em; … … 549 667 border-radius: .5em; 550 668 } 551 552 /* Help */ 669 /* -------------------------------------------------------------------- Themes */ 670 #themes { 671 border-bottom: 1px solid #ccc; 672 margin: 1em 0; 673 } 674 #themes div.theme-details { 675 clear: left; 676 border-top: 1px solid #ccc; 677 padding: 1em 0; 678 } 679 #themes div.theme-details:hover { 680 background: #eee; 681 } 682 #themes div.theme-details div.theme-shot { 683 float: left; 684 } 685 #themes div.theme-details div.theme-shot img { 686 display: block; 687 width: 57px; 688 height: 50px; 689 border: 1px solid #ccc; 690 } 691 #themes div.theme-details div.theme-info { 692 margin-left: 67px; 693 } 694 #themes div.theme-details div.theme-info span.theme-desc { 695 display: block; 696 } 697 #themes div.theme-details div.theme-info span.theme-version { 698 color: #666; 699 } 700 #themes div.theme-details div.theme-actions { 701 margin-left: 67px; 702 } 703 /* Themes list, JS version */ 704 #themes-wrapper { 705 } 706 #theme-box { 707 border: 1px solid #999; 708 border-left: none; 709 padding: 5px; 710 float: right; 711 height: 420px; 712 width: 320px; 713 overflow: auto; 714 } 715 #theme-box div.theme-shot img { 716 display: block; 717 margin: 0 0 0 10px; 718 width: 280px; 719 height: 245px; 720 border: 1px solid #ccc; 721 } 722 #theme-box div.theme-info { 723 margin: 1em 0 0 10px; 724 } 725 #theme-box h3 { 726 margin: 0; 727 } 728 #theme-box div.theme-info span { 729 display: block; 730 } 731 #theme-box span.theme-version { 732 color: #666; 733 } 734 #theme-box span.theme-parent-ok { 735 color: #666; 736 } 737 #theme-box span.theme-parent-missing { 738 color: #c00; 739 font-weight:bold; 740 } 741 #theme-box div.theme-actions { 742 margin-left: 10px; 743 } 744 #themes-wrapper #themes { 745 border: 1px solid #999; 746 overflow: auto; 747 height: 420px; 748 padding: 5px; 749 margin: 0; 750 } 751 #themes div.theme-details-js { 752 float: left; 753 width: 120px; 754 height: 150px; 755 margin: 0 10px 20px; 756 padding: 10px 10px 0; 757 text-align: center; 758 background: #f3f3f3; 759 border: 1px solid #f3f3f3; 760 cursor: pointer; 761 -moz-border-radius: 4px; 762 -webkit-border-radius: 4px; 763 border-radius: 4px; 764 } 765 #themes div.theme-details-js label { 766 cursor: pointer; 767 } 768 #themes div.theme-details-js.theme-selected { 769 background: #E5E3DA; 770 border: 1px solid #999; 771 } 772 #themes div.theme-details-js div.theme-shot img { 773 width: 120px; 774 height: 105px; 775 border: 1px solid #fff; 776 } 777 #themes div.theme-details-js h3 { 778 font-family: inherit; 779 font-weight: normal; 780 margin: 0; 781 padding: 0; 782 } 783 /* ---------------------------------------------------------- Plugins list */ 784 #plugins td.action { 785 vertical-align: middle; 786 } 787 788 select.l10n option { 789 padding-left: 16px; 790 } 791 option.avail10n { 792 background: transparent url(../images/check-on.png) no-repeat 0 50%; 793 } 794 /* ------------------------------------------------------------------ contextual help */ 553 795 #help { 554 796 margin-top: 2em; … … 573 815 color: #444; 574 816 } 575 #helplink { 576 margin: 0.5em; 817 .helplink { 818 margin-left: 0.5em; 819 float: left; 820 display: block; 577 821 } 578 822 .help-box { … … 600 844 padding: 0 5px 1em 5px; 601 845 } 602 603 /* POPUP */ 846 .help-content dt { 847 font-weight: bold; 848 color: #626262; 849 margin: 0; 850 } 851 .help-content dd { 852 margin: 0.3em 0 1.5em 0; 853 } 854 /* ------------------------------------------------------------------ popups */ 604 855 body.popup #wrapper, body.popup #top { 605 856 margin-top: -1.5em; 857 float: none; 606 858 } 607 859 body.popup #top h1 { … … 623 875 border: none; 624 876 } 625 626 /* CLASSES 627 -------------------------------------------------------- */ 628 629 /* -------------- paragraphe pour bouton Nouveau bidule ----------- */ 877 /* ------------------------------------------------------------------ messages */ 878 div.error, p.error, 879 div.message, p.message, 880 div.static-msg, p.static-msg { 881 padding: 0.5em 0.5em 0.5em 40px; 882 margin-bottom: 1em; 883 -moz-border-radius: 8px; 884 -webkit-border-radius: 8px; 885 border-radius: 8px; 886 } 887 p.error, p.message, p.static-msg { 888 padding-top: 1em; 889 padding-bottom: 1em; 890 } 891 div.error, p.error { 892 background: #e5bfbf url(msg-error.png) no-repeat 5px 5px; 893 color: #600; 894 } 895 div.message, p.message, 896 div.static-msg, p.static-msg { 897 background: #666 url(msg-std.png) no-repeat 5px 5px; 898 color: #fff; 899 } 900 div.message a, p.message a, 901 div.static-msg a, p.static-msg a { 902 color: #fff; 903 } 904 /* ------------------------------------------------------------------ debug */ 905 #debug { 906 position: absolute; 907 top: 0; 908 width: 100%; 909 height: 4px; 910 background: #d99; 911 } 912 #debug div { 913 display: none; 914 padding: 3px 0.5em 2px; 915 } 916 #debug p { 917 margin: 0.5em 0; 918 } 919 #debug:hover { 920 height: auto; 921 } 922 #debug:hover div { 923 display: block; 924 } 925 /* -------------------------------------------------------------------- CLASSES COMMUNES */ 926 927 /* paragraphe pour bouton Nouveau bidule */ 630 928 p.top-add { 631 929 text-align: right; … … 640 938 vertical-align: middle; 641 939 } 642 643 940 /* Si quelque chose a besoin d'être caché sauf pour les revues d'écran */ 644 941 .hidden { … … 652 949 overflow: hidden; 653 950 } 654 655 /* -------------- aide ----------- */656 .help-content dt {657 font-weight: bold;658 color: #626262;659 margin: 0;660 }661 .help-content dd {662 margin: 0.3em 0 1.5em 0;663 }664 665 951 .clear { 666 952 clear: both; … … 686 972 overflow: auto; 687 973 } 688 689 974 .grid { 690 975 background: transparent repeat url('grid.png') 0 0; 691 976 } 692 693 977 .line p { 694 978 margin: 0; 695 979 } 696 697 div.error, p.error, div.message, p.message, div.static-msg, p.static-msg {698 padding: 0.5em 0.5em 0.5em 40px;699 margin-bottom: 1em;700 -moz-border-radius: 8px;701 -webkit-border-radius: 8px;702 border-radius: 8px;703 }704 p.error, p.message, p.static-msg {705 padding-top: 1em;706 padding-bottom: 1em;707 }708 div.error, p.error {709 background: #e5bfbf url(msg-error.png) no-repeat 5px 5px;710 color: #600;711 }712 div.message, p.message, div.static-msg, p.static-msg {713 background: #666 url(msg-std.png) no-repeat 5px 5px;714 color: #fff;715 }716 div.message a, p.message a, div.static-msg a, p.static-msg a {717 color: #fff;718 }719 720 980 .offline { 721 981 color: #666; 722 982 } 723 724 983 ul.nice { 725 984 margin: 1em 0; … … 731 990 padding: 0; 732 991 } 733 734 .three-cols { 735 } 736 .three-cols .col { 737 width: 32.3%; 738 float: left; 739 margin-left: 1%; 740 } 741 .three-cols .col:first-child { 742 width: 33.3%; 743 margin-left: 0; 744 } 745 .two-cols { 746 position: static; 747 } 748 .two-cols .col { 749 width: 49%; 750 margin-left: 2%; 751 float: left; 752 } 753 .two-cols .col:first-child { 754 width: 49%; 755 margin-left: 0; 756 } 757 .two-cols .col70{ 758 width: 69%; 759 margin-left: 0; 760 float: left; 761 } 762 .two-cols .col30 { 763 width: 28%; 764 margin-left: 2%; 765 float: left; 766 } 767 992 .zip-dl { 993 background: transparent url(package.png) no-repeat 0 50%; 994 padding: 5px 0 5px 20px; 995 } 996 /* pas trouvé dans le code */ 768 997 .comment { 769 998 border-top: 2px solid #ccc; … … 778 1007 right: 0; 779 1008 } 780 781 /* -------- onglets ------ */782 .part-tabs ul {783 padding: .3em 0 1px 1em;784 border-bottom: 1px solid #999;785 }786 .part-tabs li {787 list-style: none;788 margin: 0;789 display: inline;790 }791 .part-tabs li a {792 padding: .3em 0.5em;793 margin-right: .5em;794 border: 1px solid #999;795 border-bottom: none;796 background: #dfdfdf;797 text-decoration: none;798 -webkit-border-top-left-radius: .3em;799 -webkit-border-top-right-radius: .3em;800 -moz-border-radius-topleft: .3em;801 -moz-border-radius-topright: .3em;802 border-top-left-radius: .3em;803 border-top-right-radius: .3em;804 color: #000;805 }806 .part-tabs li.part-tabs-link a {807 background: #ffe;808 }809 .part-tabs li a:hover, .part-tabs li a:focus {810 color: #000;811 background: #fff;812 border-bottom-color: #fff;813 }814 .part-tabs li.part-tabs-active a {815 background: #fff;816 border-bottom: 1px solid #fff;817 color: #000;818 font-weight: bold;819 }820 821 /* Themes list */822 #themes {823 border-bottom: 1px solid #ccc;824 margin: 1em 0;825 }826 #themes div.theme-details {827 clear: left;828 border-top: 1px solid #ccc;829 padding: 1em 0;830 }831 #themes div.theme-details:hover {832 background: #eee;833 }834 #themes div.theme-details div.theme-shot {835 float: left;836 }837 #themes div.theme-details div.theme-shot img {838 display: block;839 width: 57px;840 height: 50px;841 border: 1px solid #ccc;842 }843 #themes div.theme-details div.theme-info {844 margin-left: 67px;845 }846 #themes div.theme-details div.theme-info span.theme-desc {847 display: block;848 }849 #themes div.theme-details div.theme-info span.theme-version {850 color: #666;851 }852 #themes div.theme-details div.theme-actions {853 margin-left: 67px;854 }855 /* Themes list, JS version */856 #themes-wrapper {857 }858 #theme-box {859 border: 1px solid #999;860 border-left: none;861 padding: 5px;862 float: right;863 height: 420px;864 width: 320px;865 overflow: auto;866 }867 #theme-box div.theme-shot img {868 display: block;869 margin: 0 0 0 10px;870 width: 280px;871 height: 245px;872 border: 1px solid #ccc;873 }874 #theme-box div.theme-info {875 margin: 1em 0 0 10px;876 }877 #theme-box h3 {878 margin: 0;879 }880 #theme-box div.theme-info span {881 display: block;882 }883 #theme-box span.theme-version {884 color: #666;885 }886 #theme-box span.theme-parent-ok {887 color: #666;888 }889 #theme-box span.theme-parent-missing {890 color: #c00;891 font-weight:bold;892 }893 #theme-box div.theme-actions {894 margin-left: 10px;895 }896 #themes-wrapper #themes {897 border: 1px solid #999;898 overflow: auto;899 height: 420px;900 padding: 5px;901 margin: 0;902 }903 #themes div.theme-details-js {904 float: left;905 width: 120px;906 height: 150px;907 margin: 0 10px 20px;908 padding: 10px 10px 0;909 text-align: center;910 background: #f3f3f3;911 border: 1px solid #f3f3f3;912 cursor: pointer;913 -moz-border-radius: 4px;914 -webkit-border-radius: 4px;915 border-radius: 4px;916 }917 #themes div.theme-details-js label {918 cursor: pointer;919 }920 #themes div.theme-details-js.theme-selected {921 background: #E5E3DA;922 border: 1px solid #999;923 }924 #themes div.theme-details-js div.theme-shot img {925 width: 120px;926 height: 105px;927 border: 1px solid #fff;928 }929 #themes div.theme-details-js h3 {930 font-family: inherit;931 font-weight: normal;932 margin: 0;933 padding: 0;934 }935 936 /* Plugins list */937 #plugins td.action {938 vertical-align: middle;939 }940 .media-list {941 position: static;942 }943 .media-col-0 {944 clear: left;945 }946 .media-item {947 position: relative;948 border-top: 1px solid #ccc;949 margin-bottom: 1em;950 padding: 5px 0;951 }952 div.media-list .media-item {953 width: 49%;954 float: left;955 margin-right: 1%;956 }957 a.media-icon {958 display: block;959 border-bottom: none;960 float: left;961 }962 .media-icon img {963 display: block;964 }965 .media-item ul {966 display: block;967 list-style: none;968 margin: 0 0 0 60px;969 padding: 0;970 }971 li.media-action {972 display: block;973 position: absolute;974 top: 5px;975 right: 5px;976 height: 16px;977 }978 li.media-action a {979 border: none;980 }981 li.media-action form {982 display: inline;983 }984 li.media-action input {985 border: none;986 }987 988 .zip-dl {989 background: transparent url(package.png) no-repeat 0 50%;990 padding: 5px 0 5px 20px;991 }992 993 select.l10n option {994 padding-left: 16px;995 }996 option.avail10n {997 background: transparent url(../images/check-on.png) no-repeat 0 50%;998 }999 1000 1009 /* TABLES 1001 1010 -------------------------------------------------------- */ … … 1019 1028 border-bottom-color: #666; 1020 1029 } 1021 1022 1030 .noborder td, td.noborder, .noborder th, th.noborder { 1023 1031 border-width: 0; 1024 1032 } 1025 1026 1033 table .maximal, table.maximal { 1027 1034 width: 100%; … … 1030 1037 width: 1px; 1031 1038 } 1032 1033 1039 table .nowrap { 1034 1040 white-space: nowrap; 1035 1041 vertical-align: top; 1036 1042 } 1037 1038 1043 td.status { 1039 1044 vertical-align: middle; … … 1075 1080 } 1076 1081 1077 /* FORMS 1078 -------------------------------------------------------- */ 1082 /* ----------------------------------------------------------------- FORMS */ 1079 1083 form { 1080 1084 display: block; … … 1082 1086 padding: 0; 1083 1087 } 1084 1085 1088 fieldset { 1086 1089 display: block; … … 1108 1111 font-weight: normal; 1109 1112 } 1110 1111 1113 input, textarea, select { 1112 1114 background: #f9f9f9; … … 1135 1137 background: transparent; 1136 1138 } 1137 1138 1139 label { 1139 1140 display: block; … … 1175 1176 width: 100%; 1176 1177 } 1177 1178 1178 label.required { 1179 1179 font-weight: bold; … … 1200 1200 top: 0; 1201 1201 } 1202 1203 1202 label .maximal, textarea.maximal, input.maximal { 1204 1203 width: 100%; … … 1212 1211 padding-left: 20px; 1213 1212 } 1214 1215 1213 fieldset.constrained { 1216 1214 margin: 0; … … 1220 1218 } 1221 1219 1222 #login-screen { 1223 display: block; 1224 width: 18em; 1225 margin: 1.5em auto 0; 1226 font-size: 1.1em; 1227 } 1228 #login-screen h1 { 1229 text-indent: -2000px; 1230 background: transparent url(dotclear-logo2.png) no-repeat top left; 1231 height: 50px; 1232 margin-bottom: .5em; 1233 margin-left: .5em; 1234 } 1235 #login-screen fieldset { 1236 border: 1px solid #999; 1237 padding: 1em 1em 0 1em; 1238 -moz-border-radius: 4px; 1239 -webkit-border-radius: 4px; 1240 border-radius: 4px; 1241 } 1242 #login-screen input[type=text], #login-screen input[type=password], #login-screen input[type=submit] { 1243 width: 100%; 1244 } 1245 #login-screen #issue { 1246 margin-left: 1em; 1247 font-size: 1em; 1248 } 1249 #login-screen #issue strong {font-weight: normal;} 1250 1251 1252 /* ------------------ Tous les boutons -------------------- */ 1220 /* --------------------------------------------------------------- buttons */ 1253 1221 h2 a.button { 1254 1222 color: #333; -
admin/trackbacks.php
r270 r510 95 95 } 96 96 97 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.$page_title.'</h2>';97 echo '<h2>'.html::escapeHTML($core->blog->name).' › <span class="page-title">'.$page_title.'</span></h2>'; 98 98 99 99 echo '<p><a class="back" href="'.$core->getPostAdminURL($post->post_type,$id).'">'. -
admin/user.php
r479 r501 181 181 } 182 182 183 echo '<h2><a href="users.php">'.__('Users').'</a> › '.$page_title.'</h2>';183 echo '<h2><a href="users.php">'.__('Users').'</a> › <span class="page-title">'.$page_title.'</span></h2>'; 184 184 185 185 if ($user_id == $core->auth->userID()) { -
admin/users.php
r313 r501 118 118 119 119 echo 120 '<h2 >'.__('Users').'</h2>'.120 '<h2 class="post-title">'.__('Users').'</h2>'. 121 121 '<p class="top-add"><strong><a class="button add" href="user.php">'.__('Create a new user').'</a></strong></p>'; 122 122 -
inc/core/class.dc.media.php
r407 r505 175 175 176 176 @param href <b>string</b> URL pattern 177 @param last <b>string</b> Last item pattern 177 178 @return <b>string</b> HTML code 178 179 */ 179 public function breadCrumb($href )180 public function breadCrumb($href,$last='') 180 181 { 181 182 $res = ''; 182 183 if ($this->relpwd && $this->relpwd != '.') { 183 184 $pwd = ''; 184 foreach (explode('/',$this->relpwd) as $v) { 185 $pwd .= rawurlencode($v).'/'; 186 $res .= '<a href="'.sprintf($href,$pwd).'">'.$v.'</a> / '; 185 $arr = explode('/',$this->relpwd); 186 $count = count($arr); 187 foreach ($arr as $v) { 188 if (($last != '') && (0 === --$count)) { 189 $res .= sprintf($last,$v); 190 } else { 191 $pwd .= rawurlencode($v).'/'; 192 $res .= '<a href="'.sprintf($href,$pwd).'">'.$v.'</a> / '; 193 } 187 194 } 188 195 } -
plugins/aboutConfig/index.php
r270 r500 102 102 } 103 103 ?> 104 <h2><?php echo html::escapeHTML($core->blog->name); ?> › about:config</h2>104 <h2><?php echo html::escapeHTML($core->blog->name); ?> › <span class="page-title">about:config</span></h2> 105 105 106 106 <div id="local" class="multi-part" title="<?php echo __('blog settings'); ?>"> -
plugins/antispam/index.php
r270 r505 110 110 <body> 111 111 <?php 112 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.$page_name.'</h2>';113 112 114 113 if ($filter_gui !== false) 115 114 { 116 echo '< p><a href="'.$p_url.'">'.__('Return to filters').'</a></p>';117 printf('<h3>'.__('%s configuration').'</h3>',$filter->name);115 echo '<h2>'.html::escapeHTML($core->blog->name).' › <a href="'.$p_url.'">'.$page_name.'</a>'. 116 ' › <span class="page-title">'.sprintf(__('%s configuration'),$filter->name).'</span></h2>'; 118 117 119 118 echo $filter_gui; … … 121 120 else 122 121 { 122 echo '<h2>'.html::escapeHTML($core->blog->name).' › <span class="page-title">'.$page_name.'</span></h2>'; 123 123 124 # Information 124 125 $spam_count = dcAntispam::countSpam($core); -
plugins/blogroll/index.php
r454 r500 215 215 216 216 <body> 217 <h2><?php echo html::escapeHTML($core->blog->name); ?> › Blogroll</h2>217 <h2><?php echo html::escapeHTML($core->blog->name); ?> › <span class="page-title">Blogroll</span></h2> 218 218 219 219 <?php -
plugins/blowupConfig/index.php
r270 r500 218 218 echo 219 219 '<h2>'.html::escapeHTML($core->blog->name). 220 ' › <a href="blog_theme.php">'.__('Blog appearance').'</a> › '.__('Blowup configuration').'</h2>'.220 ' › <a href="blog_theme.php">'.__('Blog appearance').'</a> › <span class="page-title">'.__('Blowup configuration').'</span></h2>'. 221 221 '<p><a class="back" href="blog_theme.php">'.__('back').'</a></p>'; 222 222 -
plugins/importExport/index.php
r270 r501 97 97 { 98 98 echo '<h2><a href="'.$p_url.'">'.__('Import/Export').'</a>'. 99 ' › '.html::escapeHTML($current_module->name).'</h2>';99 ' › <span class="page-title">'.html::escapeHTML($current_module->name).'</span></h2>'; 100 100 101 101 echo '<div id="ie-gui">'; … … 105 105 else 106 106 { 107 echo '<h2 >'.__('Import/Export').'</h2>';107 echo '<h2 class="page-title">'.__('Import/Export').'</h2>'; 108 108 echo '<h3>'.__('Import').'</h3>'; 109 109 -
plugins/maintenance/index.php
r270 r500 69 69 70 70 <body> 71 <h2 ><?php echo __('Maintenance'); ?></h2>71 <h2 class="page-title"><?php echo __('Maintenance'); ?></h2> 72 72 73 73 <?php -
plugins/pages/list.php
r270 r500 176 176 <body> 177 177 <?php 178 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.__('Pages').'</h2>'.178 echo '<h2>'.html::escapeHTML($core->blog->name).' › <span class="page-title">'.__('Pages').'</span></h2>'. 179 179 '<p class="top-add"><a class="button add" href="'.$p_url.'&act=page">'.__('New page').'</a></p>'; 180 180 -
plugins/pages/page.php
r458 r500 320 320 321 321 echo '<h2>'.html::escapeHTML($core->blog->name). 322 ' › <a href="'.$p_url.'">'.__('Pages').'</a> › '.$page_title;322 ' › <a href="'.$p_url.'">'.__('Pages').'</a> › <span class="page-title">'.$page_title.'</span>'; 323 323 324 324 if ($post_id && $post->post_status == 1) { -
plugins/pings/index.php
r270 r500 51 51 <body> 52 52 <?php 53 echo '<h2 >'.__('Pings configuration').'</h2>';53 echo '<h2 class="page-title">'.__('Pings configuration').'</h2>'; 54 54 55 55 if (!empty($_GET['up'])) { -
plugins/tags/_admin.php
r454 r501 227 227 { 228 228 echo 229 '<h2 >'.__('Add tags to entries').'</h2>'.229 '<h2 class="page-title">'.__('Add tags to entries').'</h2>'. 230 230 '<form action="posts_actions.php" method="post">'. 231 231 '<div><label for="new_tags" class="area">'.__('Tags to add:').'</label> '. … … 257 257 } 258 258 259 echo '<h2 >'.__('Remove selected tags from entries').'</h2>';259 echo '<h2 class="page-title">'.__('Remove selected tags from entries').'</h2>'; 260 260 261 261 if (empty($tags)) { -
plugins/tags/tag_posts.php
r270 r500 110 110 111 111 <h2><?php echo html::escapeHTML($core->blog->name); ?> › 112 < ?php echo __('Edit tag'); ?></h2>112 <span class="page-title"><?php echo __('Edit tag'); ?></span></h2> 113 113 114 114 <?php -
plugins/tags/tags.php
r270 r500 21 21 <body> 22 22 <h2><?php echo html::escapeHTML($core->blog->name); ?> › 23 < ?php echo __('Tags'); ?></h2>23 <span class="page-title"><?php echo __('Tags'); ?></span></h2> 24 24 25 25 <?php -
plugins/themeEditor/index.php
r270 r500 69 69 <body> 70 70 <?php echo '<h2>'.html::escapeHTML($core->blog->name). 71 ' › <a href="blog_theme.php">'.__('Blog appearance').'</a> › '.__('Theme Editor').'</h2>'; ?>71 ' › <a href="blog_theme.php">'.__('Blog appearance').'</a> › <span class="page-title">'.__('Theme Editor').'</span></h2>'; ?> 72 72 73 73 <p><strong><?php echo sprintf(__('Your current theme on this blog is "%s".'),html::escapeHTML($T['name'])); ?></strong></p> -
plugins/userPref/index.php
r270 r500 98 98 } 99 99 ?> 100 <h2><?php echo html::escapeHTML($core->auth->userID()); ?> › user:preferences</h2>100 <h2><?php echo html::escapeHTML($core->auth->userID()); ?> › <span class="page-title">user:preferences</span></h2> 101 101 102 102 <div id="local" class="multi-part" title="<?php echo __('user preferences'); ?>"> -
plugins/widgets/index.php
r270 r500 163 163 <body> 164 164 <?php 165 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.__('Widgets').'</h2>';165 echo '<h2>'.html::escapeHTML($core->blog->name).' › <span class="page-title">'.__('Widgets').'</span></h2>'; 166 166 167 167 # All widgets
Note: See TracChangeset
for help on using the changeset viewer.
