eonasdan の datepicker を使用しています ( https://github.com/Eonasdan/bootstrap-datetimepicker )
うまく機能しますが、テーブル内に配置すると、テーブルのスタイルが継承されます。デートピッカーもテーブルになるかのようです。
どうすればこれを回避できますか?
私のCSSには次のものがあります:
table.table {
tr {
th {
color: #ff0000; //red
}
}
}
これは私のhtmlファイルです:
<table class="table">
<tr>
<th>Reconcile Date</th>
</tr>
<tr>
<td>
<div class="pickdate">
<input type="text" placeholder="Reconcile Date" class="form-control ">
</div>
</td>
</tr>
</table>
これにより、テーブル ヘッダーのテキストが赤に設定されます。また、日付ピッカーの曜日と月の名前を赤に設定します。pickdate クラスが datepicker をロードすることに注意してください