我正在尝试修改primeng p-calendar,但它无法正常工作。
例如:
我希望它是这样的:需要更改
但原来它看起来像这样:原始图像
到目前为止我尝试过的:
HTML
<div class="nxui-form-group">
<label for="planEndDate">
<img src="assets/images/calendar.svg" class="nxui-icon-small nxui-icon-align-bottom">
{{ 'i18n.all-damage-reports.label.plan-end-date' | translate }}
</label>
<p-calendar formControlName="planEndDate"
class="calendar-control"
id= "planEndDate"
[title]="'i18n.all-damage-reports.label.plan-end-date' | translate"
[dateFormat]="'i18n.common.dateformat.shortdate-p-calendar' | translate"
[locale]="'i18n.common.dateformat.calendar' | translate"
></p-calendar>
</div>
Run Code Online (Sandbox Code Playgroud)
CSS
p-calendar.calendar-control {
opacity: 1;
color: black;
background: #eeeeee;
}
Run Code Online (Sandbox Code Playgroud)
期待输入。
谢谢