diff options
author | gnarf <gnarf@gnarf.net> | 2011-06-14 15:11:43 -0500 |
---|---|---|
committer | gnarf <gnarf@gnarf.net> | 2011-06-14 15:11:43 -0500 |
commit | db96e2a51f83c2b1e42b18d7995e356025083ec7 (patch) | |
tree | 05590cb926129244196b78fbe9d95dc806769e7a /tests/visual/effects/effects.all.css | |
parent | c1f71f1c2f732e58a8fbca91185a284ea8db6b1b (diff) | |
download | jquery-ui-db96e2a51f83c2b1e42b18d7995e356025083ec7.tar.gz jquery-ui-db96e2a51f83c2b1e42b18d7995e356025083ec7.zip |
Tests: Adding visual/unit tests for scale effect.
Diffstat (limited to 'tests/visual/effects/effects.all.css')
-rw-r--r-- | tests/visual/effects/effects.all.css | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/tests/visual/effects/effects.all.css b/tests/visual/effects/effects.all.css new file mode 100644 index 000000000..1d531b026 --- /dev/null +++ b/tests/visual/effects/effects.all.css @@ -0,0 +1,55 @@ + +body,html { + margin: 0; + padding: 0; + font-size: 12px; + font-family: Arial; + background: #191919; + color: #fff; +} +body { margin: 1em; } + +ul.effects { + list-style-type: none; + margin: 0; + padding: 0; +} + +ul.effects li { + list-style-type: none; + margin: 0; + padding: 0; + width: 120px; + height: 100px; + float: left; + margin-top: 20px; + margin-left: 20px; +} + +div.effect { + width: 120px; + height: 100px; + background: #ccc; + border: 5px outset #aaa; + float: left; + cursor: pointer; + cursor: hand; +} + +div.current { + border: 5px outset #FF9C08; + background: #FF9C08; +} + +div.effect p { + color: #191919; + font-weight: bold; + margin: 0px; + padding: 10px; +} + +.ui-effects-transfer { + border: 1px dotted #fff; + background: #666; + opacity: 0.5; +} |