Changeset 2349

Show
Ignore:
Timestamp:
08/24/08 14:55:28 (5 months ago)
Author:
Heilemann
Message:

And this is me fixing the mess I made in the previous commit. Alright, I'll stop for today.

Location:
trunk/htdocs/system/admin
Files:
4 modified

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 /* 
     1A/* 
    62 * Name: Habari Admin Stylesheet 
    73 * Author: Habari Community 
     
    444440    font-weight: normal;  
    445441    position: absolute;  
    446     margin: 1px 0 0 1px;  
     442    margin: 1px 0 0 1px !important; 
    447443    width: auto !important; 
    448444    cursor: text; 
     
    12191215.plugins .description { 
    12201216    margin: 0; 
    1221     width: 70%; 
     1217    width: 80%; 
    12221218} 
    12231219 
     
    12951291/*- OPTIONS PAGE */ 
    12961292 
    1297 .container .item { 
     1293body.page-options .container .item { 
    12981294    line-height: 34px; 
    12991295} 
  • trunk/htdocs/system/admin/publish.php

    r2306 r2349  
    99<script type="text/javascript"> 
    1010$(document).ready(function(){ 
     11    $('.container').addClass('transparent'); 
    1112    <?php if(isset($post->slug) && ($post->slug != '')) : ?> 
    1213    $('.container.buttons').prepend($('<input type="submit" name="submit" id="delete" class="button delete" value="<?php _e('Delete'); ?>">')); 
     
    1718    }); 
    1819    <?php endif; ?> 
     20 
    1921    <?php if(isset($statuses['published']) && $post->status != $statuses['published']) : ?> 
    2022    $('.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() { 
    2224        $('#status').val(<?php echo $statuses['published']; ?>); 
    2325    }); 
  • trunk/htdocs/system/admin/tags.php

    r2313 r2349  
    55</div> 
    66 
     7<div class="instructions"><span>Click to select</span> &middot; <span>Double-click to open</span></div> 
    78 
    89<div id="tag_collection" class="container"> 
    9   <?php $theme->display( 'tag_collection' ); ?> 
     10    <?php $theme->display( 'tag_collection' ); ?> 
    1011</div> 
    1112 
  • trunk/htdocs/system/admin/themes.php

    r2281 r2349  
    2929            <?php endif; ?> 
    3030        </div> 
     31 
    3132        <?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> 
    3637        <?php endif; ?> 
    3738    </div>