Commit 085923e8 authored by Rajnish Dargan's avatar Rajnish Dargan
Browse files

Issue #SB-26730 fix: Background color of the max time and min time button is...

Issue #SB-26730 fix: Background color of the max time and min time button is not as like other fields.
Showing with 4 additions and 4 deletions
+4 -4
......@@ -3,23 +3,23 @@
<ng-container>
<div class="d-flex">
<div>
<input class="p-10 mr-20" list="hours" #hourField name="hour" maxlength="2"
<input class="sb-timer-input" list="hours" #hourField name="hour" maxlength="2"
placeholder="{{placeholders[0]}}"
(change)="onChangeTimer('hr', $event.target.value)"
(keyup)="onChangeTimer('hr', $event.target.value);"
(focusout)="onFocusOutEvent('hr', $event.target.value)"
[attr.disabled]="disabled ? true : ( depends ? (isDependsInvalid ? true : null) : null )">
[attr.disabled]="disabled ? true : null">
<datalist id="hours">
<option *ngFor="let hour of hourOptions" [value]="hour">
</datalist>
</div>
<div>
<input class="p-10 mr-20" list="minutes" #minField name="minute" maxlength="2"
<input class="sb-timer-input" list="minutes" #minField name="minute" maxlength="2"
placeholder="{{placeholders[1]}}"
(change)="onChangeTimer('min', $event.target.value)"
(keyup)="onChangeTimer('min', $event.target.value)"
(focusout)="onFocusOutEvent('min', $event.target.value)"
[attr.disabled]="disabled ? true : ( depends ? (isDependsInvalid ? true : null) : null )">
[attr.disabled]="disabled ? true : null">
<datalist id="minutes">
<ng-container>
<option *ngFor="let minute of minuteOptions" [value]="minute">{{minute}}</option>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment