From 13b8aaf8ce8a131207d48dcf6c88a00eb8491e1b Mon Sep 17 00:00:00 2001 From: Jack Lukic Date: Tue, 12 Apr 2016 20:50:13 -0400 Subject: [PATCH] Fixes issue with disabled input getting :active styles #3907 --- RELEASE-NOTES.md | 1 + src/definitions/elements/input.less | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index eb5d3607e..2d803f11f 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -48,6 +48,7 @@ - **Grid** - `centered` content would cause `justified` content to appear aligned left. #3496 - **Icon** - Sizes smaller tham `small` were using with `rem` #3782 - **Input** - Fixes issue with `dropdown` or button on the left side of an `action` input not properly rounding +- **Input** - Fixed `:active` styles appearing on disabled input, when input is disabled using `disabled` property #3907 - **List** - `relaxed` and `very relaxed` lists included unnecessary padding on the first and last items #3710 - **List** - Bullets would be affected by font weight, or whether the list item was a link #3715 #3721 - **List** - Divided lists had unnecessary padding on first and last items, in both horizontal and vertical layouts #3710 diff --git a/src/definitions/elements/input.less b/src/definitions/elements/input.less index 68a9cb6d9..e78c5ac3a 100755 --- a/src/definitions/elements/input.less +++ b/src/definitions/elements/input.less @@ -87,7 +87,8 @@ opacity: @disabledOpacity; } -.ui.disabled.input input { +.ui.disabled.input input, +.ui.input input[disabled] { pointer-events: none; }