Changeset 7487

Show
Ignore:
Timestamp:
05/01/09 12:08:29 (16 months ago)
Author:
inureyes
Message:

refs #1231

  • 스킨에 따라 div 속성이 inherit 된 경우 inline 으로 무시하도록 수정
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/library/view/view.php

    r7458 r7487  
    10451045 
    10461046function addWebSlice($content, $id, $title) { 
    1047     return '<div class="hslice" id="'.$id.'">'.CRLF. 
     1047    return '<div class="hslice" id="'.$id.'" style="margin:0;padding:0;">'.CRLF. 
    10481048        '<h4 class="entry-title" style="visibility:hidden;height:0;margin:0;padding:0;">'.$title.'</h4>'.CRLF. 
    1049         '<div class="entry-content">'.CRLF.$content.CRLF.'</div>'.CRLF. 
     1049        '<div class="entry-content" style="margin:0;padding:0;">'.CRLF.$content.CRLF.'</div>'.CRLF. 
    10501050        '</div>'.CRLF; 
    10511051}