Fix missing placeholder prefixes and make styles consistent for Morning and Zenburn

This commit is contained in:
Jérémie Astori 2016-12-20 20:42:08 -05:00
parent b07ec94bc3
commit 4501c9f4f1
2 changed files with 38 additions and 10 deletions

View file

@ -46,11 +46,6 @@ body {
padding: 15px 16px;
}
#chat .search::-webkit-input-placeholder {
color: #99a2b4;
opacity: .5;
}
/* Borders */
#chat .from,
#windows .header,
@ -235,3 +230,22 @@ body {
border-radius: 0;
margin: 0;
}
/* Form elements */
#chat-container ::-moz-placeholder {
color: #99a2b4;
opacity: .5;
}
#chat-container ::-webkit-input-placeholder {
color: #99a2b4;
opacity: .5;
}
#chat-container :-ms-input-placeholder {
color: #99a2b4;
opacity: .5;
}
/* End form elements */

View file

@ -72,11 +72,6 @@ body {
padding: 15px 16px;
}
#chat .search::-webkit-input-placeholder {
color: #d2d39b;
opacity: .5;
}
/* Borders */
#chat .from,
#windows .header,
@ -261,3 +256,22 @@ body {
border-radius: 0;
margin: 0;
}
/* Form elements */
#chat-container ::-moz-placeholder {
color: #d2d39b;
opacity: .5;
}
#chat-container ::-webkit-input-placeholder {
color: #d2d39b;
opacity: .5;
}
#chat-container :-ms-input-placeholder {
color: #d2d39b;
opacity: .5;
}
/* End form elements */