Changeset 2349
- Timestamp:
- 08/24/08 14:55:28 (5 months ago)
- Location:
- trunk/htdocs/system/admin
- Files:
-
- 4 modified
-
css/admin.css (modified) (4 diffs)
-
publish.php (modified) (2 diffs)
-
tags.php (modified) (1 diff)
-
themes.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/system/admin/css/admin.css
r2348 r2349 1 /* @override 2 http://localhost/habari/system/admin/css/admin.css 3 */ 4 5 /* 1 A/* 6 2 * Name: Habari Admin Stylesheet 7 3 * Author: Habari Community … … 444 440 font-weight: normal; 445 441 position: absolute; 446 margin: 1px 0 0 1px ;442 margin: 1px 0 0 1px !important; 447 443 width: auto !important; 448 444 cursor: text; … … 1219 1215 .plugins .description { 1220 1216 margin: 0; 1221 width: 70%;1217 width: 80%; 1222 1218 } 1223 1219 … … 1295 1291 /*- OPTIONS PAGE */ 1296 1292 1297 .container .item {1293 body.page-options .container .item { 1298 1294 line-height: 34px; 1299 1295 } -
trunk/htdocs/system/admin/publish.php
r2306 r2349 9 9 <script type="text/javascript"> 10 10 $(document).ready(function(){ 11 $('.container').addClass('transparent'); 11 12 <?php if(isset($post->slug) && ($post->slug != '')) : ?> 12 13 $('.container.buttons').prepend($('<input type="submit" name="submit" id="delete" class="button delete" value="<?php _e('Delete'); ?>">')); … … 17 18 }); 18 19 <?php endif; ?> 20 19 21 <?php if(isset($statuses['published']) && $post->status != $statuses['published']) : ?> 20 22 $('.container.buttons').prepend($('<input type="submit" name="submit" id="publish" class="button publish" value="<?php _e('Publish'); ?>">')); 21 $('#publish').click( function(){23 $('#publish').click( function() { 22 24 $('#status').val(<?php echo $statuses['published']; ?>); 23 25 }); -
trunk/htdocs/system/admin/tags.php
r2313 r2349 5 5 </div> 6 6 7 <div class="instructions"><span>Click to select</span> · <span>Double-click to open</span></div> 7 8 8 9 <div id="tag_collection" class="container"> 9 <?php $theme->display( 'tag_collection' ); ?>10 <?php $theme->display( 'tag_collection' ); ?> 10 11 </div> 11 12 -
trunk/htdocs/system/admin/themes.php
r2281 r2349 29 29 <?php endif; ?> 30 30 </div> 31 31 32 <?php if ( isset( $this->engine_vars['configure'] ) ): ?> 32 <div id="themeconfigure">33 <?php Plugins::act( 'theme_ui', $active_theme ); ?>34 <a class="link_as_button" href="<?php URL::out( 'admin', 'page=themes' ); ?>"><?php _e('close'); ?></a>35 </div>33 <div id="themeconfigure"> 34 <?php Plugins::act( 'theme_ui', $active_theme ); ?> 35 <a class="link_as_button" href="<?php URL::out( 'admin', 'page=themes' ); ?>"><?php _e('close'); ?></a> 36 </div> 36 37 <?php endif; ?> 37 38 </div>
