MOBILE-2795 ux: Fix adding on core-button-select
parent
c457b6ea01
commit
bd937fc052
|
@ -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 {
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue