calendar icon displayed next to date fields

This commit is contained in:
Serghei Mihai 2015-01-27 22:27:28 +01:00
parent e4729afce2
commit 59404bbf39
2 changed files with 8 additions and 0 deletions

View File

@ -267,6 +267,13 @@ form ul li {
margin: 5px 0;
}
li.datetime:after {
margin-left: 5px;
font-family: FontAwesome;
content: '\f073';
color: #555;
}
form ul li label {
display: block;
}

View File

@ -13,6 +13,7 @@
<script type="text/javascript">
$(function() {
$(".datepicker" ).datepicker();
$('input.datepicker').parent().addClass('datetime');
});
</script>
</form>