From a551335b854681ddf279ca2827ed157191cf0198 Mon Sep 17 00:00:00 2001 From: Jack Lukic Date: Thu, 11 Aug 2016 14:50:47 -0400 Subject: [PATCH] Fix point-events typo #4408 --- RELEASE-NOTES.md | 1 + src/definitions/collections/form.less | 2 +- src/definitions/elements/segment.less | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index d192b88b5..5e8f60089 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -11,6 +11,7 @@ **Bugs** - **NPM** - Fixed `package.json` to allow either jQuery `2.x` or `3.x` #4254 - **Button/Dropdown** - Fixed issue where `ui dropdown button` could have incorrect spacing for dropdown icon +- **Form/Segment** - Fix typo causing `pointer-events: none` no to work on `loading segment` and `loading form` - **Button** - Fixed `vertical buttons` with only 1 button having incorrect border radius **Thanks @Denhai** #4107 - **Grid** - Fixed issue where `(x) aligned column` inside a `(x) aligned row` would not properly apply the `column` alignment - **Form** - Fixed issue where `disabled fields` with radio inputs would not correctly dim the label **Thanks @louwers** #4366 diff --git a/src/definitions/collections/form.less b/src/definitions/collections/form.less index eba909a35..05046015b 100755 --- a/src/definitions/collections/form.less +++ b/src/definitions/collections/form.less @@ -612,7 +612,7 @@ .ui.loading.form { position: relative; cursor: default; - point-events: none; + pointer-events: none; } .ui.loading.form:before { position: absolute; diff --git a/src/definitions/elements/segment.less b/src/definitions/elements/segment.less index 66743fe54..4dfbe37f6 100755 --- a/src/definitions/elements/segment.less +++ b/src/definitions/elements/segment.less @@ -404,7 +404,7 @@ .ui.loading.segment { position: relative; cursor: default; - point-events: none; + pointer-events: none; text-shadow: none !important; color: transparent !important; transition: all 0s linear;