intl-tel-input 18.3.3 → 18.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/build/css/intlTelInput.css +10 -5
- package/build/css/intlTelInput.min.css +1 -1
- package/build/js/data.js +2 -2
- package/build/js/data.min.js +2 -2
- package/build/js/intlTelInput-jquery.js +5 -5
- package/build/js/intlTelInput-jquery.min.js +3 -3
- package/build/js/intlTelInput.js +5 -5
- package/build/js/intlTelInput.min.js +3 -3
- package/build/js/utils.js +1 -1
- package/composer.json +1 -1
- package/package.json +1 -1
- package/src/css/intlTelInput.scss +11 -5
- package/src/js/data.js +177 -177
- package/src/js/intlTelInput.js +8 -6
- package/src/js/utils.js +2 -0
|
@@ -287,15 +287,21 @@ $mobilePopupMargin: 30px !default;
|
|
|
287
287
|
// overrides for mobile popup (note: .iti-fullscreen-popup class is applied on body)
|
|
288
288
|
.iti-fullscreen-popup .iti {
|
|
289
289
|
&--container {
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
290
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
291
|
+
top: 0;
|
|
292
|
+
bottom: 0;
|
|
293
|
+
left: 0;
|
|
294
|
+
right: 0;
|
|
294
295
|
position: fixed;
|
|
296
|
+
padding: $mobilePopupMargin;
|
|
297
|
+
// short country lists should be vertically centered
|
|
298
|
+
display: flex;
|
|
299
|
+
flex-direction: column;
|
|
300
|
+
justify-content: center;
|
|
295
301
|
}
|
|
296
302
|
&__country-list {
|
|
297
303
|
max-height: 100%;
|
|
298
|
-
|
|
304
|
+
position: relative; // override needed in order to get full-width working properly
|
|
299
305
|
}
|
|
300
306
|
&__country {
|
|
301
307
|
padding: 10px 10px;
|