diff options
| author | Thomas Bruederli <thomas@roundcube.net> | 2013-01-10 09:20:19 +0100 | 
|---|---|---|
| committer | Thomas Bruederli <thomas@roundcube.net> | 2013-01-10 09:20:19 +0100 | 
| commit | 1f87107b0801a1881d426993c7fca18ca25356b0 (patch) | |
| tree | 77a1cbda3bd1b9a93aa712ddd29a2cdf29d0d039 | |
| parent | 18e23ab763bab2875d4c8fb70034e218ec7c6d14 (diff) | |
Fix logo display in IE8 (#1488889)
| -rw-r--r-- | skins/larry/iehacks.css | 6 | ||||
| -rw-r--r-- | skins/larry/styles.css | 1 | 
2 files changed, 7 insertions, 0 deletions
| diff --git a/skins/larry/iehacks.css b/skins/larry/iehacks.css index 83ea946fa..357ea220f 100644 --- a/skins/larry/iehacks.css +++ b/skins/larry/iehacks.css @@ -65,6 +65,12 @@ input.button:active {  	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#404040', endColorstr='#060606', GradientType=0);  } +#toplogo { +	position: absolute; +	top: 0px; +	left: 10px; +} +  .records-table tr.selected td {  	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#019bc6', endColorstr='#017cb4', GradientType=0);  } diff --git a/skins/larry/styles.css b/skins/larry/styles.css index d7485e709..9386c79d7 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -524,6 +524,7 @@ a.iconlink.upload {  }  #topnav { +	position: relative;  	height: 46px;  	margin-bottom: 10px;  	padding: 0 0 0 10px; | 
