diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2011-07-12 11:15:33 -0400 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2011-07-12 11:15:33 -0400 |
commit | 927857ce84b11b081d0c983e5fa561bc2264bd19 (patch) | |
tree | 7fe48ba978de9cfaff22968780dae2b34b4bf257 /demos/position | |
parent | bfbb9e3b233f7f13b78fcebc81be3cda70c6ddb5 (diff) | |
download | jquery-ui-927857ce84b11b081d0c983e5fa561bc2264bd19.tar.gz jquery-ui-927857ce84b11b081d0c983e5fa561bc2264bd19.zip |
Position: Cleanup up position demo CSS and add it to the within-visual-test
Diffstat (limited to 'demos/position')
-rw-r--r-- | demos/position/default.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/demos/position/default.html b/demos/position/default.html index 60b8b39f9..72bf8abcc 100644 --- a/demos/position/default.html +++ b/demos/position/default.html @@ -12,7 +12,7 @@ <script src="../../ui/jquery.ui.position.js"></script> <link rel="stylesheet" href="../demos.css"> <style> - div#parent { + #parent { width: 60%; margin: 10px auto; padding: 5px; @@ -20,7 +20,7 @@ background-color: #fbca93; text-align: center; } - div.positionable { + .positionable { width: 75px; height: 75px; position: absolute; @@ -30,16 +30,16 @@ background-color: #bcd5e6; text-align: center; } - div.ui-flipped-top { + .ui-flipped-top { border-top: 3px solid #000000; } - div.ui-flipped-bottom { + .ui-flipped-bottom { border-bottom: 3px solid #000000; } - div.ui-flipped-left { + .ui-flipped-left { border-left: 3px solid #000000; } - div.ui-flipped-right { + .ui-flipped-right { border-right: 3px solid #000000; } select, input { @@ -113,7 +113,7 @@ <option value="left">left</option> <option value="center">center</option> <option value="right">right</option> - </select> + </select> <select id="my_vertical"> <option value="top">top</option> <option value="middle">center</option> |