bitque/jirs-client/js/css/styledModal.css

150 lines
3.3 KiB
CSS
Raw Normal View History

2020-04-01 10:36:05 +02:00
.modal {
z-index: var(--modal);
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.modal > .clickableOverlay {
min-height: 100%;
background: rgba(9, 30, 66, 0.54);
}
2020-04-01 10:36:05 +02:00
.modal > .clickableOverlay.center {
display: flex;
justify-content: center;
align-items: center;
padding: 50px;
}
@media (max-width: 1100px) {
.modal {
z-index: var(--modal);
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.modal > .clickableOverlay {
min-height: 100%;
background: rgba(9, 30, 66, 0.54);
}
.modal > .clickableOverlay.center {
display: block;
padding: 0;
}
}
.modal > .clickableOverlay {
min-height: 100%;
background: rgba(9, 30, 66, 0.54);
}
2020-04-01 10:36:05 +02:00
.modal > .clickableOverlay > .styledModal {
display: inline-block;
position: relative;
width: 100%;
background: #fff;
}
.modal > .clickableOverlay > .styledModal.center {
vertical-align: middle;
border-radius: 3px;
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.modal > .clickableOverlay > .styledModal.aside {
min-height: 100vh;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
}
.modal > .clickableOverlay > .styledModal.aside > .styledIcon {
position: absolute;
font-size: 25px;
color: var(--textMedium);
transition: all 0.1s;
cursor: pointer;
user-select: none;
}
.modal > .clickableOverlay > .styledModal.aside > .styledIcon.modalVariantCenter {
top: 10px;
right: 12px;
padding: 3px 5px 0 5px;
border-radius: 4px;
}
.modal > .clickableOverlay > .styledModal.aside > .styledIcon.modalVariantCenter:hover {
background: var(--backgroundLight);
}
.modal > .clickableOverlay > .styledModal.aside > .styledIcon.modalVariantAside {
top: 10px;
right: -30px;
width: 50px;
height: 50px;
padding-top: 10px;
border-radius: 3px;
text-align: center;
background: #fff;
border: 1px solid var(--borderLightest);
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.modal > .clickableOverlay > .styledModal.aside > .styledIcon.modalVariantAside:hover {
color: var(--primary);
}
2020-04-03 16:15:56 +02:00
.modal > .clickableOverlay > .styledModal.addIssue {
max-width: 800px;
}
@media (max-width: 1100px) {
.modal > .clickableOverlay > .styledModal.addIssue {
max-width: none;
width: auto;
}
}
.modal > .clickableOverlay > .styledModal.confirmModal {
2020-04-03 16:15:56 +02:00
padding: 35px 40px 40px;
}
.modal > .clickableOverlay > .styledModal.confirmModal > .title {
padding-bottom: 25px;
font-family: var(--font-medium);
font-weight: normal;
font-size: 22px;
line-height: 1.5;
}
.modal > .clickableOverlay > .styledModal.confirmModal > .message {
padding-bottom: 25px;
white-space: pre-wrap;
font-size: 15px
}
.modal > .clickableOverlay > .styledModal.confirmModal > .actions {
display: flex;
padding-top: 6px;
}
.modal > .clickableOverlay > .styledModal.confirmModal > .actions > .styledButton {
margin-right: 10px;
}
2020-05-21 21:38:46 +02:00
.modal > .clickableOverlay > .styledModal.debugModal {
padding-left: 15px;
}