Browse Source

Fix #2657 action input inside form

pull/2095/merge
jlukic 9 years ago
parent
commit
bfdcf5cf20
2 changed files with 4 additions and 3 deletions
  1. 3
      RELEASE-NOTES.md
  2. 4
      src/definitions/elements/input.less

3
RELEASE-NOTES.md

@ -16,9 +16,10 @@
- **Button** - Fixed `fluid buttons` not working correctly with `<button>` due to button tags not supporting `flex` rules. #2617 - **Button** - Fixed `fluid buttons` not working correctly with `<button>` due to button tags not supporting `flex` rules. #2617
- **Segment* - `horizontal segments` in IE will no longer stretch to the natural width of child imgs #2550 [flexbug #1](https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored) - **Segment* - `horizontal segments` in IE will no longer stretch to the natural width of child imgs #2550 [flexbug #1](https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored)
- **Sticky** - Fixed `sticky` element that cannot fit in viewport not scrolling correctly when fixed to viewport #2605 - **Sticky** - Fixed `sticky` element that cannot fit in viewport not scrolling correctly when fixed to viewport #2605
- **Input** - Fixed `left action input` displaying with incorrect `input` border radius inside `ui form` #2638
- **Form** - Fixed issue with `minLength[1]` validation not behaving same as `minLength > 2` #2636. - **Form** - Fixed issue with `minLength[1]` validation not behaving same as `minLength > 2` #2636.
- **Form** - Form fields will now error when a non-string identifier is used - **Form** - Form fields will now error when a non-string identifier is used
- **Form** - Added `doesntContain` and `doesntContainExactly` #
- **Form** - Added `doesntContain` and `doesntContainExactly` #2638
- **Form** - Fixes errors when a field identifier is named `identifier` #2629 - **Form** - Fixes errors when a field identifier is named `identifier` #2629
- **Modal** - Modal `action` now uses a more specific selector to prevent modifying `comment action` - **Modal** - Modal `action` now uses a more specific selector to prevent modifying `comment action`
- **Formatting** - Fixed several source files that had `CR LF` (Windows) line endings #2649 - **Formatting** - Fixed several source files that had `CR LF` (Windows) line endings #2649

4
src/definitions/elements/input.less

@ -423,8 +423,8 @@
} }
.ui[class*="left action"].input > input { .ui[class*="left action"].input > input {
border-left: none; border-left: none;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
border-top-left-radius: 0px !important;
border-bottom-left-radius: 0px !important;
} }
/*-------------------- /*--------------------

Loading…
Cancel
Save