diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-06 10:55:31 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-06 10:55:31 +0000 |
commit | 281ed483de292f1d7d3f350a273c402bae1744e6 (patch) | |
tree | c62e6060d5bba5f2f98111f17d01a254e4c4da67 /phpBB/adm | |
parent | d3468832bb07b535d679b067f2567621721f8769 (diff) | |
download | forums-281ed483de292f1d7d3f350a273c402bae1744e6.tar forums-281ed483de292f1d7d3f350a273c402bae1744e6.tar.gz forums-281ed483de292f1d7d3f350a273c402bae1744e6.tar.bz2 forums-281ed483de292f1d7d3f350a273c402bae1744e6.tar.xz forums-281ed483de292f1d7d3f350a273c402bae1744e6.zip |
some fixes. :)
git-svn-id: file:///svn/phpbb/trunk@7836 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm')
-rw-r--r-- | phpBB/adm/style/admin.css | 2 | ||||
-rw-r--r-- | phpBB/adm/style/editor.js | 2 | ||||
-rw-r--r-- | phpBB/adm/style/viewsource.html | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index 44f89fea33..b127462814 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -1232,7 +1232,7 @@ input.disabled { .clearfix, #tabs, .row, #content, fieldset dl, #page-body { height: 1%; - overflow: auto; + overflow: hidden; } /* Syntax Highlighting diff --git a/phpBB/adm/style/editor.js b/phpBB/adm/style/editor.js index e82b9d5d62..93d0059609 100644 --- a/phpBB/adm/style/editor.js +++ b/phpBB/adm/style/editor.js @@ -47,7 +47,7 @@ function initInsertions() { textarea.focus(); baseHeight = doc.selection.createRange().duplicate().boundingHeight; - document.body.focus(); + // document.body.focus(); } } diff --git a/phpBB/adm/style/viewsource.html b/phpBB/adm/style/viewsource.html index 7f0fde239c..f127c9626f 100644 --- a/phpBB/adm/style/viewsource.html +++ b/phpBB/adm/style/viewsource.html @@ -1,10 +1,10 @@ <!-- INCLUDE simple_header.html --> -<div id="acp"> +<div id="acp" style="padding: 0;"> <div class="panel" style="padding: 10px;"> <div style="overflow: auto;"> <h1>{FILENAME}</h1> - <table> + <table class="type2"> <tbody> <!-- BEGIN source --> <tr valign="top"> |