diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-12 16:14:07 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-12 16:14:07 +0000 |
commit | 002dd8155708415b3c1c828789feccbfc087a387 (patch) | |
tree | 9c7ec297cc23082f2b5894cd28657f5e7b2492fb /phpBB/adm/style | |
parent | 2ba03a411e561cb943f8ec8f11afc51eaa720275 (diff) | |
download | forums-002dd8155708415b3c1c828789feccbfc087a387.tar forums-002dd8155708415b3c1c828789feccbfc087a387.tar.gz forums-002dd8155708415b3c1c828789feccbfc087a387.tar.bz2 forums-002dd8155708415b3c1c828789feccbfc087a387.tar.xz forums-002dd8155708415b3c1c828789feccbfc087a387.zip |
some more fixes
git-svn-id: file:///svn/phpbb/trunk@7875 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/style')
-rw-r--r-- | phpBB/adm/style/acp_php_info.html | 2 | ||||
-rw-r--r-- | phpBB/adm/style/admin.css | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/phpBB/adm/style/acp_php_info.html b/phpBB/adm/style/acp_php_info.html index e1d4731c64..de065c4896 100644 --- a/phpBB/adm/style/acp_php_info.html +++ b/phpBB/adm/style/acp_php_info.html @@ -6,7 +6,7 @@ <p>{L_ACP_PHP_INFO_EXPLAIN}</p> -<div style="overflow: auto; width: 99%;"> +<div class="phpinfo"> {PHPINFO} </div> diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index b127462814..76875bf412 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -1602,3 +1602,16 @@ fieldset.permissions .permissions-switch { margin: 0; padding: 0; } + +/* Classes for additional tasks +---------------------------------------- */ + +.phpinfo { + overflow: auto; + width: 99%; + direction: ltr; +} + +.phpinfo td, .phpinfo th, .phpinfo h2, .phpinfo h1 { + text-align: left; +} |