MOBILE-1973 quiz: Make the navigation modal lateral
parent
d129c23d54
commit
f78f3cddc7
|
@ -94,7 +94,7 @@ export class AddonModQuizPlayerPage implements OnInit, OnDestroy {
|
|||
// Create the navigation modal.
|
||||
this.navigationModal = modalCtrl.create('AddonModQuizNavigationModalPage', {
|
||||
page: this
|
||||
});
|
||||
}, { cssClass: 'core-modal-lateral' });
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -721,14 +721,23 @@ ion-app.app-root {
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.core-modal-fullscreen {
|
||||
.modal-wrapper {
|
||||
.core-modal-fullscreen .modal-wrapper {
|
||||
position: absolute;
|
||||
@include position(0 !important, null, null, 0 !important);
|
||||
display: block;
|
||||
width: 100% !important;
|
||||
height: 100% !important;
|
||||
}
|
||||
|
||||
@media only screen and (min-height: 600px) and (min-width: 768px) {
|
||||
.core-modal-lateral .modal-wrapper {
|
||||
position: absolute;
|
||||
@include position(0 !important, 0 !important, 0 !important, auto);
|
||||
display: block;
|
||||
height: 100% !important;
|
||||
width: auto;
|
||||
min-width: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
.has-fab .scroll-content{
|
||||
|
|
Loading…
Reference in New Issue