Skip to content

Commit

Permalink
#5284 - double disabled styling on inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Jun 2, 2017
1 parent 6e6c92a commit ae38450
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- **Sticky** - Fix issue where sticky would cause page to shift when `context` height was determined by sticky's height in `position: static;` #3430
- **Sticky** - Fixed edge case where using `offset` setting, sticky element would not internally scroll if the rail contents (without the offset setting) would fit on screen
- **Form Validation** - Fixed issue where radio was not being included in `onFailure` values if not set #5064
- **Input** - Fixes disabled style being applied twice on input **Thanks @levithomason** #5284
- **Menu** - Fixed issue where `left menu` and `right menu` did not display correctly in `stackable menu` on mobile #3604 #5116 **Thanks @BleuDiamant @Traverse**
- **Popup** - Fixed issue where popup would incorrectly add itself to the wrong offset context when using `popup` and `target` setting together in cases where the `target` has a different `offsetParent` than the activating element.
- **Dimmer** - Fixed typo causing body dimmer to add unnecessary `position: relative;` **Thanks @jinyangzhen** #4707
Expand Down
4 changes: 2 additions & 2 deletions src/definitions/elements/input.less
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@
---------------------*/

.ui.disabled.input,
.ui.input input[disabled] {
.ui.input:not(.disabled) input[disabled] {
opacity: @disabledOpacity;
}

.ui.disabled.input input,
.ui.input input[disabled] {
.ui.input:not(.disabled) input[disabled] {
pointer-events: none;
}

Expand Down

0 comments on commit ae38450

Please sign in to comment.