Skip to content

Commit

Permalink
Merge pull request tailwindlabs#1064 from tailwindcss/no-placeholder-…
Browse files Browse the repository at this point in the history
…opacity

Use hard-coded default placeholder color
  • Loading branch information
adamwathan authored Aug 6, 2019
2 parents 057c6ff + 371d320 commit 4c0fb91
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions __tests__/fixtures/tailwind-output-important.css
Original file line number Diff line number Diff line change
Expand Up @@ -484,8 +484,7 @@ textarea {

input::placeholder,
textarea::placeholder {
color: inherit;
opacity: 0.5;
color: #a0aec0;
}

button,
Expand Down
3 changes: 1 addition & 2 deletions __tests__/fixtures/tailwind-output.css
Original file line number Diff line number Diff line change
Expand Up @@ -484,8 +484,7 @@ textarea {

input::placeholder,
textarea::placeholder {
color: inherit;
opacity: 0.5;
color: #a0aec0;
}

button,
Expand Down
3 changes: 1 addition & 2 deletions src/plugins/css/preflight.css
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,7 @@ textarea {

input::placeholder,
textarea::placeholder {
color: inherit;
opacity: 0.5;
color: #a0aec0;
}

button,
Expand Down

0 comments on commit 4c0fb91

Please sign in to comment.