diff options
| -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 39c73d5652..34bf1366c2 100644 --- a/phpBB/adm/style/install_update_diff.html +++ b/phpBB/adm/style/install_update_diff.html @@ -115,6 +115,7 @@ table.hrdiff {  	overflow: hidden;  	border-bottom: 1px solid #999;  	table-layout: fixed; +	background: transparent;  }  table.hrdiff th { @@ -124,7 +125,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 { @@ -138,29 +140,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 {  | 
