DatetimePicker not picking up theme text color in dark mode #321
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
@nzbin please help if you can |
Beta Was this translation helpful? Give feedback.
-
👇 Very important $light-theme: mat.private-deep-merge-all(
mat.define-theme($light-config),
mtx.define-theme($light-config)
); extensions/projects/docs/src/styles.scss Lines 10 to 27 in 43fae8e |
Beta Was this translation helpful? Give feedback.
-
Hi, I think I'm facing the same problem like as mentioned above. The datetime picker becomes transparent. Currently I'm implementing datetime picker on angular 14 project & using angular material 14. I have imported <mat-form-field
class="form"
appearance="outline"
*ngIf="selectedTimeFilter(i) !== 'between'"
>
<mat-label>{{ t('filterMenu.selectDateTime') }}</mat-label>
<input
matInput
[mtxDatetimepicker]="picker_i"
placeholder="{{ t('filterMenu.selectDateTime') }}"
[formControlName]="'dateTime'"
/>
<mtx-datetimepicker
#picker_i
[type]="'datetime'"
[mode]="'auto'"
[multiYearSelector]="false"
[startView]="'month'"
[twelvehour]="false"
[touchUi]="false"
[timeInput]="true"
></mtx-datetimepicker>
<mtx-datetimepicker-toggle
[for]="$any(picker_i)"
matSuffix
></mtx-datetimepicker-toggle>
</mat-form-field> Is there any solution for this issue? Thanks in advance. |
Beta Was this translation helpful? Give feedback.
👇 Very important
extensions/projects/docs/src/styles.scss
Lines 10 to 27 in 43fae8e