diff options
author | Andreas Fischer <bantu@phpbb.com> | 2012-05-06 00:43:01 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2012-05-06 00:43:01 +0200 |
commit | 9d542aec1ee43d91eb1ec8bdbb18120947d610b5 (patch) | |
tree | 7ea39163cbb86cdb8e3c977a9f580f74aedf539e /phpBB/adm/style | |
parent | 5ccbe06911d4c1497b8555033352f85aeeda899e (diff) | |
parent | 00c54f8a7cad92eff14fe62530766666c2c796a7 (diff) | |
download | forums-9d542aec1ee43d91eb1ec8bdbb18120947d610b5.tar forums-9d542aec1ee43d91eb1ec8bdbb18120947d610b5.tar.gz forums-9d542aec1ee43d91eb1ec8bdbb18120947d610b5.tar.bz2 forums-9d542aec1ee43d91eb1ec8bdbb18120947d610b5.tar.xz forums-9d542aec1ee43d91eb1ec8bdbb18120947d610b5.zip |
Merge remote-tracking branch 'Noxwizard/ticket/10819' into develop-olympus
* Noxwizard/ticket/10819:
[ticket/10819] Remove support for older browsers
[ticket/10819] Forgot this causes vertical scrollbars on IE
[ticket/10819] Improve side-by-side diff styling
Diffstat (limited to 'phpBB/adm/style')
-rw-r--r-- | phpBB/adm/style/install_update_diff.html | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/phpBB/adm/style/install_update_diff.html b/phpBB/adm/style/install_update_diff.html index b65a014312..4d8bcfd1fc 100644 --- a/phpBB/adm/style/install_update_diff.html +++ b/phpBB/adm/style/install_update_diff.html @@ -119,6 +119,7 @@ table.hrdiff { overflow: hidden; border-bottom: 1px solid #999; table-layout: fixed; + background: transparent; } table.hrdiff th { @@ -128,7 +129,8 @@ table.hrdiff th { font-family: Verdana,Helvetica,sans-serif; font-size: 11px; border-bottom: 1px solid #999; - background: transparent; + border-right: 1px solid #999; + background: #D9D9D9; } table.hrdiff thead th { @@ -142,29 +144,23 @@ table.hrdiff tr:first-child th { } table.hrdiff tbody th { - padding: 2em 1px 1px 1px; font-size: 80%; border-top: 1px solid #999; } -table.hrdiff tbody td.old { - border-left: 1px solid #999; - border-right: 1px solid #999; -} -table.hrdiff tbody td.new { +table.hrdiff tbody td { border-right: 1px solid #999; } table.hrdiff td pre { - overflow: auto; - display: block; - width: 100%; - overflow: auto; - display: block; + font-family: "Consolas", monospace; + font-size: 1.1em; + white-space: pre-wrap; /* css-3 */ + word-wrap: break-word; /* Internet Explorer 5.5+ */ } table.hrdiff .unmodified { - background: #fff; + background: transparent; } table.hrdiff .added { |