MOBILE-2795 ux: Fix adding on core-button-select

main
Pau Ferrer Ocaña 2018-12-21 16:59:38 +01:00
parent c457b6ea01
commit bd937fc052
2 changed files with 6 additions and 3 deletions

View File

@ -229,7 +229,7 @@ export class AddonMessagesDiscussionPage implements OnDestroy {
this.conversationImage = member.profileimageurl;
this.title = member.fullname;
}
this.blockIcon = this.otherMember && this.otherMember.isblocked ? 'close-circle' : 'checkmark-circle';
this.blockIcon = this.otherMember && this.otherMember.isblocked ? 'checkmark-circle' : 'close-circle';
this.addRemoveIcon = this.otherMember && this.otherMember.iscontact ? 'remove' : 'add';
}));
} else {

View File

@ -900,10 +900,13 @@ body.keyboard-is-open {
}
}
.safe-padding-horizontal,
.safe-padding-horizontal{
@include safe-area-padding-horizontal(0px, 0px);
}
[padding].safe-padding-horizontal,
ion-app.ios [padding].safe-padding-horizontal {
@include safe-area-padding-horizontal(0px, 0px);
@include safe-area-padding-horizontal($content-padding, $content-padding);
}
ion-app.ios .split-pane-side,