1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

some small fixes

got rid of iframe (topic review)... tested new div method with various browsers, further testing and oppinions would be nice. ;)
NOTE: New css element added to theme


git-svn-id: file:///svn/phpbb/trunk@4510 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2003-09-24 19:41:14 +00:00
parent f614337627
commit 8675e30366
7 changed files with 58 additions and 87 deletions

View File

@@ -1,17 +1,11 @@
<!-- $Id$ -->
<!-- IF S_DISPLAY_INLINE -->
<table class="tablebg" width="95%" border="0" cellpadding="3" cellspacing="1" align="center">
<tr>
<th height="28" align="center">{L_TOPIC_REVIEW}</th>
</tr>
<tr>
<td class="row1"><iframe width="100%" height="300" name="review_window" src="{U_REVIEW_TOPIC}">
<!-- ELSE -->
<!-- INCLUDE simple_header.html -->
<td class="row1"><div class="postreview">
<script language="javascript" type="text/javascript" src="styles/subSilver/template/editor.js"></script>
@@ -120,14 +114,7 @@ function addquote(post_id, username) {
<!-- END postrow -->
</table>
<!-- ENDIF -->
<!-- IF S_DISPLAY_INLINE -->
</iframe></td>
</tr>
</div></td>
</tr>
</table>
<!-- ELSE -->
<!-- INCLUDE simple_footer.html -->
<!-- ENDIF -->

View File

@@ -34,7 +34,6 @@ h3 { font-size: 120%; font-weight: bold; font-family: Verdana, serif; line-heigh
.mainmenu { color: black; font-size: 70%; }
.titles { color: black; font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 130%; text-decoration: none; }
/*
TABLE
*/
@@ -86,3 +85,8 @@ select { color: black; background-color: white; font-family: Verdana, serif; fon
.syntaxhtml { color: #000000; }
.syntaxkeyword { color: #007700; }
.syntaxstring { color: #DD0000; }
/*
DIV
*/
div.postreview { overflow: auto; width: 100%; height: 300px; border: 1px; }