Browse Source

Disabled fields disable pointer events #555

pull/2907/head
Jack Lukic 9 years ago
parent
commit
baaf91c85c
6 changed files with 6 additions and 6 deletions
  1. 2
      RELEASE-NOTES.md
  2. 2
      dist/components/header.css
  3. 2
      dist/components/header.min.css
  4. 2
      dist/semantic.css
  5. 2
      dist/semantic.min.css
  6. 2
      src/definitions/collections/form.less

2
RELEASE-NOTES.md

@ -64,11 +64,13 @@
- **Dropdown** - Remove use of `trim` which causes issues IE 11 and below #2806 - **Dropdown** - Remove use of `trim` which causes issues IE 11 and below #2806
- **Embed** - Remove accidental `console.log` statements in js #2760 - **Embed** - Remove accidental `console.log` statements in js #2760
- **Form / Input** - Fixes issue where `ui input` would sometimes collapse to `0px` width, especially when used inside an `inline field` #2705 #2621 #2821 - **Form / Input** - Fixes issue where `ui input` would sometimes collapse to `0px` width, especially when used inside an `inline field` #2705 #2621 #2821
- **Form** - `disabled field(s)` now remove `pointer-events` allowing it to disable checkbox and dropdown functionality #555
- **Form / Input** - Fixes `::placeholder` text color for `ui error input`, modifies form error placeholder color to distinguish from form value error color #2786 - **Form / Input** - Fixes `::placeholder` text color for `ui error input`, modifies form error placeholder color to distinguish from form value error color #2786
- **Form** - Form will no longer show messages that are empty in `error`, `warning`, or `success` state. - **Form** - Form will no longer show messages that are empty in `error`, `warning`, or `success` state.
- **Form** - Date input and other special input in chrome now are the same height as normal input (adds custom vendor shadow dom styling) #2704 - **Form** - Date input and other special input in chrome now are the same height as normal input (adds custom vendor shadow dom styling) #2704
- **Grid** - Fixed issue where `relaxed stackable grid` would have incorrect margin on mobile width - **Grid** - Fixed issue where `relaxed stackable grid` would have incorrect margin on mobile width
- **Grid** - Fixed issue where nested `stackable grid` would have incorrect margin on mobile. - **Grid** - Fixed issue where nested `stackable grid` would have incorrect margin on mobile.
- **Header** - Fixed `attached header` to have the correct bottom border on `top attached` and `attached` variations. #2798
- **Icon** - Fixed typo in cube icon alias caused by bad grep #2765 - **Icon** - Fixed typo in cube icon alias caused by bad grep #2765
- **Input** - Fixed issue with appearance of `left corner labeled left icon input` #2782 - **Input** - Fixed issue with appearance of `left corner labeled left icon input` #2782
- **Item** - Fixed `bottom aligned` not working in item due to incorrect flex value #2826 - **Item** - Fixed `bottom aligned` not working in item due to incorrect flex value #2826

2
dist/components/header.css

@ -670,12 +670,10 @@ a.ui.inverted.grey.header:hover {
margin-top: 0em; margin-top: 0em;
margin-bottom: 0em; margin-bottom: 0em;
border-top: none; border-top: none;
border-bottom: none;
border-radius: 0em; border-radius: 0em;
} }
.ui.top.attached.header { .ui.top.attached.header {
margin-bottom: 0em; margin-bottom: 0em;
border-bottom: none;
border-radius: 0.28571429rem 0.28571429rem 0em 0em; border-radius: 0.28571429rem 0.28571429rem 0em 0em;
} }
.ui.bottom.attached.header { .ui.bottom.attached.header {

2
dist/components/header.min.css
File diff suppressed because it is too large
View File

2
dist/semantic.css

@ -6913,13 +6913,11 @@ a.ui.inverted.grey.header:hover {
margin-top: 0em; margin-top: 0em;
margin-bottom: 0em; margin-bottom: 0em;
border-top: none; border-top: none;
border-bottom: none;
border-radius: 0em; border-radius: 0em;
} }
.ui.top.attached.header { .ui.top.attached.header {
margin-bottom: 0em; margin-bottom: 0em;
border-bottom: none;
border-radius: 0.28571429rem 0.28571429rem 0em 0em; border-radius: 0.28571429rem 0.28571429rem 0em 0em;
} }

2
dist/semantic.min.css
File diff suppressed because it is too large
View File

2
src/definitions/collections/form.less

@ -586,6 +586,7 @@
.ui.form .disabled.fields .field, .ui.form .disabled.fields .field,
.ui.form .disabled.field, .ui.form .disabled.field,
.ui.form .field :disabled { .ui.form .field :disabled {
pointer-events: none;
opacity: @disabledOpacity; opacity: @disabledOpacity;
} }
.ui.form .field.disabled label { .ui.form .field.disabled label {
@ -595,6 +596,7 @@
opacity: 1; opacity: 1;
} }
/*-------------- /*--------------
Loading Loading
---------------*/ ---------------*/

Loading…
Cancel
Save