Commit de269cb4 authored by Alain Takoudjou's avatar Alain Takoudjou

Add chat placeholder message to teach how user can show commands help

parent ef8e59d4
...@@ -329,6 +329,16 @@ textarea.form-reply { ...@@ -329,6 +329,16 @@ textarea.form-reply {
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
} }
.form-reply::placeholder {
font-size: .8em;
padding-top: 2px;
opacity: .7;
}
.form-reply:focus::placeholder {
color: transparent;
}
.select { .select {
display: block; display: block;
width: 100%; width: 100%;
......
...@@ -89,7 +89,7 @@ ...@@ -89,7 +89,7 @@
<div id="box"></div> <div id="box"></div>
<div class="reply"> <div class="reply">
<form id="inputform"> <form id="inputform">
<textarea id="input" class="form-reply"></textarea> <textarea id="input" class="form-reply" placeholder="Type /help to show commands"></textarea>
<input id="inputbutton" type="submit" value="&#10148;" class="btn btn-default"/> <input id="inputbutton" type="submit" value="&#10148;" class="btn btn-default"/>
</form> </form>
</div> </div>
......
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 to comment