Browse Source

Finish iteration

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

2
RELEASE-NOTES.md

@ -13,7 +13,7 @@
- **Modal** - Increased `close` specificity, modal will now only close on `> .close` #2736
**Additional Bugs**
- **Input** - `labeled input` now keeps border on label edge so that focus color appears correctly
- **Input** - Input now will reset `font-weight` and `font-style` if set on parent;
- **Menu** - Added `flex: 0 0 auto` to menu item to make sure menu do not collapse text content to reduce space
- **Menu** - Fixed issue with `labeled input` text inside menu not appearing vertically centered

4
src/definitions/elements/input.less

@ -317,7 +317,7 @@
/* Regular Label on Left */
.ui.labeled.input:not([class*="corner labeled"]):not([class*="right labeled"]) > input {
border-left: none;
/*border-left: none;*/
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}
@ -328,7 +328,7 @@
/* Regular Label on Right */
.ui[class*="right labeled"].input > input {
border-right: none;
/*border-right: none;*/
border-top-right-radius: 0px !important;
border-bottom-right-radius: 0px !important;
}

Loading…
Cancel
Save