Ghost-Admin/app/styles/components/modals.css

232 lines
3.8 KiB
CSS
Raw Normal View History

2015-05-14 15:45:37 +02:00
/* Modals
/* ---------------------------------------------------------- */
/* Full screen container
/* ---------------------------------------------------------- */
.modal-container {
position: fixed;
top: 0;
2015-05-16 13:43:12 +02:00
right: 0;
2015-05-14 15:45:37 +02:00
bottom: 0;
left: 0;
z-index: 1040;
2015-05-16 13:43:12 +02:00
display: none;
2015-05-14 15:45:37 +02:00
overflow-x: auto;
overflow-y: scroll;
2015-05-16 13:43:12 +02:00
padding-right: 10px;
padding-left: 10px;
2015-05-14 15:45:37 +02:00
transition: all 0.15s linear 0s;
transform: translateZ(0);
}
.modal-background {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1030;
2015-05-16 13:43:12 +02:00
display: none;
2015-05-14 15:45:37 +02:00
background: rgba(0, 0, 0, 0.6);
}
/* The modal
/* ---------------------------------------------------------- */
.modal,
.modal-action {
right: auto;
2015-05-16 13:43:12 +02:00
left: 50%;
2015-05-14 15:45:37 +02:00
z-index: 1050;
margin-right: auto;
2015-05-16 13:43:12 +02:00
margin-left: auto;
2015-05-14 15:45:37 +02:00
padding-top: 30px;
padding-bottom: 30px;
2015-05-16 13:43:12 +02:00
max-width: 550px;
width: 100%;
2015-05-14 15:45:37 +02:00
pointer-events: auto;
}
@media (max-width: 900px) {
.modal,
.modal-action {
padding: 10px;
}
}
.modal button,
.modal-action button {
min-width: 100px;
}
.modal .image-uploader,
.modal .pre-image-uploader,
.modal-action .image-uploader,
.modal-action .pre-image-uploader {
margin: 0;
}
.modal-action {
padding: 60px 0 30px;
}
@media (max-width: 900px) {
.modal-action {
padding: 30px 0;
}
}
/* Modal content
/* ---------------------------------------------------------- */
.modal-content {
position: relative;
padding: 18px;
background-color: #fff;
2015-05-16 13:43:12 +02:00
background-clip: padding-box;
2015-05-14 15:45:37 +02:00
border-radius: var(--border-radius);
box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 6px;
}
2015-05-14 22:30:25 +02:00
.modal-content * {
user-select: text;
}
2015-05-14 15:45:37 +02:00
.modal-content .close {
position: absolute;
top: 19px;
right: 19px;
z-index: 9999;
margin: 0;
2015-05-16 13:43:12 +02:00
padding: 0;
width: 16px;
2015-05-14 15:45:37 +02:00
border: none;
2015-05-24 22:03:55 +02:00
color: #828282;
}
.modal-content .close:hover {
color: var(--darkgrey);
2015-05-14 15:45:37 +02:00
}
.modal-header {
position: relative;
margin-bottom: 18px;
}
.modal-header h1 {
display: inline-block;
margin: 0 25px 0 0;
font-size: 1.85em;
font-weight: 100;
}
.modal-body {
position: relative;
overflow-y: auto;
}
.modal-body .red {
color: var(--red);
}
.modal-body > *:first-child {
margin-top: 0;
}
.modal-body > *:last-child {
margin-bottom: 0;
}
.modal-footer {
2015-06-03 16:44:12 +02:00
display: flex;
justify-content: flex-end;
2015-05-14 15:45:37 +02:00
margin-top: 20px;
}
.modal-footer button {
margin-left: 8px;
2015-06-03 16:44:12 +02:00
text-align: center;
2015-05-14 15:45:37 +02:00
}
/* Modifiers
/* ---------------------------------------------------------- */
.modal-style-wide {
width: 550px;
}
@media (max-width: 900px) {
.modal-style-wide {
width: 100%;
}
}
.modal-style-centered {
text-align: center;
}
/* Login styles */
.modal-body .login-form {
display: block;
}
.modal-body .login-form .password-wrap input {
width: 100%;
}
@media (max-width: 900px) {
.modal-body .login-form {
margin: 0 auto;
max-width: 264px;
}
.modal-body .login-form .password-wrap {
margin: 0 auto 1em;
2015-05-16 13:43:12 +02:00
width: 100%;
2015-05-14 15:45:37 +02:00
}
.modal-body .login-form .btn {
margin: 0;
margin-bottom: 1em;
2015-05-16 13:43:12 +02:00
width: 100%;
2015-05-14 15:45:37 +02:00
}
}
@media (min-width: 901px) {
.modal-body .login-form {
display: flex;
}
.modal-body .login-form .password-wrap {
flex: 1;
}
}
/* Open States
/* ---------------------------------------------------------- */
.modal-container.open,
.modal-container.open > .modal,
.modal-container.open > .modal-action {
display: block;
}
.modal-background.open {
display: block;
}
/* Animations
/* ---------------------------------------------------------- */
.modal-container.fade-out {
animation-duration: 0.08s;
}
.modal-background.fade-out {
animation-duration: 0.15s;
}