Apply css style to all inputs which are disabled

Apply css style to all inputs which are disabled

I would like this to apply css style to all input's which are disabled

$(document).ready(function() {
      $("input type:checkbox").attr("disabled", true).css("border","1px solid #000000");
});
Kane Leins