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

@ -92,14 +92,7 @@ button {
}
.cardBox-mobile {
margin: 1px;
}
@media all and (min-width: 600px) {
.cardBox-mobile {
margin: 2px;
}
margin: 2px;
}
.card:focus {
@ -156,14 +149,6 @@ button {
height: 100%;
}
@media all and (min-width: 600px) {
.cardImageContainer {
/* Should be 0 with visualCardBox, but not really noticeable */
border-radius: 1px;
}
}
.chapterCardImageContainer {
background-color: #000;
border-radius: 0;
@ -411,17 +396,17 @@ button {
}
.overflowPortraitCard-scalable {
width: 40%;
width: 42%;
max-width: 200px;
}
.overflowBackdropCard-scalable {
width: 70%;
width: 72%;
max-width: 400px;
}
.overflowSquareCard-scalable {
width: 40%;
width: 42%;
max-width: 200px;
}

View file

@ -149,7 +149,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo
if (screenWidth >= 540) {
return 100 / 30;
}
return 100 / 40;
return 100 / 42;
case 'overflowSquare':
if (screenWidth >= 1000) {
return 100 / 22;
@ -157,7 +157,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo
if (screenWidth >= 540) {
return 100 / 30;
}
return 100 / 40;
return 100 / 42;
case 'overflowBackdrop':
if (screenWidth >= 1000) {
return 100 / 40;
@ -168,7 +168,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo
if (screenWidth >= 540) {
return 100 / 64;
}
return 100 / 70;
return 100 / 72;
default:
return 4;
}