jquery.how to change the Date background color.Here で datepicker の色を変更するために次のスタイルを使用します。これ?
<style type="text/css">
.ui-datepicker {
background: #333;
border: 1px solid #555;
color: #EEE;
}
</style>
jquery.how to change the Date background color.Here で datepicker の色を変更するために次のスタイルを使用します。これ?
<style type="text/css">
.ui-datepicker {
background: #333;
border: 1px solid #555;
color: #EEE;
}
</style>
<style type="text/css">
.ui-datepicker {
background: #999;
border: 1px solid #555;
color: #EEE;
}
</style>
これを試して、
.ui-state-default {
background-color: #ccc !important;
background-image: none !important;
}
「.ui-datepicker td」クラスに色を追加
例えば
.ui-datepicker td {
border: 0;
padding: 1px;
background: #f00;
}