From d1fe1455166a5c57225825977d52871945bff6f0 Mon Sep 17 00:00:00 2001 From: jlukic Date: Tue, 28 Jul 2015 17:19:02 -0400 Subject: [PATCH] Finish iteration --- RELEASE-NOTES.md | 2 +- src/definitions/elements/input.less | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 284b72049..e18011b75 100644 --- a/RELEASE-NOTES.md +++ b/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 diff --git a/src/definitions/elements/input.less b/src/definitions/elements/input.less index b8929035f..d346da6d5 100755 --- a/src/definitions/elements/input.less +++ b/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; }