admin管理员组文章数量:1415139
I´m using the Bootstrap 3 DateTime picker from www.github/Eonasdan/bootstrap-datetimepicker
Everything is working fine, except that I need to use small fonts and less spacing between the calendar grid lines.
Does anyone has an idea on how to do it. This is the original code:
<div class="small">
<div id="myPlaceholder"></div>
</div>
And on Javascript:
$('#myPlaceholder').datetimepicker({
language : 'en'
});
It works well, but does not show small fonts.
I´m using the Bootstrap 3 DateTime picker from www.github./Eonasdan/bootstrap-datetimepicker
Everything is working fine, except that I need to use small fonts and less spacing between the calendar grid lines.
Does anyone has an idea on how to do it. This is the original code:
<div class="small">
<div id="myPlaceholder"></div>
</div>
And on Javascript:
$('#myPlaceholder').datetimepicker({
language : 'en'
});
It works well, but does not show small fonts.
Share Improve this question edited Mar 18, 2015 at 21:52 amphetamachine 30.7k12 gold badges68 silver badges74 bronze badges asked Jan 14, 2015 at 1:06 MendesMendes 18.6k38 gold badges166 silver badges282 bronze badges 01 Answer
Reset to default 5You only need to add your own CSS to style the date picker.
This will make the columns narrower:
.bootstrap-datetimepicker-widget td.day {
width: 200px;
}
This will make the rows shorter:
.bootstrap-datetimepicker-widget td.day {
line-height: 10px;
}
This makes the font smaller for the day numbers:
.bootstrap-datetimepicker-widget td.day {
font-size: 10px;
}
And bining them all:
.bootstrap-datetimepicker-widget td.day {
width: 200px;
line-height: 10px;
font-size: 10px;
}
And as a bonus, this will make the font size of the day of week smaller:
th.dow {
font-size: 12px;
}
本文标签: javascriptSmall fonts on Bootstrap DateTime pickerStack Overflow
版权声明:本文标题:javascript - Small fonts on Bootstrap DateTime picker - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745229825a2648772.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论