aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2003-09-24 19:41:14 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2003-09-24 19:41:14 +0000
commit8675e30366dbe0e9baf35a3398019da500198549 (patch)
treeace084d93e82cbafdcc2f1ac45f6961a79f46e22 /phpBB/styles
parentf614337627ac7b6553cf3c6cdb50a3d9d9fe33a3 (diff)
downloadforums-8675e30366dbe0e9baf35a3398019da500198549.tar
forums-8675e30366dbe0e9baf35a3398019da500198549.tar.gz
forums-8675e30366dbe0e9baf35a3398019da500198549.tar.bz2
forums-8675e30366dbe0e9baf35a3398019da500198549.tar.xz
forums-8675e30366dbe0e9baf35a3398019da500198549.zip
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
Diffstat (limited to 'phpBB/styles')
-rw-r--r--phpBB/styles/subSilver/template/posting_topic_review.html19
-rw-r--r--phpBB/styles/subSilver/theme/stylesheet.css6
2 files changed, 8 insertions, 17 deletions
diff --git a/phpBB/styles/subSilver/template/posting_topic_review.html b/phpBB/styles/subSilver/template/posting_topic_review.html
index d4664a1cff..f3efe31c1e 100644
--- a/phpBB/styles/subSilver/template/posting_topic_review.html
+++ b/phpBB/styles/subSilver/template/posting_topic_review.html
@@ -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 -->
diff --git a/phpBB/styles/subSilver/theme/stylesheet.css b/phpBB/styles/subSilver/theme/stylesheet.css
index 90a72a8909..764d7198df 100644
--- a/phpBB/styles/subSilver/theme/stylesheet.css
+++ b/phpBB/styles/subSilver/theme/stylesheet.css
@@ -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; }