Browse Source

#5281 fix issue with descendors cut-off in transparent input

pull/5411/merge
Jack 7 years ago
parent
commit
3a7d36f343
2 changed files with 2 additions and 0 deletions
  1. 1
      RELEASE-NOTES.md
  2. 1
      src/definitions/elements/input.less

1
RELEASE-NOTES.md

@ -15,6 +15,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** - Fix issue where transparent input had a border radius and could cut off descendors #5281
- **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.

1
src/definitions/elements/input.less

@ -216,6 +216,7 @@
background-color: transparent !important;
padding: 0em !important;
box-shadow: none !important;
border-radius: 0px !important;
}
/* Transparent Icon */

Loading…
Cancel
Save