Changeset 1618 for trunk/gregarius/themes
- Timestamp:
- 11/01/06 08:44:18 (2 years ago)
- Location:
- trunk/gregarius/themes/default/mobile
- Files:
-
- 6 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/themes/default/mobile/feed.php
r1302 r1618 1 1 <?php if(rss_feed_do_title()) { ?> 2 <h3><a href="<?php echo rss_feed_url(); ?>"><?php echo rss_feed_title(); ?></a></h3> 2 <h3> 3 <?php if (rss_feed_favicon_url()) { ?> 4 <img src="<?php echo rss_feed_favicon_url(); ?>" class="favicon" width="16" height="16" alt="" /> 5 <?php } ?> 6 <a href="<?php echo rss_feed_url(); ?>"><?php echo rss_feed_title(); ?></a></h3> 3 7 <?php } 4 8 rss_feed_items(); -
trunk/gregarius/themes/default/mobile/footer.php
r1615 r1618 1 1 <div id="footer"> 2 <p><a href="#top">TOP</a></p>3 2 <?php echo rss_nav() ?> 4 3 </div> -
trunk/gregarius/themes/default/mobile/item.php
r1617 r1618 22 22 <h5><a href="<?php echo rss_item_tagslink(); ?>"><?php echo __('Tags'); ?></a>: <span><?php echo rss_item_tags(); ?></span></h5> 23 23 <?php } ?> 24 <br />25 24 <div class="content"> 26 25 <?php echo rss_item_content(); ?> … … 31 30 <select id="it_<?= rss_item_id(); ?>" name="<?= rss_item_id(); ?>"> 32 31 <option value="mobile_read" <?php 33 if( !$GLOBALS['rss'] -> currentItem -> isUnread &&!$GLOBALS['rss'] -> currentItem -> isSticky ) {32 if(!$GLOBALS['rss'] -> currentItem -> isSticky ) { 34 33 echo "selected=\"selected\""; 35 } ?>>Read</option> 36 <option value="mobile_unread" <?php 37 if( $GLOBALS['rss'] -> currentItem -> isUnread ) { 38 echo "selected=\"selected\""; 39 } 40 ?>>Unread</option> 34 } ?>><?= __('Read'); ?></option> 35 <option value="mobile_unread"><?= __('Unread'); ?></option> 41 36 <option value="mobile_sticky" <?php 42 37 if( $GLOBALS['rss'] -> currentItem -> isSticky ) { 43 38 echo "selected=\"selected\""; 44 39 } 45 ?>> Sticky</option>40 ?>><?= __('Sticky'); ?></option> 46 41 </select> 47 42 </div> -
trunk/gregarius/themes/default/mobile/itemlist.php
r1617 r1618 9 9 <input type='hidden' name='mobile' /> 10 10 <?php } ?> 11 <p ><input type='submit' value='next' /></p>11 <p id="nextitems"><input type='submit' value='next' /></p> 12 12 </form> -
trunk/gregarius/themes/default/mobile/nav.php
r1615 r1618 3 3 $GLOBALS['rss']->nav->appendNavItem(getPath()."?cats",__('Categories')); 4 4 $GLOBALS['rss']->nav->appendNavItem(getPath()."update.php?mobile", __('Refresh')); 5 $GLOBALS['rss']->nav->appendNavItem("#top",'TOP of Page'); 5 6 6 7 foreach ($GLOBALS['rss']->nav->items as $item) { -
trunk/gregarius/themes/default/mobile/style.css
r1617 r1618 1 1 body { 2 2 background-color:white; 3 padding: 0 2px;3 padding: 0; 4 4 margin:0; 5 font: normal x x-small Verdana, Arial, "MS Trebuchet", sans-serif;5 font: normal x-small Verdana, Arial, "MS Trebuchet", sans-serif; 6 6 } 7 7 input,select,option{font-size:xx-small;} … … 11 11 div.item.o { background-color: #f6f6f6;} 12 12 div.item .content { padding: 1em 4px; } 13 a {color:# c16; text-decoration:none;}13 a {color:#d54; text-decoration:none;} 14 14 img {border: 0px;} 15 15 h1,h2,h3,h4,h5 {display:block;} … … 28 28 } 29 29 #footer span {font-weight:bold;} 30 .favicon { vertical-align:bottom; margin-right: 0.5em;} 31 #nextitems{text-align:right;padding-right:2em}
