1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-19 21:46:50 -04:00

New: Project Aphrodite

This commit is contained in:
Qstick
2018-11-23 02:04:42 -05:00
parent 65efa15551
commit 8430cb40ab
1080 changed files with 73015 additions and 0 deletions
+92
View File
@@ -0,0 +1,92 @@
.modalContainer {
position: absolute;
top: 0;
z-index: 1000;
width: 100%;
height: 100%;
}
.modalBackdrop {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
background-color: $modalBackdropBackgroundColor;
opacity: 1;
}
.modal {
position: relative;
display: flex;
max-height: 90%;
border-radius: 6px;
opacity: 1;
}
.modalOpen {
/* Prevent the body from scrolling when the modal is open */
overflow: hidden !important;
}
/*
* Sizes
*/
.small {
composes: modal;
width: 480px;
}
.medium {
composes: modal;
width: 720px;
}
.large {
composes: modal;
width: 1080px;
}
.extraLarge {
composes: modal;
width: 1280px;
}
@media only screen and (max-width: $breakpointExtraLarge) {
.modal.extraLarge {
width: 90%;
}
}
@media only screen and (max-width: $breakpointLarge) {
.modal.large {
width: 90%;
}
}
@media only screen and (max-width: $breakpointMedium) {
.modal.small,
.modal.medium {
width: 90%;
}
}
@media only screen and (max-width: $breakpointSmall) {
.modalContainer {
position: fixed;
}
.modal.small,
.modal.medium,
.modal.large,
.modal.extraLarge {
max-height: 100%;
width: 100%;
height: 100% !important;
}
}