Skip to content

Commit

Permalink
Use pull request foundation#10887 from ncoden/fix/reduce-placeholder-…
Browse files Browse the repository at this point in the history
…specificity-8366 for v6.5.0

c72b876 fix: reduce placeholder specificity foundation#8366

Signed-off-by: Nicolas Coden <nicolas@ncoden.fr>
  • Loading branch information
ncoden committed Jun 16, 2018
1 parent 31d9409 commit 09782cb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scss/forms/_text.scss
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,6 @@ $form-button-radius: $global-radius !default;

input,
textarea {
// Placeholder text
&::placeholder {
color: $input-placeholder-color;
}

// Disabled/readonly state
&:disabled,
&[readonly] {
Expand Down Expand Up @@ -176,4 +171,9 @@ $form-button-radius: $global-radius !default;
}
}
}

// Placeholder text
::placeholder {
color: $input-placeholder-color;
}
}

0 comments on commit 09782cb

Please sign in to comment.