Update jquery.ime from upstream

Version: 0.1.0+20130607

Changes:
* Bug 49178: IME icon not visible in IE8
* Bug 49073 - In RTL, checkmark for selected input method overlaps text in ime menu
* Correct Malayalam Avagraha in Malayalam transliteration

Change-Id: Ib3fc2409958e8be8522a2f4072181dce434a76e3
This commit is contained in:
Santhosh Thottingal
2013-06-07 12:48:40 +05:30
parent 271ec67a80
commit d10b5c86fc
6 changed files with 160 additions and 152 deletions

View File

@@ -1,10 +1,12 @@
.imeselector {
position: absolute;
/* Fix rgba fallback bug - http://css-tricks.com/ie-background-rgb-bug */
/* @embed */
background: url('../images/ime-active.png') no-repeat left 3px center #fff;
/* @embed */
background: url('../images/ime-active.png') no-repeat left 3px center rgba(255,255,255,0.75);
background: url('../images/ime-active.png') no-repeat left center;
background-image: -webkit-linear-gradient(transparent, transparent), url('../images/ime-active.svg');
background-image: -moz-linear-gradient(transparent, transparent), url('../images/ime-active.svg');
background-image: linear-gradient(transparent, transparent), url('../images/ime-active.svg');
background-color: #fff;
background-position: 3px;
cursor: pointer;
height: 15px;
font-size: small;
@@ -169,7 +171,10 @@ span.ime-disable-shortcut {
.imeselector-menu .checked {
/* @embed */
background: url(../images/tick.png) 4px center no-repeat;
background: url(../images/tick.png) left 4px center no-repeat;
background-image: -webkit-linear-gradient(transparent, transparent), url('../images/tick.svg');
background-image: -moz-linear-gradient(transparent, transparent), url('../images/tick.svg');
background-image: linear-gradient(transparent, transparent), url('../images/tick.svg');
}
.imeselector-menu .ime-help-link {