Skip to content

Commit

Permalink
Merge branch 'master' into id-jawi
Browse files Browse the repository at this point in the history
  • Loading branch information
srish authored Sep 9, 2024
2 parents 1d766c5 + 76a0db2 commit 3fca50e
Show file tree
Hide file tree
Showing 30 changed files with 3,225 additions and 1,735 deletions.
6 changes: 3 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
"extends": [
"wikimedia/client",
"wikimedia/jquery",
"wikimedia/jsduck"
"wikimedia/jsdoc"
],
"globals": {
"jQuery": "readonly",
"$": "off"
},
"rules": {
"camelcase": [ "error", { "allow": [ "patterns_x", "patterns_shift" ] } ],
"comma-spacing": "off",
"indent": "off",
"max-len": "off"
"max-len": "off",
"no-var": "off"
}
}
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 17.x]
node-version: [16.x, 17.x, 18.x]

steps:
- uses: actions/checkout@v2
Expand Down
19 changes: 5 additions & 14 deletions css/jquery.ime.css
Original file line number Diff line number Diff line change
@@ -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;
Expand Down Expand Up @@ -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;
Expand All @@ -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;
}
Expand Down Expand Up @@ -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 {
Expand Down
Binary file removed images/ime-active.png
Binary file not shown.
Binary file removed images/tick.png
Binary file not shown.
Loading

0 comments on commit 3fca50e

Please sign in to comment.