update recording dialogs

This commit is contained in:
Luke Pulverenti 2016-10-14 12:22:04 -04:00
parent fbc040dc9c
commit 90d30a0229
73 changed files with 1986 additions and 713 deletions

View file

@ -9,11 +9,13 @@
}
.actionsheet-not-fullscreen {
background-color: #2a2a2a;
background-color: #121314;
max-width: 90%;
max-height: 90%;
}
.actionSheetMenuItem:hover {
background-color: #333;
background-color: #222;
}
.actionsheet-fullscreen {
@ -35,6 +37,7 @@
flex-grow: 1;
align-items: center;
text-align: center;
overflow: hidden;
}
.actionSheetMenuItem {
@ -63,7 +66,7 @@
}
.actionSheetItemText-extraspacing {
padding: .8em 0;
padding: .9em 0;
}
.emby-button-noflex .actionSheetItemText {

View file

@ -97,9 +97,7 @@
var dialogOptions = {
removeOnClose: true,
enableHistory: options.enableHistory,
scrollY: false,
entryAnimation: options.entryAnimation,
exitAnimation: options.exitAnimation
scrollY: false
};
var backButton = false;
@ -113,7 +111,7 @@
} else {
dialogOptions.modal = false;
dialogOptions.entryAnimationDuration = options.entryAnimationDuration || 140;
dialogOptions.entryAnimationDuration = options.entryAnimationDuration || 160;
dialogOptions.exitAnimationDuration = options.exitAnimationDuration || 180;
dialogOptions.autoFocus = false;
}