Browse Source

Fixed an issue where all child inputs of a icon input would recieve a right padding, not just the main input. This caused issues where a popup was attached to the icon input which caused all of the inputs inside of it to have an uneeded padding.

pull/4157/head
Gareth Daunton 9 years ago
parent
commit
4731246f28
1 changed files with 1 additions and 1 deletions
  1. 2
      src/definitions/elements/input.less

2
src/definitions/elements/input.less

@ -273,7 +273,7 @@
.ui.icon.input > i.icon:not(.link) {
pointer-events: none;
}
.ui.icon.input input {
.ui.icon.input > input {
padding-right: @iconMargin !important;
}

Loading…
Cancel
Save