fix placeholder styling in safari

pull/1/head
Pierre Bondoerffer 8 years ago
parent 96ff487271
commit 20c252e5c6
No known key found for this signature in database
GPG Key ID: C0C7C0C5063F2236

@ -32,6 +32,9 @@ textarea[disabled] {
font: white; font: white;
border: 0px; border: 0px;
} }
input[type="text"]::placeholder {
color: #333;
}
table#table { table#table {
margin: 0px; margin: 0px;
} }

@ -3,6 +3,7 @@
@poll-th-bg: #aaa; @poll-th-bg: #aaa;
@poll-td-bg: #aaa; @poll-td-bg: #aaa;
@poll-placeholder: #333;
@poll-border-color: #555; @poll-border-color: #555;
@poll-cover-color: #000; @poll-cover-color: #000;
@poll-fg: #000; @poll-fg: #000;
@ -42,6 +43,14 @@ input[type="text"][disabled], textarea[disabled] {
font: white; font: white;
border: 0px; border: 0px;
} }
// The placeholder color only seems to effect Safari when not set, but
// setting others just in case.
input[type="text"]::placeholder {
color: @poll-placeholder;
}
table#table { table#table {
margin: 0px; margin: 0px;
} }

Loading…
Cancel
Save