diff options
author | Richard Worth <rdworth@gmail.com> | 2008-12-30 05:49:01 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-12-30 05:49:01 +0000 |
commit | b5eb51943e468a97d4d6fc654c31940550edc3f4 (patch) | |
tree | 80ece09f572f8e374f08681d93935d6b3085d99e /demos/resizable | |
parent | f401cdc0a8710f8bba0bdbea272801168d9a559e (diff) | |
download | jquery-ui-b5eb51943e468a97d4d6fc654c31940550edc3f4.tar.gz jquery-ui-b5eb51943e468a97d4d6fc654c31940550edc3f4.zip |
demos/resizable: limited background-position fix to resizable element that needs it (with ui-widget-header class)
Diffstat (limited to 'demos/resizable')
-rw-r--r-- | demos/resizable/alsoresize.html | 3 | ||||
-rw-r--r-- | demos/resizable/animate.html | 2 | ||||
-rw-r--r-- | demos/resizable/aspectratio.html | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/demos/resizable/alsoresize.html b/demos/resizable/alsoresize.html index 431ffeaca..ad34c6c00 100644 --- a/demos/resizable/alsoresize.html +++ b/demos/resizable/alsoresize.html @@ -8,7 +8,8 @@ <script type="text/javascript" src="../../ui/ui.core.js"></script>
<script type="text/javascript" src="../../ui/ui.resizable.js"></script>
<style type="text/css">
- #resizable, #also { width: 150px; height: 150px; padding: 0.5em; background-position: top left; }
+ #resizable { background-position: top left; }
+ #resizable, #also { width: 150px; height: 150px; padding: 0.5em; }
#also { margin-top: 1em; }
</style>
<script type="text/javascript">
diff --git a/demos/resizable/animate.html b/demos/resizable/animate.html index 154aee270..fa8117fc3 100644 --- a/demos/resizable/animate.html +++ b/demos/resizable/animate.html @@ -8,7 +8,7 @@ <script type="text/javascript" src="../../ui/ui.core.js"></script>
<script type="text/javascript" src="../../ui/ui.resizable.js"></script>
<style type="text/css">
- #resizable { width: 150px; height: 150px; padding: 0.5em; background-position: top left; }
+ #resizable { width: 150px; height: 150px; padding: 0.5em; }
.ui-resizable-helper { border: 1px dotted gray; }
</style>
<script type="text/javascript">
diff --git a/demos/resizable/aspectratio.html b/demos/resizable/aspectratio.html index 9742d3f3f..f38cb2474 100644 --- a/demos/resizable/aspectratio.html +++ b/demos/resizable/aspectratio.html @@ -8,7 +8,7 @@ <script type="text/javascript" src="../../ui/ui.core.js"></script>
<script type="text/javascript" src="../../ui/ui.resizable.js"></script>
<style type="text/css">
- #resizable { width: 160px; height: 90px; padding: 0.5em; background-position: top left; }
+ #resizable { width: 160px; height: 90px; padding: 0.5em; }
</style>
<script type="text/javascript">
$(function() {
|