Commit bca154e4 by Dányi Bence

webui: placeholder colors fixed

parent 163be79e
...@@ -71,6 +71,31 @@ ...@@ -71,6 +71,31 @@
list-style-type: none; list-style-type: none;
} }
.entry{ .entry{
@placeholderColor: #555;
input::-webkit-input-placeholder{
color: @placeholderColor;
}
input:-moz-placeholder{
color: @placeholderColor;
}
input::-moz-placeholder{
color: @placeholderColor;
}
input:-ms-input-placeholder{
color: @placeholderColor;
}
textarea::-webkit-input-placeholder{
color: @placeholderColor;
}
textarea:-moz-placeholder{
color: @placeholderColor;
}
textarea::-moz-placeholder{
color: @placeholderColor;
}
textarea:-ms-input-placeholder{
color: @placeholderColor;
}
&.opened { &.opened {
.actions{ .actions{
display: block !important; display: block !important;
...@@ -182,19 +207,6 @@ ...@@ -182,19 +207,6 @@
display: none; display: none;
} }
} }
@placeholderColor: #555;
input::-webkit-input-placeholder{
color: @placeholderColor;
}
input:-moz-placeholder{
color: @placeholderColor;
}
input::-moz-placeholder{
color: @placeholderColor;
}
input:-ms-input-placeholder{
color: @placeholderColor;
}
.status{ .status{
text-align: right; text-align: right;
float: right; float: right;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment