[ckan-changes] commit/ckan: dread: [css]: #1219 Fix for footer inline-block displaying on IE6&7. Thanks to erilem.

Bitbucket commits-noreply at bitbucket.org
Fri Jul 15 14:31:45 UTC 2011


1 new changeset in ckan:

http://bitbucket.org/okfn/ckan/changeset/8c05d27db224/
changeset:   8c05d27db224
branch:      release-v1.4.2
user:        dread
date:        2011-07-15 16:31:20
summary:     [css]: #1219 Fix for footer inline-block displaying on IE6&7. Thanks to erilem.
affected #:  1 file (436 bytes)

--- a/ckan/public/css/ckan.css	Wed Jul 13 17:40:21 2011 +0100
+++ b/ckan/public/css/ckan.css	Fri Jul 15 15:31:20 2011 +0100
@@ -357,6 +357,13 @@
   display: inline-block;
   margin-top: 0;
   margin-right: 10px;
+  /* 
+   * IE 6 & 7 don't support inline-block, but we can use the hasLayout 
+   * magical property. 
+   * http://blog.mozilla.com/webdev/2009/02/20/cross-browser-inline-block/ 
+   */ 
+  zoom: 1; 
+  *display: inline; 
 }
 
 #footer-widget-area .widget-container .textwidget {
@@ -377,6 +384,13 @@
   margin: 0 1em 0 0;
   padding: 0;
   display: inline-block;
+  /* 
+   * IE 6 & 7 don't support inline-block, but we can use the hasLayout 
+   * magical property. 
+   * http://blog.mozilla.com/webdev/2009/02/20/cross-browser-inline-block/ 
+   */ 
+  zoom: 1; 
+  *display: inline; 
 }
 
 #footer-widget-area #fourth {

Repository URL: https://bitbucket.org/okfn/ckan/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.




More information about the ckan-changes mailing list