Updates from jquery.ime

- Added Duala Tilde keyboard (Phab:T372173)
- Added Silesian Tilde keyboard (Phab:T372652)
- Removed proprietary vendor fallback (Phab:T306486)

Change-Id: Ic88146516620a3eef73cea0a1c6ed13f628c98b0
This commit is contained in:
Srishakatux
2024-08-29 16:49:14 -07:00
parent 101539c201
commit 150ead69a6
4 changed files with 96 additions and 15 deletions

View File

@@ -1,13 +1,10 @@
.imeselector {
position: absolute;
/* @embed */
background: url( ../images/ime-active.png ) no-repeat left center;
/* @embed */
background-image: -webkit-linear-gradient( transparent, transparent ), url( ../images/ime-active.svg );
/* @embed */
background-image: linear-gradient( transparent, transparent ), url( ../images/ime-active.svg );
background-image: url( ../images/ime-active.svg );
background-color: rgba( 255, 255, 255, 0.75 );
background-position: left 3px center;
background-repeat: no-repeat;
min-height: 15px;
font-size: small;
padding: 2px 2px 1px 20px;
@@ -85,8 +82,6 @@ span.ime-disable-shortcut {
.imeselector-menu {
background-color: #fff;
-webkit-background-clip: padding-box;
-moz-background-clip: padding-box;
background-clip: padding-box;
position: absolute;
top: 14px;
@@ -98,8 +93,6 @@ span.ime-disable-shortcut {
padding: 0;
border: 1px solid #a2a9b1;
border-radius: 2px;
-webkit-box-shadow: 0 5px 10px rgba( 0, 0, 0, 0.2 );
-moz-box-shadow: 0 5px 10px rgba( 0, 0, 0, 0.2 );
box-shadow: 0 5px 10px rgba( 0, 0, 0, 0.2 );
text-align: left;
}
@@ -164,11 +157,9 @@ span.ime-disable-shortcut {
.imeselector-menu .ime-checked {
/* @embed */
background: url( ../images/tick.png ) no-repeat left 4px center;
/* @embed */
background-image: -webkit-linear-gradient( transparent, transparent ), url( ../images/tick.svg );
/* @embed */
background-image: linear-gradient( transparent, transparent ), url( ../images/tick.svg );
background-image: url( ../images/tick.svg );
background-position: left 4px center;
background-repeat: no-repeat;
}
.imeselector-menu .ime-help-link {