Changeset 16 for branches/portal_by_daris
- Timestamp:
- 02/10/09 08:20:50 (3 years ago)
- Location:
- branches/portal_by_daris
- Files:
-
- 4 modified
-
admin/panels.php (modified) (1 diff)
-
manifest.xml (modified) (1 diff)
-
panels.php (modified) (2 diffs)
-
style/style.css (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/portal_by_daris/admin/panels.php
r9 r16 320 320 <div class="sf-set set<?php echo ++$forum_page['item_count'] ?>"> 321 321 <div class="sf-box text"> 322 <label for="fld<?php echo ++$forum_page['fld_count'] ?>"><span><?php echo $lang_admin_panels['Panel name'] ?></span> <small><?php echo $lang_admin_panels['Panel name help'] ?></small></label> <br />322 <label for="fld<?php echo ++$forum_page['fld_count'] ?>"><span><?php echo $lang_admin_panels['Panel name'] ?></span> <small><?php echo $lang_admin_panels['Panel name help'] ?></small></label> 323 323 <span class="fld-input"><input type="text" id="fld<?php echo $forum_page['fld_count'] ?>" name="name" size="50" value="<?php echo forum_htmlencode($cur_panel['name']) ?>" /></span> 324 324 </div> -
branches/portal_by_daris/manifest.xml
r3 r16 54 54 elseif (FORUM_PAGE == 'news') 55 55 { 56 $main_elements['<!-- forum_crumbs_top -->'] = '<div id="brd-crumbs-top" class="crumbs gen-content">'."\n\t".'<p>'./*generate_crumbs(false).*/'</p>'."\n".'</div>';57 $main_elements['<!-- forum_crumbs_end -->'] = ' <div id="brd-crumbs-end" class="crumbs gen-content">'."\n\t".'<p>'./*generate_crumbs(false).*/'</p>'."\n".'</div>';56 $main_elements['<!-- forum_crumbs_top -->'] = '<div id="brd-crumbs-top">'."\n\t".'<p>'./*generate_crumbs(false).*/'</p>'."\n".'</div>'; 57 $main_elements['<!-- forum_crumbs_end -->'] = ''; 58 58 } 59 59 -
branches/portal_by_daris/panels.php
r5 r16 29 29 foreach ($panels as $cur_panel) 30 30 { 31 if (FORUM_PAGE == 'pages' && $location == 3) 32 continue; 33 31 34 ob_start(); 32 35 … … 91 94 $tpl_temp .= "\n".'</div>'; 92 95 93 $tpl_temp .= "\n".'<div style="clear: both"> </div>';96 $tpl_temp .= "\n".'<div style="clear: both"></div>'; 94 97 95 98 $tpl_main = str_replace('<!-- portal_bottom -->', $tpl_temp, $tpl_main); -
branches/portal_by_daris/style/style.css
r2 r16 1 1 2 2 .panel { 3 margin-bottom: 1em ;3 margin-bottom: 1em; 4 4 } 5 5 6 6 .panel .panel-content { 7 7 padding: 1em; 8 } 9 10 .panel br { 11 display: inline; 8 12 } 9 13 … … 15 19 padding-bottom: 0px; 16 20 width: auto; 21 } 22 23 #center .panel .panel-content { 24 padding-top: 0.5em; 17 25 } 18 26 … … 72 80 } 73 81 74 .news-info2 {float: right} 82 .news-info2 { 83 float: right 84 }