4b61f23bd0
No ref
279 lines
5.6 KiB
CSS
279 lines
5.6 KiB
CSS
/* TODO: remove .epm-modal once original modals.css is removed */
|
|
.epm-modal.fullscreen-modal-email-preview {
|
|
margin: 24px;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.fullscreen-modal-email-preview .modal-content {
|
|
position: relative;
|
|
height: 100%;
|
|
padding: 0;
|
|
}
|
|
|
|
.fullscreen-modal-email-preview .modal-body {
|
|
margin: 0;
|
|
}
|
|
|
|
.gh-pe-header {
|
|
position: sticky;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
min-height: 70px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0;
|
|
padding: 18px 32px;
|
|
border-top-left-radius: 6px;
|
|
border-top-right-radius: 6px;
|
|
overflow: hidden;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background: var(--white);
|
|
z-index: 9999;
|
|
}
|
|
|
|
.gh-pe-header h2 {
|
|
margin: 0;
|
|
margin-right: auto;
|
|
position: absolute;
|
|
left: 24px;
|
|
}
|
|
|
|
.gh-pe-header .gh-btn-group {
|
|
flex: 1;
|
|
}
|
|
|
|
.gh-pe-header-border {
|
|
border-bottom: 1px solid var(--whitegrey);
|
|
}
|
|
|
|
/* .gh-pe-close {
|
|
margin-left: auto;
|
|
flex: 1;
|
|
} */
|
|
|
|
.modal-content .gh-pe-close button {
|
|
stroke: var(--midgrey);
|
|
opacity: 0.6;
|
|
transition: all 0.2s ease-in-out;
|
|
top: 25px;
|
|
}
|
|
|
|
.gh-pe-close button:hover {
|
|
opacity: 1.0;
|
|
}
|
|
|
|
.gh-pe-btn-group button {
|
|
width: 100px;
|
|
}
|
|
|
|
.gh-pe-btn-group button span {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.gh-pe-btn-group button:first-of-type span {
|
|
border-right: none;
|
|
}
|
|
|
|
.gh-pe-btn-group button:last-of-type span {
|
|
border-left: none;
|
|
}
|
|
|
|
.fullscreen-modal-email-preview .gh-pe-desktop-container {
|
|
height: calc(100vh - 119px);
|
|
border-bottom-left-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background: var(--whitegrey-l1);
|
|
padding: 30px 30px 45px;
|
|
}
|
|
|
|
.gh-pe-desktop-container .gh-pe-emailclient-mockup {
|
|
flex-grow: 1;
|
|
overflow: hidden;
|
|
max-width: 740px;
|
|
width: 100%;
|
|
padding: 0;
|
|
background: var(--white);
|
|
box-shadow:
|
|
0 0 0 1px rgba(0,0,0,0.02),
|
|
0 2.8px 2.2px rgba(0, 0, 0, 0.02),
|
|
0 6.7px 5.3px rgba(0, 0, 0, 0.028),
|
|
0 12.5px 10px rgba(0, 0, 0, 0.035),
|
|
0 22.3px 17.9px rgba(0, 0, 0, 0.042),
|
|
0 41.8px 33.4px rgba(0, 0, 0, 0.05),
|
|
0 100px 80px rgba(0, 0, 0, 0.07);
|
|
;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.gh-pe-desktop-container iframe {
|
|
border: none;
|
|
width: 100%;
|
|
height: calc(100% - 67px);
|
|
}
|
|
|
|
.gh-pe-emailclient-sender {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
height: 88px;
|
|
border-bottom: 1px solid var(--whitegrey);
|
|
margin: 0;
|
|
padding: 0 20px;
|
|
background: var(--whitegrey-l2);
|
|
}
|
|
|
|
.gh-pe-emailclient-sender p {
|
|
padding: 0;
|
|
margin: 0;
|
|
color: var(--midgrey-l1);
|
|
font-weight: 500;
|
|
line-height: 1.8em;
|
|
}
|
|
|
|
.gh-email-preview-newsletter-select p.gh-preview-newsletter-name {
|
|
color: var(--darkgrey);
|
|
font-weight: 600;
|
|
}
|
|
|
|
p .gh-preview-email-address {
|
|
color: var(--midlightgrey);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.gh-preview-email-subject {
|
|
display: flex;
|
|
align-items: center;
|
|
color: var(--darkgrey);
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.gh-preview-email-subject:focus-visible {
|
|
outline: 2px solid #0360CC;
|
|
}
|
|
|
|
.gh-preview-email-subject:hover svg,
|
|
.gh-preview-email-subject:focus-visible svg {
|
|
opacity: 1;
|
|
}
|
|
|
|
.gh-preview-email-subject svg {
|
|
flex-shrink: 0;
|
|
width: 16px;
|
|
height: auto;
|
|
margin-left: 4px;
|
|
padding: 2px;
|
|
opacity: 0;
|
|
transition: opacity .06s ease;
|
|
}
|
|
|
|
.gh-preview-email-subject svg path {
|
|
stroke-width: 2px;
|
|
}
|
|
|
|
.gh-preview-email-subject-input {
|
|
height: 25px;
|
|
border: 0;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
padding: 0;
|
|
font-size: 1.4rem;
|
|
font-weight: 600;
|
|
line-height: 1.8em;
|
|
}
|
|
|
|
.gh-preview-email-subject-input:focus {
|
|
background: transparent;
|
|
box-shadow: inset 0 -1px 0 var(--lightgrey-l1);
|
|
}
|
|
|
|
.gh-email-subject {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.gh-pe-emailclient-sender span.strong {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.fullscreen-modal-total-overlay .gh-pe-mobile-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
align-items: center;
|
|
background: var(--white);
|
|
padding: 8vmin 30px 30px;
|
|
height: calc(100vh - 119px);
|
|
border-bottom-left-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
}
|
|
|
|
.gh-pe-mobile-bezel {
|
|
width: 320px;
|
|
height: 657px;
|
|
border-radius: 40px;
|
|
display: flex;
|
|
background: var(--whitegrey-l2);
|
|
box-shadow:
|
|
0 0 0 1px rgba(0,0,0,0.02),
|
|
0 2.8px 2.2px rgba(0, 0, 0, 0.02),
|
|
0 6.7px 5.3px rgba(0, 0, 0, 0.028),
|
|
0 12.5px 10px rgba(0, 0, 0, 0.035),
|
|
0 22.3px 17.9px rgba(0, 0, 0, 0.042),
|
|
0 41.8px 33.4px rgba(0, 0, 0, 0.05),
|
|
0 100px 80px rgba(0, 0, 0, 0.07);
|
|
;
|
|
}
|
|
|
|
.gh-pe-mobile-screen {
|
|
width: 100%;
|
|
margin: 14px;
|
|
border: 1px solid var(--whitegrey-l1);
|
|
background: var(--white);
|
|
border-radius: 28px;
|
|
flex-grow: 1;
|
|
overflow: hidden;
|
|
-webkit-mask-image: -webkit-radial-gradient(white, black);
|
|
}
|
|
|
|
.gh-pe-mobile-container .gh-pe-iframe {
|
|
padding: 0;
|
|
transform: scale(0.8);
|
|
transform-origin: 0 0;
|
|
overflow-x: hidden;
|
|
width: 361px;
|
|
height: 706px;
|
|
}
|
|
|
|
.gh-pe-mobile-container .gh-pe-iframe .left-col {
|
|
display: none;
|
|
}
|
|
|
|
.gh-pe-mobile-container .gh-pe-emailclient-sender {
|
|
height: 66px;
|
|
padding: 6px 12px 0;
|
|
}
|
|
|
|
.gh-pe-mobile-container .gh-pe-emailclient-sender p {
|
|
font-size: 1.1rem;
|
|
line-height: 1.6em;
|
|
}
|
|
|
|
@media (max-width: 850px) {
|
|
.gh-pe-header {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.gh-pe-header h2 {
|
|
display: none
|
|
}
|
|
}
|