Fixed countries modal scroll
This commit is contained in:
parent
5880113b70
commit
e6260ac107
@ -788,6 +788,9 @@ a.tg_radio_on:hover i.icon-radio {
|
||||
.login_phone_number {
|
||||
width: 198px;
|
||||
}
|
||||
.login_phone_code {
|
||||
text-align: center;
|
||||
}
|
||||
.login_first_name_wrap {
|
||||
margin-bottom: 11px;
|
||||
}
|
||||
|
@ -59,7 +59,7 @@ angular.module('myApp.controllers', [])
|
||||
function initPhoneCountry () {
|
||||
var langCode = (navigator.language || '').toLowerCase(),
|
||||
countryIso2 = Config.LangCountries[langCode],
|
||||
shouldPregenerate = !Config.Mobile;
|
||||
shouldPregenerate = !Config.Navigator.mobile;
|
||||
|
||||
if (['en', 'en-us', 'en-uk'].indexOf(langCode) == -1) {
|
||||
if (countryIso2 !== undefined) {
|
||||
|
@ -52,7 +52,7 @@
|
||||
|
||||
<div class="form-group" ng-class="{'has-error': error.field == 'phone_code'}">
|
||||
<label class="control-label" for="phone_code" ng-if="error.field == 'phone_code'">Incorrect SMS code</label>
|
||||
<input type="number" my-focused class="form-control" name="phone_code" ng-model="credentials.phone_code" placeholder="Enter your code" autocomplete="off" required>
|
||||
<input type="number" my-focused class="form-control login_phone_code" name="phone_code" ng-model="credentials.phone_code" placeholder="Enter your code" autocomplete="off" required>
|
||||
</div>
|
||||
|
||||
<button class="btn btn-primary btn-block" type="submit" ng-class="{disabled: progress.enabled}" ng-disabled="progress.enabled" ng-switch="progress.enabled">
|
||||
|
@ -30,7 +30,7 @@
|
||||
<a class="countries_modal_search_clear" ng-click="search.query = ''" ng-show="search.query.length"></a>
|
||||
</div>
|
||||
|
||||
<div class="countries_modal_col countries_wrap countries_scrollable_wrap" my-countries-list-mobile my-infinite-scroller-mobile>
|
||||
<div class="countries_modal_col countries_wrap countries_scrollable_wrap mobile_scrollable_wrap" my-countries-list-mobile my-infinite-scroller-mobile>
|
||||
<ul class="countries_modal_members_list nav nav-pills nav-stacked">
|
||||
|
||||
<li class="countries_modal_country_wrap clearfix" ng-repeat="country in countries | limitTo : slice.limit track by $index">
|
||||
|
@ -52,7 +52,7 @@
|
||||
|
||||
<div class="form-group" ng-class="{'has-error': error.field == 'phone_code'}">
|
||||
<label class="control-label" for="phone_code" ng-if="error.field == 'phone_code'">Incorrect SMS code</label>
|
||||
<input type="number" my-focused class="form-control" name="phone_code" ng-model="credentials.phone_code" placeholder="Enter your code" autocomplete="off" required>
|
||||
<input type="number" my-focused class="form-control login_phone_code" name="phone_code" ng-model="credentials.phone_code" placeholder="Enter your code" autocomplete="off" required>
|
||||
</div>
|
||||
|
||||
<button class="btn btn-primary btn-block" type="submit" ng-class="{disabled: progress.enabled}" ng-disabled="progress.enabled" ng-switch="progress.enabled">
|
||||
|
Loading…
Reference in New Issue
Block a user