Browse Source

Fixes #2075, issue with placeholder on input

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

3
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

4
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;
}

Loading…
Cancel
Save