diff options
author | Scott Jehl <scott@scottjehl.com> | 2009-02-27 16:57:26 +0000 |
---|---|---|
committer | Scott Jehl <scott@scottjehl.com> | 2009-02-27 16:57:26 +0000 |
commit | 8f8d82782655f8a99de0101672066fcff4381da8 (patch) | |
tree | 3c12ad7a14cc5b9531f44c441abf43ca8645e941 /demos/sortable | |
parent | bd3dc48e02ef7361d61afd384fe53f352d3dfdd6 (diff) | |
download | jquery-ui-8f8d82782655f8a99de0101672066fcff4381da8.tar.gz jquery-ui-8f8d82782655f8a99de0101672066fcff4381da8.zip |
removed margin-left rules due to IE6 conflict
Diffstat (limited to 'demos/sortable')
-rw-r--r-- | demos/sortable/display-grid.html | 2 | ||||
-rw-r--r-- | demos/sortable/portlets.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/demos/sortable/display-grid.html b/demos/sortable/display-grid.html index 30cface19..13466713e 100644 --- a/demos/sortable/display-grid.html +++ b/demos/sortable/display-grid.html @@ -9,7 +9,7 @@ <link type="text/css" href="../demos.css" rel="stylesheet" /> <style type="text/css"> #sortable { list-style-type: none; margin: 0; padding: 0; } - #sortable li { margin: 3px; padding: 1px; float: left; width: 100px; height: 90px; font-size: 4em; text-align: center; } + #sortable li { margin: 3px 3px 3px 0; padding: 1px; float: left; width: 100px; height: 90px; font-size: 4em; text-align: center; } </style> <script type="text/javascript"> $(function() { diff --git a/demos/sortable/portlets.html b/demos/sortable/portlets.html index c2460da95..494b9e946 100644 --- a/demos/sortable/portlets.html +++ b/demos/sortable/portlets.html @@ -9,7 +9,7 @@ <link type="text/css" href="../demos.css" rel="stylesheet" /> <style type="text/css"> .column { width: 170px; float: left; padding-bottom: 100px; } - .portlet { margin: 0 1em 1em 1em; } + .portlet { margin: 0 1em 1em 0; } .portlet-header { margin: 0.3em; padding-bottom: 4px; padding-left: 0.2em; } .portlet-header .ui-icon { float: right; } .portlet-content { padding: 0.4em; } |