Skip to content
This repository has been archived by the owner on Jun 28, 2021. It is now read-only.

Commit

Permalink
fix input placeholder text readability
Browse files Browse the repository at this point in the history
  • Loading branch information
ntoff committed Mar 31, 2017
1 parent fa83c13 commit 633784f
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion octoprint_cyborgtheme/static/css/overrides-min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions octoprint_cyborgtheme/static/css/overrides.css
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,27 @@ textarea {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*input too hard to read fix*/
input:-moz-placeholder,
textarea:-moz-placeholder {
color: #444 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
color: #444 !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
color: #444 !important;
}

.input-append .add-on, .input-prepend .add-on {
color: #222;
text-shadow: 0 1px 0 #d4d4d4;
}

/*fix plugin archive upload button height*/
input[type="file"] {
height: 20px;
Expand Down

0 comments on commit 633784f

Please sign in to comment.