Browse Source

Fixes #793 #1506 #1693 - Adds flex to labeled input

pull/1785/head
jlukic 9 years ago
parent
commit
a666cad582
1 changed files with 7 additions and 20 deletions
  1. 27
      src/definitions/elements/input.less

27
src/definitions/elements/input.less

@ -277,30 +277,23 @@
/* Adjacent Label */ /* Adjacent Label */
.ui.labeled.input { .ui.labeled.input {
display: table;
display: inline-flex;
} }
.ui.labeled.input > input { .ui.labeled.input > input {
display: table-cell;
vertical-align: top;
} }
.ui.labeled.input > .label { .ui.labeled.input > .label {
display: table-cell !important;
vertical-align: middle;
white-space: nowrap;
flex: 1 0 auto;
margin: 0;
font-size: 1em; font-size: 1em;
} }
.ui.labeled.input > .label > .icon {
display: inline;
vertical-align: top;
.ui.labeled.input > .label:not(.corner) {
padding-top: @verticalPadding;
padding-bottom: @verticalPadding;
} }
/* Fluid Labeled */ /* Fluid Labeled */
.ui.fluid.labeled.input { .ui.fluid.labeled.input {
display: table;
width: 100%;
}
.ui.fluid.labeled.input > .label {
width: 0.01%;
display: flex;
} }
/* Label on Left */ /* Label on Left */
@ -338,12 +331,6 @@
} }
/* Spacing with corner label */ /* Spacing with corner label */
.ui[class*="corner labeled"].input {
display: inline-block;
}
.ui[class*="corner labeled"].input > input {
display: block;
}
.ui[class*="corner labeled"].icon.input:not(.left) > input { .ui[class*="corner labeled"].icon.input:not(.left) > input {
padding-right: @labeledIconInputMargin !important; padding-right: @labeledIconInputMargin !important;
} }

Loading…
Cancel
Save