Fix Bug 39096 - Narayam compatibility with ULS
* Correct the event propagation * Narayam blue background prevents the autocomplete visible. Overriding background color with transparent, but that does not look good. May be we should consider this while designing jquery.ime Change-Id: If8ea8c1f074cc20b743805953a3bd68da62cb55b
This commit is contained in:
@@ -154,7 +154,7 @@ input#languagefilter {
|
|||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
|
||||||
color: #333;
|
color: #333;
|
||||||
display: block;
|
display: block;
|
||||||
background-color: transparent;
|
background-color: transparent !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
input:focus#languagefilter {
|
input:focus#languagefilter {
|
||||||
|
|||||||
@@ -264,8 +264,8 @@
|
|||||||
if ( e.keyCode === 27 ) { // escape
|
if ( e.keyCode === 27 ) { // escape
|
||||||
this.hide();
|
this.hide();
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
}
|
}
|
||||||
e.stopPropagation();
|
|
||||||
},
|
},
|
||||||
|
|
||||||
keypress: function( e ) {
|
keypress: function( e ) {
|
||||||
@@ -275,8 +275,8 @@
|
|||||||
if ( e.keyCode === 27 ) { // escape
|
if ( e.keyCode === 27 ) { // escape
|
||||||
this.hide();
|
this.hide();
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
}
|
}
|
||||||
e.stopPropagation();
|
|
||||||
},
|
},
|
||||||
|
|
||||||
click: function( e ) {
|
click: function( e ) {
|
||||||
|
|||||||
Reference in New Issue
Block a user