diff options
Diffstat (limited to 'demos/controlgroup/toolbar.html')
-rw-r--r-- | demos/controlgroup/toolbar.html | 41 |
1 files changed, 24 insertions, 17 deletions
diff --git a/demos/controlgroup/toolbar.html b/demos/controlgroup/toolbar.html index 6153dff87..d9abd664a 100644 --- a/demos/controlgroup/toolbar.html +++ b/demos/controlgroup/toolbar.html @@ -5,6 +5,30 @@ <title>jQuery UI Controlgroup - Toolbar</title> <link rel="stylesheet" href="../../themes/base/all.css"> <link rel="stylesheet" href="../demos.css"> + <style> + .toolbar { + font-size: .75em; + } + .toolbar .ui-selectmenu-button { + width: auto; + float: left; + } + #zoom, #fontsize { + min-width: 75px; + } + #input { + display: none; + } + #input, #display { + width: 98%; + height: 300px; + border: 2px inset #ccc; + font-size: 11px; + font-family: "Lucida Grande"; + zoom: 100%; + padding: 5px; + } + </style> <script src="../../external/requirejs/require.js"></script> <script src="../bootstrap.js" data-modules="button checkboxradio selectmenu"> var iframe = $( "<iframe id='display' contenteditable='true'>" ), @@ -46,23 +70,6 @@ }); }); </script> - <style> - #zoom, #fontsize { - min-width: 75px; - } - #input { - display: none; - } - #input, #display { - width: 98%; - height: 300px; - border: 2px inset #ccc; - font-size: 11px; - font-family: "Lucida Grande"; - zoom: 100%; - padding: 5px; - } - </style> </head> <body> <div class="toolbar"> |