diff options
author | Christian Vogeley <christian.vogeley@hotmail.de> | 2013-12-22 20:01:18 +0100 |
---|---|---|
committer | Christian Vogeley <christian.vogeley@hotmail.de> | 2013-12-22 20:01:18 +0100 |
commit | 6480e14a910252f550929d3e1d7520a966dfbb09 (patch) | |
tree | f6ea691f8389960630030c7648b418651aced235 | |
parent | 0f4b6ba3718445e17de0d56017e55ab099b6f61d (diff) | |
download | volse-hubzilla-6480e14a910252f550929d3e1d7520a966dfbb09.tar.gz volse-hubzilla-6480e14a910252f550929d3e1d7520a966dfbb09.tar.bz2 volse-hubzilla-6480e14a910252f550929d3e1d7520a966dfbb09.zip |
Use the red matrix icons
-rwxr-xr-x | view/tpl/jot.tpl | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index abe1c0924..a0bc9c805 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -101,7 +101,8 @@ <!-- <div class="modal-body"> --> <div class="modal-body form-group" style="width:90%"> <div class="input-group input-group-sm date" id="datetimepicker1"> - <span class="input-group-addon"><span class="glyphicon glyphicon-calendar"></span> + <span class="input-group-addon"><!-- <span class="glyphicon glyphicon-calendar"></span> --> + <span class="icon-calendar"></span> </span> <input id="expiration-date" type='text' class="form-control" data-format="YYYY-MM-DD HH:mm" size="20"/> </div> @@ -117,7 +118,13 @@ <script type="text/javascript"> $(function() { $('#datetimepicker1').datetimepicker({ - language: 'us' + language: 'us', + icons: { + time: "icon-time", + date: "icon-calendar", + up: "icon-arrow-up", + down: "icon-arrow-down" + } }); }); </script> |