diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-09 11:48:43 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-10-08 14:02:36 -0400 |
commit | f6879fc0f52f3d3538fd0f2c1840addb73b476a2 (patch) | |
tree | 64229e342eb53ecb78d152350ae3e897aee4e742 /demos/controlgroup/toolbar.html | |
parent | a00c02513d81ed5d86b056f8734105a1c2d82ea8 (diff) | |
download | jquery-ui-f6879fc0f52f3d3538fd0f2c1840addb73b476a2.tar.gz jquery-ui-f6879fc0f52f3d3538fd0f2c1840addb73b476a2.zip |
Controlgroup: Fix headers and demos
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"> |