jQuery UI Themes

Posted by Theopile on Stack Overflow See other posts from Stack Overflow or by Theopile
Published on 2010-06-15T05:19:27Z Indexed on 2010/06/15 5:22 UTC
Read the original article Hit count: 209

Filed under:

So I downloaded a jQuery UI Theme and link it, but it looks nothing like the them on the site. The buttons are huge and so is the text.

<link rel="stylesheet" type="text/css" href="/css/trontastic/jquery-ui-1.8.2.custom.css">
$('#Delete').dialog({
                modal: true,
                autoOpen: false,
                title: "Delete?",
                buttons: {
                    "Yes": function(){
                        $(this).dialog('close');
                        $('li#'+$id).remove();
                        $('.nav').sortUpdate();
                    },
                    "No":function(){
                        $(this).dialog('close');
                    }
                },
                draggable: false,
                resizable: false
    });

Am I missing something or is there addition css that I have to handcode? Thanks

© Stack Overflow or respective owner

Related posts about jquery-ui