Browse Source

Merge branch '2870_both_sides_labeled_input' of https://github.com/maturano/Semantic-UI into next

pull/2942/head
Jack Lukic 9 years ago
parent
commit
5f0ad78a02
1 changed files with 9 additions and 9 deletions
  1. 18
      src/definitions/elements/input.less

18
src/definitions/elements/input.less

@ -329,21 +329,21 @@
}
/* Regular Label on Left */
.ui.labeled.input:not([class*="corner labeled"]):not([class*="right labeled"]) > input {
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}
.ui.labeled.input:not([class*="corner labeled"]):not([class*="right labeled"]) > .label {
.ui.labeled.input:not([class*="corner labeled"]) .label:nth-child(1) {
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
}
.ui.labeled.input:not([class*="corner labeled"]) .label:nth-child(1) + input {
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}
/* Regular Label on Right */
.ui[class*="right labeled"].input > input {
border-top-right-radius: 0px !important;
border-bottom-right-radius: 0px !important;
.ui.right.labeled.input input {
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
}
.ui[class*="right labeled"].input > .label {
.ui.right.labeled.input input + .label {
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}

Loading…
Cancel
Save