Fields, in a form for example, that have a disabled attribute (disabled="disabled") are not showing in the expected grey but instead appear as an editable field due to the following in style.css on line 735:

input.form-autocomplete,
input.form-text,
textarea.form-textarea,
select.form-select {
  padding: 2px;
  border: 1px solid #ccc;
  border-top-color: #999;
  background: #fff;
  color: #333;
}

Removing the last selector, color: #333; would take care of this.

Thanks! Great theme.

Comments

TravisCarden’s picture

Title: styling for disabled fields being overridden » Missing styles for disabled form elements
Version: 6.x-1.0-rc1 » 6.x-1.0-rc2
Category: feature » bug
Status: Active » Fixed

In fact, there were styles in the theme for disabled form elements, but they depended on markup that's different in D7. Fixed and committed. It will be in the dev build tonight. Thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.