From 79fbfee2208ff259996f5237b3874da191e723f2 Mon Sep 17 00:00:00 2001 From: jlukic Date: Tue, 7 Apr 2015 14:42:41 -0400 Subject: [PATCH] Fixes #2075, issue with placeholder on input --- RELEASE-NOTES.md | 3 ++- src/definitions/elements/input.less | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 4399614c9..1fa894360 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -95,7 +95,8 @@ - **Grid** - `x column wide` inside `equal width/height` now cannot grow beyond column size - **Grid** - Fixes colored grid columns not appearing when not nested in rows - **Icon** - Fixes `ascending` and `descending` icon being swapped -- **Input** - Fixed improper left padding on `transparent left icon input` +- **Input** - Fixed improper left padding on `transparent left icon input` **Thanks @zxfwinder** +- **Input** - Fixed `placeholder` color not changing correctly on focus **Thanks @zxfwinder** - **Label** - Labels inside `header` now vertical align better by accounting for line height offset - **List** - Fixed `inverted bulleted list` bullet color - **Loader** - Fix position of `inline centered loader` to be centered correctly diff --git a/src/definitions/elements/input.less b/src/definitions/elements/input.less index dcd42efe7..5e88ea408 100755 --- a/src/definitions/elements/input.less +++ b/src/definitions/elements/input.less @@ -135,11 +135,11 @@ color: @focusColor; box-shadow: @focusBoxShadow; } -.ui.input.focus input input::-webkit-input-placeholder, +.ui.input.focus input::-webkit-input-placeholder, .ui.input input:focus input::-webkit-input-placeholder { color: @placeholderFocusColor; } -.ui.input.focus input input::-moz-placeholder, +.ui.input.focus input::-moz-placeholder, .ui.input input:focus input::-moz-placeholder { color: @placeholderFocusColor; }