diff --git a/lib/jquery.ime/css/jquery.ime.css b/lib/jquery.ime/css/jquery.ime.css index 2a90bb6f..6d7e5bff 100644 --- a/lib/jquery.ime/css/jquery.ime.css +++ b/lib/jquery.ime/css/jquery.ime.css @@ -21,7 +21,7 @@ .imeselector:hover { box-shadow: 0 1px 3px 0 #565656; - border-top: none; + border-top: 0; background-color: rgba( 255, 255, 255, 0.85 ); } @@ -29,7 +29,7 @@ .ime-disable { cursor: pointer; text-decoration: none; - outline: none; + outline: 0; color: #222; line-height: 1em; padding-top: 4px; @@ -192,7 +192,7 @@ span.ime-disable-shortcut { padding-left: 20px; padding-right: 20px; font-weight: normal; - outline: none; + outline: 0; white-space: nowrap; position: relative; } diff --git a/lib/jquery.ime/jquery.ime.js b/lib/jquery.ime/jquery.ime.js index 55809b3c..739f30d2 100644 --- a/lib/jquery.ime/jquery.ime.js +++ b/lib/jquery.ime/jquery.ime.js @@ -1,4 +1,4 @@ -/*! jquery.ime - v0.2.0+20220208 +/*! jquery.ime - v0.2.0+20220214 * https://github.com/wikimedia/jquery.ime * Copyright (c) 2022 Santhosh Thottingal; License: (GPL-2.0-or-later OR MIT) */ ( function ( $ ) { @@ -2196,6 +2196,10 @@ name: 'अक्षरांतरण', source: 'rules/mr/mr-transliteration.js' }, + 'mul-bf': { + name: 'Burkina Faso tilde keyboard', + source: 'rules/mul-bf/mul-bf.js' + }, 'mul-cm': { name: 'General Alphabet of Cameroon Languages tilde keyboard', source: 'rules/mul-cm/mul-cm.js' @@ -2892,6 +2896,10 @@ autonym: 'ဘာသာ မန်', inputmethods: [ 'mnw-simplified-anonta' ] }, + mos: { + autonym: 'moore', + inputmethods: [ 'mul-bf' ] + }, mr: { autonym: 'मराठी', inputmethods: [ 'mr-transliteration', 'mr-inscript2', 'mr-inscript', 'mr-phonetic' ] diff --git a/lib/jquery.ime/rules/mul-bf/mul-bf.js b/lib/jquery.ime/rules/mul-bf/mul-bf.js new file mode 100644 index 00000000..12f84262 --- /dev/null +++ b/lib/jquery.ime/rules/mul-bf/mul-bf.js @@ -0,0 +1,48 @@ +( function ( $ ) { + 'use strict'; + + var mulBf = { + id: 'mul-bf', + name: 'mul-bf', + description: 'Burkina Faso tilde keyboard', + date: '2022-02-14', + URL: 'https://github.com/wikimedia/jquery.ime', + author: 'Amir E. Aharoni', + license: 'GPLv3', + version: '1.0', + maxKeyLength: 2, + patterns: [ + [ '~B', 'Ɓ' ], + [ '~b', 'ɓ' ], + [ '~C', 'Ç' ], + [ '~c', 'ç' ], + [ '~D', 'Ɗ' ], + [ '~d', 'ɗ' ], + [ '~A', 'Ǝ' ], + [ '~a', 'ǝ' ], + [ '~E', 'Ɛ' ], + [ '~e', 'ɛ' ], + [ '~I', 'Ɩ' ], + [ '~i', 'ɩ' ], + [ '~N', 'Ŋ' ], + [ '~n', 'ŋ' ], + [ '~O', 'Ɔ' ], + [ '~o', 'ɔ' ], + [ '~U', 'Ʋ' ], + [ '~u', 'ʋ' ], + [ '~W', 'Ⱳ' ], + [ '~w', 'ⱳ' ], + [ '~Y', 'Ƴ' ], + [ '~y', 'ƴ' ], + [ '~\\\\', '\u0300' ], // Combining grave accent + [ '~/', '\u0301' ], // Combining acute accent + [ '~\\^', '\u0302' ], // Combining circumflex accent + [ '~\\{', '\u0303' ], // Combining tilde + [ '~-', '\u0304' ], // Combining macron + [ '~:', '\u0308' ], // Combining diaeresis + [ '~v', '\u030C' ] // Combining caron + ] + }; + + $.ime.register( mulBf ); +}( jQuery ) );