button set with text input

button set with text input

hello

using jquery ui, I created 2 buttons (+ & -) and I use buttonset on the parent div, so far so good

but between the buttons there is a text input , how do I set the same style to the text input so it merges nicely witht the buttons ?

cant find any example anywhere
  1. <button id="minusDelay" title="slower">&nbsp;</button>
    <label for="timerDelay">Delay(ms): </label><input id="timerDelay" style="width:40px">
    <button id="plusDelay" title="faster">&nbsp;</button>
  1. $("#buttonSet1").buttonset({items:"input[type=text]"});

thanks