Skip to content

Commit

Permalink
Stylesheet cleanup and skin edit support
Browse files Browse the repository at this point in the history
* cleaned up stylesheet
* support for skin update to new stylesheet selectors
* support for skin editing
* standardised styling for bubbles, etc
* new quote image with transparent background
* updating default skins to new style
* small updates to make Kind of Blue skin consistent
* new simple skin: Sarvodaya

Closes #9.
  • Loading branch information
Ravi Sarma committed Aug 29, 2009
1 parent 13b866b commit c98b5ce
Show file tree
Hide file tree
Showing 10 changed files with 751 additions and 435 deletions.
8 changes: 4 additions & 4 deletions comments.php
Expand Up @@ -40,9 +40,9 @@

<div class="postmetadata">
<?php
previous_comments_link('<span class="capsule" style="float: left;">' .
previous_comments_link('<span class="capsule actbubble" style="float: left;">' .
'&laquo; previous</span>');
next_comments_link('<span class="capsule" style="float: right;">' .
next_comments_link('<span class="capsule actbubble" style="float: right;">' .
'next &raquo;</span>');
?>
<br clear='all'/>
Expand All @@ -57,7 +57,7 @@

else : // comments are closed ?>
<!-- If comments are closed. -->
<span class='nocomments capsule'>Comments are closed</span>
<span class='capsule nocomments'>Comments are closed</span>
<br/>
<br/>

Expand Down Expand Up @@ -121,7 +121,7 @@

<p><textarea name="comment" id="comment" cols="60%" rows="10" tabindex="4"></textarea></p>

<input name="submit" type="submit" id="submit" class='capsule'
<input name="submit" type="submit" id="submit" class='capsule actbubble'
tabindex="5" value="Submit Comment" />

<?php
Expand Down
10 changes: 5 additions & 5 deletions entry.php
Expand Up @@ -11,12 +11,12 @@
</legend>

<?php if( is_single() || $options['showpagemeta'] == 1 ) : ?>
<div class='dateauthor capsule'>
<div class='capsule dateauthor'>
<?php the_time('F jS, Y') ?> by <?php the_author() ?>
</div>
<?php endif; ?>

<div id='postaction'>
<div id='postaction' class='actbubble'>

<ul>

Expand Down Expand Up @@ -60,7 +60,7 @@
wp_link_pages(
array
(
'before' => '<div id="subpagelinks" class="capsule"><span>Pages:</span> ',
'before' => '<div id="subpagelinks" class="capsule actbubble"><span>Pages:</span> ',
'after' => '</div>',
'next_or_number' => 'number'
)
Expand All @@ -69,12 +69,12 @@

<div>

<input type='button' class='cattrigger capsule'
<input type='button' class='capsule actbubble cattrigger'
value='Categories &darr;'
onclick='fadeBlock("postcats");'/>

<?php if( get_the_tags() ) : ?>
<input type='button' class='cattrigger capsule'
<input type='button' class='capsule actbubble cattrigger'
value='Tags &darr;'
onclick='fadeBlock("posttags");'/>
<?php endif; ?>
Expand Down

0 comments on commit c98b5ce

Please sign in to comment.