aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorChristian Vogeley <christian.vogeley@hotmail.de>2013-12-22 20:01:18 +0100
committerChristian Vogeley <christian.vogeley@hotmail.de>2013-12-22 20:01:18 +0100
commit6480e14a910252f550929d3e1d7520a966dfbb09 (patch)
treef6ea691f8389960630030c7648b418651aced235 /view
parent0f4b6ba3718445e17de0d56017e55ab099b6f61d (diff)
downloadvolse-hubzilla-6480e14a910252f550929d3e1d7520a966dfbb09.tar.gz
volse-hubzilla-6480e14a910252f550929d3e1d7520a966dfbb09.tar.bz2
volse-hubzilla-6480e14a910252f550929d3e1d7520a966dfbb09.zip
Use the red matrix icons
Diffstat (limited to 'view')
-rwxr-xr-xview/tpl/jot.tpl11
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>