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

184 lines
3.0 KiB
CSS
Raw Normal View History

2015-05-14 15:45:37 +02:00
/* Modals
/* ---------------------------------------------------------- */
/* Fullscreen Modal
2015-05-14 15:45:37 +02:00
/* ---------------------------------------------------------- */
.fullscreen-modal-liquid-target {
overflow-y: auto;
height: 100vh;
2015-05-14 15:45:37 +02:00
}
.fullscreen-modal-background {
2015-05-14 15:45:37 +02:00
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 0;
2015-05-14 15:45:37 +02:00
background: rgba(0, 0, 0, 0.6);
}
.fullscreen-modal {
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) {
.fullscreen-modal {
2015-05-14 15:45:37 +02:00
padding: 10px;
}
}
/* Modifiers
/* ---------------------------------------------------------- */
.fullscreen-modal-wide {
width: 550px;
2015-05-14 15:45:37 +02:00
}
@media (max-width: 900px) {
.fullscreen-modal-wide {
width: 100%;
}
2015-05-14 15:45:37 +02:00
}
.fullscreen-modal-action {
2015-05-14 15:45:37 +02:00
padding: 60px 0 30px;
}
@media (max-width: 900px) {
.fullscreen-modal-action {
2015-05-14 15:45:37 +02:00
padding: 30px 0;
}
}
/* The modal
/* ---------------------------------------------------------- */
.fullscreen-modal .gh-image-uploader {
margin: 0;
}
2015-05-14 15:45:37 +02:00
/* 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;
color: #808284;
2015-05-24 22:03:55 +02:00
}
.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;
min-width: 100px;
2015-06-03 16:44:12 +02:00
text-align: center;
2015-05-14 15:45:37 +02:00
}
.modal-footer button:first-of-type {
margin-left: 0;
}
2015-05-14 15:45:37 +02:00
/* Content Modifiers
2015-05-14 15:45:37 +02:00
/* ---------------------------------------------------------- */
/* 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;
}
}