http://www.mediawiki.org/wiki/Special:Code/MediaWiki/60820

Revision: 60820
Author:   yaron
Date:     2010-01-08 01:30:03 +0000 (Fri, 08 Jan 2010)

Log Message:
-----------
CSS fix for 'checkboxes' input for IE

Modified Paths:
--------------
    trunk/extensions/SemanticForms/skins/SF_main.css

Modified: trunk/extensions/SemanticForms/skins/SF_main.css
===================================================================
--- trunk/extensions/SemanticForms/skins/SF_main.css    2010-01-08 01:29:50 UTC 
(rev 60819)
+++ trunk/extensions/SemanticForms/skins/SF_main.css    2010-01-08 01:30:03 UTC 
(rev 60820)
@@ -45,8 +45,10 @@
 /* this makes sure that in long lists with checkboxes the checkbox and the
 corresponding label are not torn apart by a line break */
 span.checkboxSpan {
-       white-space: nowrap;
-       padding-right: 5px;
+       /* 'nowrap' doesn't work in IE, unfortunately */
+       /* white-space: nowrap; */
+       float: left;
+       padding-right: 9px;
 }
 /* the "remove" and "add another" buttons used for multiple templates */
 input.remove, input.addanother {



_______________________________________________
MediaWiki-CVS mailing list
MediaWiki-CVS@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to