赤でハイライトするには日曜日が必要です。
というクラスがあることは知ってい ui-datepicker-week-end
ます。
私の問題は、他のクラス(ui-widget-content
と)が、設定されていてもui-state-default
、の赤い色を上書きすることです。ui-datepicker-week-end
!important
色付きの唯一のものは、カレンダーの見出しの週末の日です。
赤でハイライトするには日曜日が必要です。
というクラスがあることは知ってい ui-datepicker-week-end
ます。
私の問題は、他のクラス(ui-widget-content
と)が、設定されていてもui-state-default
、の赤い色を上書きすることです。ui-datepicker-week-end
!important
色付きの唯一のものは、カレンダーの見出しの週末の日です。
.ui-datepicker-week-end
要素の子孫であるアンカーのスタイルを設定し、背景色を追加するときにそれらのbackground-image
プロパティをに設定できます。none
これにより、使用しなくても良い結果が得られます!important
。
.ui-datepicker-week-end a {
background-image: none;
background-color: red;
}
編集:color
の代わりにプロパティを設定したい場合はbackground-color
、実際に使用する必要があります!important
:
.ui-datepicker-week-end a {
color: red !important;
}
このフィドルで結果を見ることができます。
簡単な方法
このように日曜日の色は赤
.datepicker table tr td:first-child {
color: red
}
このように月曜日の色は赤
.datepicker table tr td:first-child +td {
color: red
}
木曜日の色はこのように赤です
.datepicker table tr td:first-child + td + td {
color: red
}