게시판 xe_board의 검은색 컬러셋의 글자가 안 보이는 부분의 CSS수정. 에디터의 iframe에 배경을 투명하게 하는 속성 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4963 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-11-24 07:48:31 +00:00
parent 234ce94dd3
commit 3ad2069f34
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,7 @@
@charset "utf-8"; @charset "utf-8";
.viewDocument { color:#888; }
/* board Title */ /* board Title */
.boardHeader h3 { margin:0; border-bottom:3px solid #fe3614; } .boardHeader h3 { margin:0; border-bottom:3px solid #fe3614; }
@ -83,6 +85,7 @@
.boardRead .fileAttached ul li a { color:#AAAAAA; } .boardRead .fileAttached ul li a { color:#AAAAAA; }
.replyBox .fileAttached { border:1px solid #888888; background-color:transparent; padding:5px; margin-top:10px; overflow:hidden;} .replyBox .fileAttached { border:1px solid #888888; background-color:transparent; padding:5px; margin-top:10px; overflow:hidden;}
.replyBox .fileAttached ul li a { color:#AAAAAA; } .replyBox .fileAttached ul li a { color:#AAAAAA; }
.boardWrite * { color:#888888; }
.boardWrite dl.option dd * { color:#888888; } .boardWrite dl.option dd * { color:#888888; }
.replyBox .replyItem { background-color:transparent; border-bottom:1px dotted #888888; } .replyBox .replyItem { background-color:transparent; border-bottom:1px dotted #888888; }
.replyBox .date { color:#888888; } .replyBox .date { color:#888888; }

View file

@ -177,9 +177,9 @@
<!-- 에디터 출력 --> <!-- 에디터 출력 -->
<div class="editorBox" id="editorBox" > <div class="editorBox" id="editorBox" >
<div class="editorMargin" > <div class="editorMargin" >
<iframe id="editor_iframe_{$editor_sequence}" class="richEditor" frameborder="0" height="{$editor_height}" title="Rich Text Editor"></iframe> <iframe id="editor_iframe_{$editor_sequence}" allowTransparency="true" class="richEditor" frameborder="0" height="{$editor_height}" title="Rich Text Editor"></iframe>
<textarea id="editor_textarea_{$editor_sequence}" class="htmlEditor" style="height:{$editor_height}" rows="5" cols="20" title="HTML Editor"></textarea> <textarea id="editor_textarea_{$editor_sequence}" class="htmlEditor" style="height:{$editor_height}" rows="5" cols="20" title="HTML Editor"></textarea>
<iframe id="editor_preview_{$editor_sequence}" name="editor_preview_{$editor_sequence}" frameborder="0" height="{$editor_height}" style="display:none;" onload="setPreviewHeight({$editor_sequence});"></iframe> <iframe id="editor_preview_{$editor_sequence}" allowTransparency="true" name="editor_preview_{$editor_sequence}" frameborder="0" height="{$editor_height}" style="display:none;" onload="setPreviewHeight({$editor_sequence});"></iframe>
</div> </div>
</div> </div>