Browse Source

Fixes disabled radios #4366

revert-4107-next
Jack Lukic 8 years ago
parent
commit
0f6d1617ac
2 changed files with 3 additions and 1 deletions
  1. 1
      RELEASE-NOTES.md
  2. 3
      src/definitions/collections/form.less

1
RELEASE-NOTES.md

@ -6,6 +6,7 @@
- **Form Validation** - Bracketed notation can now be omitted for rules, instead passing in bracketed values with the `value` parameter #3313
**Bugs**
- **Form** - Fixed issue where `disabled fields` with radio inputs would not correctly dim the label **Thanks @louwers** #4366
- **Menu** - Fixed issue where `dropdown` in `vertical menu` would not correctly open `upward` when no space below **Thanks @gdaunton** #4150 #4156
- **Dropdown** - Fixed issue where dropdown `clear` would not remove active state when `useLabels: true` and multiple dropdown #4275 #4366 **Thanks vinh123456789**
- **Dropdown** - `dropdown icon` no longer relies on stopping event propagation. This means using the dropdown icon will now cause other dropdowns to correctly hide. #3998

3
src/definitions/collections/form.less

@ -596,7 +596,8 @@
pointer-events: none;
opacity: @disabledOpacity;
}
.ui.form .field.disabled label {
.ui.form .field.disabled > label,
.ui.form .fields.disabled > label {
opacity: @disabledLabelOpacity;
}
.ui.form .field.disabled :disabled {

Loading…
Cancel
Save