diff options
author | Anika Henke <anika@selfthinker.org> | 2012-11-29 19:26:29 +0000 |
---|---|---|
committer | Mike Sherov <mike.sherov@gmail.com> | 2012-11-29 21:48:58 -0500 |
commit | d7bff010691b542d918245bac11beac2b93b3462 (patch) | |
tree | 21f99069de5dfcaf21055ecbe180fe4de0f9d916 /demos/button | |
parent | 83e2a59ace6f00b785dd6f46fd63b416d86e0cc2 (diff) | |
download | jquery-ui-d7bff010691b542d918245bac11beac2b93b3462.tar.gz jquery-ui-d7bff010691b542d918245bac11beac2b93b3462.zip |
Theme: removed or changed occurrences of zoom. Fixes #7975 - Remove invalid CSS for legacy browsers
Because of overlapping issues, this also reverts most of e77edc60 and fixes it in a different way.
Diffstat (limited to 'demos/button')
-rw-r--r-- | demos/button/toolbar.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/demos/button/toolbar.html b/demos/button/toolbar.html index 5be3668f6..62c1ca83a 100644 --- a/demos/button/toolbar.html +++ b/demos/button/toolbar.html @@ -11,12 +11,12 @@ <link rel="stylesheet" href="../demos.css"> <style> #toolbar { - padding: 11px 4px 9px 4px; + padding: 4px; + display: inline-block; } - /* support: IE7 */ - *:first-child+html #toolbar { - padding: 4px 0px 4px 5px; + *+html #toolbar { + display: inline; } </style> <script> @@ -91,7 +91,7 @@ </head> <body> -<span id="toolbar" class="ui-widget-header ui-corner-all"> +<div id="toolbar" class="ui-widget-header ui-corner-all"> <button id="beginning">go to beginning</button> <button id="rewind">rewind</button> <button id="play">play</button> @@ -106,12 +106,12 @@ <input type="radio" id="repeat1" name="repeat" /><label for="repeat1">Once</label> <input type="radio" id="repeatall" name="repeat" /><label for="repeatall">All</label> </span> -</span> +</div> <div class="demo-description"> <p> A mediaplayer toolbar. Take a look at the underlying markup: A few button elements, - an input of type checkbox for the Shuffle button, and three inputs of type radio for the Repeat options. + an input of type checkbox for the Shuffle button, and three inputs of type radio for the Repeat options. </p> </div> </body> |