Skip to content

Commit fa5e7c1

Browse files
Maciej Mrozińskiscottgonzalez
Maciej Mroziński
authored andcommitted
Datepicker: Deleted z-index style on hidden input. Fixed #7449 - Datepicker dialog has a negative z-index.
(cherry picked from commit cb44dc6)
1 parent 347aa33 commit fa5e7c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/jquery.ui.datepicker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ $.extend(Datepicker.prototype, {
308308
this.uuid += 1;
309309
var id = 'dp' + this.uuid;
310310
this._dialogInput = $('<input type="text" id="' + id +
311-
'" style="position: absolute; top: -100px; width: 0px; z-index: -10;"/>');
311+
'" style="position: absolute; top: -100px; width: 0px;"/>');
312312
this._dialogInput.keydown(this._doKeyDown);
313313
$('body').append(this._dialogInput);
314314
inst = this._dialogInst = this._newInst(this._dialogInput, false);

0 commit comments

Comments
 (0)