You could do this with css:
.text-muted {
color: transparent;
}
http://plnkr.co/EOS6geIcM5KO6tBwlxZF
But, you probably need to make it more specific to avoid interfering with other bootstrap elements that may use text-muted
.
Update
To go further and disable the now invisible days, you can customize the disable
function that is referenced by ng-disable
on each day. For example:
$scope.disabled = function(date, mode) {
return date.getMonth() !== $scope.dt.getMonth();
};
This is overly simplistic, but works for the initial date and should get you started.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…