Ghost/ghost/admin/app/styles/layouts/settings.css

3754 lines
72 KiB
CSS
Raw Normal View History

/* Settings menu
/* ---------------------------------------------------------- */
.gh-nav-settings-close {
margin: 26px 0;
padding: 0;
}
.gh-nav-settings-close h4 {
display: flex;
width: 100%;
align-items: center;
justify-content: space-between;
padding: 2px 28px;
font-size: 1.9rem;
}
.gh-nav-settings-close a {
display: flex;
padding: 5px 4px 2px;
width: 30px;
height: 30px;
border-radius: 999px;
margin: 0 -12px 0 0;
align-items: center;
justify-content: center;
}
.gh-nav-settings-close a:hover {
background: var(--mainmenu-color-active-bg);
}
.gh-nav-settings-close a svg {
width: 16px;
height: 16px;
margin-top: -3px;
}
.gh-nav-settings-main {
margin: 7px 0;
}
.gh-nav-settings-main .active {
background: none !important;
font-weight: 400;
color: color-mod(var(--middarkgrey) l(-10%));
}
2015-05-14 16:45:37 +03:00
/* Settings
/* ---------------------------------------------------------- */
.gh-settings-main-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
2021-10-04 13:03:41 +03:00
grid-auto-rows: minmax(72px, auto);
background: var(--white);
border-radius: .5rem;;
2021-10-04 13:03:41 +03:00
grid-gap: 24px;
margin: 24px 0 96px;
}
.gh-settings-main-grid .gh-setting-group {
display: flex;
color: var(--darkgrey);
2021-10-04 13:03:41 +03:00
min-height: 72px;
text-align: left;
}
.gh-settings-main-grid .gh-setting-group span {
display: flex;
align-items: center;
justify-content: center;
padding: 5px;
background: var(--black);
width: 48px;
height: 48px;
min-width: 48px;;
border-radius: 999px;
2021-02-11 13:45:14 +03:00
color: #fff;
2021-01-21 18:50:07 +03:00
}
2021-04-08 18:25:32 +03:00
.gh-settings-main-grid .gh-setting-group span.yellow {
2021-02-19 19:03:46 +03:00
background: var(--yellow);
}
2021-04-08 18:25:32 +03:00
.gh-settings-main-grid .gh-setting-group span.green {
2021-02-19 19:03:46 +03:00
background: var(--green);
}
2021-04-08 18:25:32 +03:00
.gh-settings-main-grid .gh-setting-group span.blue {
2021-02-19 19:03:46 +03:00
background: var(--blue);
}
2021-04-08 18:25:32 +03:00
.gh-settings-main-grid .gh-setting-group span.pink {
2021-02-19 19:03:46 +03:00
background: var(--pink);
}
.gh-settings-main-grid .gh-setting-group:hover span {
opacity: 0.9;
}
.gh-settings-main-grid .gh-setting-group svg {
width: 20px;
height: 20px;
}
2021-02-11 13:45:14 +03:00
.gh-settings-main-grid .gh-setting-group.portal svg {
width: 24px;
height: 24px;
}
.gh-settings-main-grid .gh-setting-group div {
margin-left: 14px;
flex-shrink: 1;
}
.gh-settings-main-grid .gh-setting-group h4 {
font-size: 1.5rem;
letter-spacing: 0;
font-weight: 600;
2021-02-11 13:45:14 +03:00
margin: 4px 0 2px;
}
.gh-settings-main-grid .gh-setting-group p {
color: var(--midgrey);
2021-06-11 12:20:45 +03:00
margin: 4px 0 0;
padding: 0;
2021-06-11 12:20:45 +03:00
line-height: 1.4em;
}
2015-05-14 16:45:37 +03:00
@media (max-width: 1100px) {
.gh-settings-main-grid {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 680px) {
.gh-settings-main-grid {
grid-template-columns: 1fr;
}
}
/* Setting headers */
2017-02-17 17:10:02 +03:00
.gh-setting-header {
color: var(--black);
text-transform: uppercase;
font-weight: 500;
letter-spacing: 0.03em;
font-size: 1.1rem;
padding: 8px 0;
2021-02-05 14:04:36 +03:00
border-bottom: 1px solid var(--main-color-area-divider);
2021-10-04 13:03:41 +03:00
margin: 0 0 0 1px;
}
.gh-first-header {
margin-top: 0;
2017-02-17 17:10:02 +03:00
}
.gh-setting,
.gh-setting-first,
.gh-setting-last {
2017-02-17 17:10:02 +03:00
display: flex;
justify-content: space-between;
2021-02-08 23:51:26 +03:00
padding: 18px 0;
margin: 0;
2017-02-17 17:10:02 +03:00
}
.gh-setting-first {
border: none;
padding-top: 0px;
}
.gh-setting-first .description-container {
margin-bottom: 0;
}
.gh-setting-last {
padding-bottom: 0px;
}
2017-02-17 17:10:02 +03:00
.gh-setting-content {
2017-02-21 11:18:15 +03:00
width: 100%;
margin: 0 50px 0 0;
2017-02-17 17:10:02 +03:00
}
.gh-members-setting-content {
width: 100%;
margin: 0;
}
.gh-setting-content--no-action {
margin: 0;
}
2017-02-17 17:10:02 +03:00
.gh-setting-title {
margin-bottom: 2px;
font-size: 1.5rem;
letter-spacing: 0;
2017-02-17 17:10:02 +03:00
line-height: 1.15em;
font-weight: 600;
2021-02-08 16:55:14 +03:00
color: var(--black);
}
.gh-setting-title.m {
font-size: 1.4rem;
font-weight: 500;
2017-02-17 17:10:02 +03:00
}
.gh-setting-desc {
2021-02-08 21:54:16 +03:00
line-height: 1.4em;
2021-02-08 16:55:14 +03:00
color: var(--middarkgrey);
2017-02-17 17:10:02 +03:00
letter-spacing: 0.3px;
font-size: 1.3rem;
2021-02-08 21:54:16 +03:00
font-weight: 400;
2021-02-12 16:58:56 +03:00
margin: 4px 0 12px;
2017-02-17 17:10:02 +03:00
}
2021-02-23 00:44:55 +03:00
.gh-setting-desc.mb0 {
margin-bottom: 0;
}
.gh-setting-error {
margin-top: 1em;
line-height: 1.3em;
color: var(--red);
2019-11-22 13:53:57 +03:00
font-weight: 300;
letter-spacing: 0.3px;
}
2017-02-17 17:10:02 +03:00
.gh-setting-action {
flex-shrink: 0;
margin: 1px 0 0 0;
2021-02-23 00:44:55 +03:00
align-self: center;
}
.gh-setting-action .for-checkbox label,
2021-02-23 00:44:55 +03:00
.gh-setting-action .for-radio label {
padding-bottom: 0;
margin-bottom: 0;
2017-02-17 17:10:02 +03:00
}
.gh-setting-content-extended label {
display: block;
font-size: 1.3rem;
font-weight: 600;
color: var(--darkgrey);
margin-bottom: 4px;
}
.gh-setting-content-extended textarea {
font-size: 1.5rem;
letter-spacing: 0;
line-height: 1.4em;
max-width: initial;
}
.gh-setting-content-extended .gh-image-uploader {
margin: 0;
border: 1px solid var(--whitegrey-d2);
}
.gh-setting-content-extended .gh-btn span {
height: 36px;
line-height: 36px;
}
.gh-setting-liquid-section .liquid-container,
.gh-setting-liquid-section .liquid-child {
padding: 0 20px;
margin: 0 -20px;
}
.gh-settings-portal-section {
box-shadow:
0 0 1px rgba(0,0,0,.07),
0 1.5px 1.2px -11px rgba(0, 0, 0, 0.028),
0 5.1px 4px -11px rgba(0, 0, 0, 0.042),
0 23px 18px -16px rgba(0, 0, 0, 0.07)
;
}
.gh-settings-portal-border {
position: absolute;
content: "";
top: -5px;
right: -5px;
left: -5px;
bottom: -5px;
border: 1px solid var(--blue);
border-radius: 8px;
}
/* Images */
.gh-setting-action-smallimg {
position: relative;
}
.gh-setting-action-smallimg img,
.gh-setting-action-smallimg input[type="image"] {
height: 50px;
width: auto;
max-width: 250px;
}
.gh-setting-action-largeimg img,
.gh-setting-action-largeimg input[type="image"] {
min-height: 80px;
width: auto;
max-width: 250px;
}
@media (max-width: 500px) {
.gh-setting-action-largeimg img,
.gh-setting-action-largeimg input[type="image"] {
max-width: 190px;
}
}
.gh-setting-action-smallimg img:hover,
.gh-setting-action-largeimg img:hover,
.gh-setting-action-smallimg input[type="image"],
.gh-setting-action-largeimg input[type="image"] {
cursor: pointer;
}
.gh-setting-action-smallimg-delete,
.gh-setting-action-largeimg-delete {
display: flex;
flex-direction: column;
align-items: center;
color: var(--midgrey);
margin-top: 8px;
color: var(--whitegrey);
text-decoration: none;
font-size: 13px;
line-height: 10px;
}
.gh-setting-action-smallimg-delete:hover,
.gh-setting-action-largeimg-delete:hover {
color: var(--white);
text-decoration: underline;
}
.gh-setting-action .gh-progress-container {
width: 113px;
height: 100%;
}
.gh-setting-action .gh-progress-container-progress {
width: 100%;
}
.gh-setting-action .gh-progress-bar {
height: 9px;
}
/* Checkboxes */
2017-02-17 17:10:02 +03:00
.gh-setting-action .input-toggle-component {
float: none;
margin-right: 0;
width: 24px;
height: 24px;
2017-02-17 17:10:02 +03:00
}
.gh-setting-action .input-toggle-component:before {
top: 6px;
left: 5px;
width: 12px;
height: 7px;
2017-02-17 17:10:02 +03:00
}
2017-02-21 11:18:15 +03:00
.gh-setting-content-extended {
width: 100%;
}
/* Theme Directory
/* ---------------------------------------------------------- */
.gh-td-marketplace {
display: inline-block;
outline: none;
color: var(--green-d1);
font-weight: 500;
text-decoration: none !important;
text-transform: none;
}
.gh-td-marketplace span {
display: block;
overflow: hidden;
font-size: 1.35rem;
letter-spacing: 0.2px;
}
.gh-td-marketplace span svg {
position: relative;
top: 1px;
width: .7em;
height: .7em;
margin-left: 4px;
}
.gh-td-marketplace span svg path {
stroke: var(--green-d1);
stroke-width: 4px;
}
.td-item {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
text-align: center;
text-decoration: none;
color: var(--darkgrey);
transition: all .8s ease;
}
.td-item img {
box-shadow: 0 0 1px rgba(0,0,0,.02), 0 9px 25px -10px rgba(0,0,0,0.2);
transition: all .8s ease;
border-radius: 3px;
}
.td-item svg circle {
stroke: var(--midlightgrey);
}
.td-item:hover {
transform: translateY(-1%);
transition: all .3s ease;
}
.td-item:hover img {
box-shadow: 0 0 1px rgba(0,0,0,.02), 0 19px 35px -14px rgba(0,0,0,.2);
transition: all .3s ease;
}
.td-item-desc {
display: flex;
width: 100%;
margin-top: 16px;
text-transform: uppercase;
font-weight: 700;
}
.td-item-category {
display: inline-flex;
align-items: center;
margin-left: 4px;
text-transform: none;
font-weight: 400;
font-size: 1em;
color: color-mod(var(--midgrey) l(-5%));
}
.td-item-screenshot {
line-height: 0;
border-radius: 3px;
}
.td-item-overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.td-item-overlay:hover,
.td-item-overlay:focus {
background-color: var(--white-90);
transition: all .3s ease;
}
.td-item-action {
visibility: hidden;
opacity: 0;
transition: visibility 0s, opacity 0.3s ease;}
.td-item-overlay:hover .td-item-action {
visibility: visible;
opacity: 1;
}
.td-item-action.gh-btn {
width: 80px;
}
@media (max-width: 1000px) {
.td-item:nth-child(4),
.td-item:nth-child(5),
.td-item:nth-child(6) {
display: flex;
}
}
/* General
/* ---------------------------------------------------------- */
.gh-general-settings {
display: grid;
grid-template-columns: 2fr 1fr;
grid-gap: 80px;
}
@media (max-width: 1200px) {
.gh-general-settings {
display: flex;
flex-direction: column;
gap: 0;
}
.gh-general-settings .gh-copyright-info {
max-width: 620px !important;
}
}
.gh-general-settings .gh-expandable-header .gh-expandable-description {
max-width: 620px;
}
.gh-seo-settings {
display: flex;
}
@media (max-width: 1360px) {
.gh-seo-settings {
flex-direction: column;
}
.gh-seo-settings .form-group {
max-width: 100%;
}
.gh-seo-settings-left,
.gh-seo-container {
max-width: 591px;
}
}
@media (min-width: 1360px) {
.gh-seo-settings-left {
margin-right: 2.4rem;
}
.gh-seo-container {
max-width: 1091px;
}
}
.gh-seo-container {
display: flex;
width: 100%;
margin-bottom: 2.4rem;
padding: 20px 30px 16px;
border: 1px solid var(--whitegrey-d1);
font-family: Arial, sans-serif;
background: #fff;
border-radius: 3px;
}
.gh-seo-container svg {
width: 92px;
height: 30px;
margin-right: 32px;
}
.gh-general-settings .gh-seo-settings {
flex-direction: column;
}
.gh-general-settings .gh-seo-settings .form-group {
max-width: 100%;
}
.gh-general-settings .gh-seo-settings-left,
.gh-general-settings .gh-seo-container {
max-width: 591px;
}
.gh-twitter-settings {
display: flex;
}
@media (max-width: 1360px) {
.gh-twitter-settings {
flex-direction: column;
}
.gh-twitter-settings .form-group {
max-width: 100%;
}
.gh-twitter-settings-left {
max-width: 591px;
}
}
@media (min-width: 1360px) {
.gh-twitter-settings-left {
margin-right: 2.4rem;
}
}
.gh-twitter-container {
width: 591px;
margin-bottom: 2.4rem;
border: 1px solid var(--whitegrey-d1);
background: #fff;
border-radius: 3px;
}
@media (max-width: 1080px) {
.gh-twitter-container {
width: 100%;
max-width: 591px;
}
}
.gh-general-settings .gh-twitter-settings {
flex-direction: column;
}
.gh-general-settings .gh-twitter-settings .form-group {
max-width: 100%;
}
.gh-general-settings .gh-twitter-settings-left,
.gh-general-settings .gh-twitter-container {
max-width: 591px;
}
.gh-og-settings {
display: flex;
}
@media (max-width: 1360px) {
.gh-og-settings {
flex-direction: column;
}
.gh-og-settings .form-group {
max-width: 100%;
}
.gh-og-settings-left {
max-width: 591px;
}
}
@media (min-width: 1360px) {
.gh-og-settings-left {
margin-right: 2rem;
}
}
.gh-og-container {
width: 476px;
margin-bottom: 2.4rem;
border: 1px solid var(--whitegrey-d1);
background: #fff;
border-radius: 3px;
}
@media (max-width: 1080px) {
.gh-og-container {
width: 100%;
max-width: 476px;
}
}
2015-05-14 16:45:37 +03:00
.gh-general-settings .gh-og-settings {
flex-direction: column;
}
.gh-general-settings .gh-og-settings .form-group {
max-width: 100%;
}
.gh-general-settings .gh-og-settings-left,
.gh-general-settings .gh-og-container {
max-width: 591px;
}
.gh-general-settings .gh-about-box {
margin-top: 19px;
position: relative;
top: unset;
right: unset;
}
.gh-general-settings .gh-copyright-info {
border-top: none;
max-width: 350px;
margin-top: 12px;
padding-top: 0;
}
.gh-about-links {
margin: 0;
padding: 0;
list-style: none;
margin-top: 12px;
padding-top: 12px;
border-top: 1px solid var(--lightgrey-l2);
}
.gh-about-links li {
margin: 0 0 4px;
font-size: 1.4rem;
line-height: 1.8em;
}
.gh-about-links li a span {
display: flex;
align-items: center;
}
.gh-about-links li a span svg {
width: 16px;
height: 16px;
margin-right: 6px;
}
.gh-about-links li a {
color: var(--middarkgrey);
}
.gh-about-links li a:hover {
color: var(--black);
}
.gh-about-links:last-of-type {
margin-bottom: -12px;
}
.gh-about-links .calendar-icon {
width: 14px;
height: 14px;
margin-right: 8px;
}
.gh-about-links li a:hover .hover-stroke path {
stroke: var(--black);
}
.gh-about-links li a:hover .hover-fill path {
fill: var(--black);
}
2015-05-14 16:45:37 +03:00
/* Navigation
/* ---------------------------------------------------------- */
.gh-blognav-container {
padding: 25px 0;
border-top: var(--lightgrey) 1px solid;
}
.gh-blognav {
2021-02-09 19:22:58 +03:00
margin: 8px 0 0;
}
2015-05-14 16:45:37 +03:00
.gh-blognav-item {
display: flex;
align-items: center;
margin-bottom: 10px;
2015-05-14 16:45:37 +03:00
}
.gh-blognav-item--error {
margin-bottom: calc(1em + 10px);
}
.gh-blognav-item .response {
position: absolute;
margin-bottom: 0;
}
.gh-blognav-grab {
padding: 6px 16px 0 0;
width: 16px;
text-indent: -4px;
2015-05-14 16:45:37 +03:00
cursor: move;
}
.gh-blognav-grab svg {
width: 16px;
height: 16px;
fill: color-mod(var(--midgrey) l(+15%));
}
.gh-blognav-line {
display: flex;
2015-05-14 16:45:37 +03:00
width: 100%;
}
.gh-blognav-label {
flex-grow: 1;
margin-right: 10px;
2015-05-14 16:45:37 +03:00
}
.gh-blognav-url {
flex-grow: 3;
2015-05-14 16:45:37 +03:00
}
.gh-blognav-delete {
padding: 8px 0 8px 10px;
display: flex;
align-items: center;
color: var(--midgrey);
transition: fill 0.1s linear;
}
.gh-blognav-delete:hover {
color: var(--red);
}
.gh-blognav-delete svg {
height: 14px;
width: 14px;
2015-05-14 16:45:37 +03:00
}
.gh-blognav-add {
margin-right: -1px;
margin-left: 9px;
width: 16px;
height: 16px;
2015-05-14 16:45:37 +03:00
background: var(--green);
color: var(--white);
2015-05-16 14:43:12 +03:00
border-radius: 2px;
2015-05-14 16:45:37 +03:00
transition: background 0.1s linear;
display: flex;
align-items: center;
justify-content: center;
}
.gh-blognav-add svg {
height: 9px;
width: 9px;
2015-05-14 16:45:37 +03:00
}
.gh-blognav-add:hover,
.gh-blognav-add:focus {
background: color-mod(var(--green) lightness(-10%));
2015-05-14 16:45:37 +03:00
}
.gh-blognav-item:not(.gh-blognav-item--sortable) {
padding-left: 16px;
margin-bottom: 0;
}
/* Remove space between inputs on smaller screens */
@media (max-width: 800px) {
.gh-blognav-label {
margin-right: -1px;
}
.gh-blognav-label input {
border-right-color: color-mod(var(--lightgrey) l(-5%) s(-10%));
border-radius: 4px 0 0 4px;
}
.gh-blognav-url input {
border-left-color: color-mod(var(--lightgrey) l(-5%) s(-10%));
border-radius: 0 4px 4px 0;
}
.gh-blognav-item input:focus {
position: relative;
z-index: 100;
}
}
2015-05-14 16:45:37 +03:00
/* Email newsletter
/* ---------------------------------------------------------- */
.gh-setting-email hr {
margin: 4.8em 0;
}
.gh-email-design-typography-wrapper .gh-setting-dropdown .ember-power-select-status-icon {
right: 16px;
}
.gh-mailgun-region {
width: 140px !important;
margin-right: 12px;
}
.gh-mailgun-region .ember-power-select-trigger {
padding: 6px 12px;
white-space: nowrap;
background: var(--white);
}
.gh-mailgun-region .ember-power-select-selected-item {
margin-left: 0;
}
.gh-mailgun-region .ember-power-select-trigger svg {
position: absolute;
top: 50%;
right: 16px;
width: 10px;
height: 6px;
}
/* Email newsletter LABS
/* ---------------------------------------------------------- */
.gh-newsletters .gh-dropdown-archived {
color: var(--darkgrey);
font-size: 1.35rem;
font-weight: 400;
}
.gh-newsletters .gh-expandable-title {
font-size: 1.5rem;
letter-spacing: 0;
font-weight: 600;
color: var(--black);
margin: 0;
padding: 0;
}
.gh-newsletters .gh-expandable-description {
margin: 0 0 1.8rem;
padding: 0;
color: var(--midgrey);
font-size: 1.3rem;
font-weight: 400;
}
.gh-newsletters .gh-expandable-block {
padding: 24px;
/* Correct last card margin by reducing bottom padding */
padding-bottom: 12px;
}
.gh-newsletter-tracking {
padding: 16px 20px;
background: var(--main-bg-color);
box-shadow: 0 1px 4px -1px rgb(0 0 0 / 10%);
border-radius: 3px;
}
.gh-newsletter-tracking-row {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid var(--whitegrey);
padding: 16px 0;
}
.gh-newsletter-tracking-row:first-child {
padding-top: 0;
}
.gh-newsletter-tracking-row:last-child {
padding-bottom: 0;
border-bottom: none;
}
.gh-newsletter-tracking-title {
font-weight: 600;
font-size: 1.4rem;
margin-bottom: 0;
}
.gh-newsletter-card-container {
margin-left: -24px;
padding-left: 24px;
position: relative;
}
.gh-newsletters .gh-main-content-card:last-of-type {
/* Note that we need to keep the margin of the cards consistent, or they'll jump when we drag the cards to sort them */
margin-bottom: 12px;
}
.gh-newsletter-card {
position:relative;
display: flex;
align-items: center;
justify-content: space-between;
}
.gh-newsletter-card-container[draggable="true"] {
/* required to avoid background being picked up when dragging (Chrome only) */
z-index: 1;
}
.gh-newsletter-card-container .grab-newsletter {
visibility: hidden;
position: absolute;
top: 0;
left: 8px;
width: 2rem;
height: 100%;
padding-right: 2px;
fill: var(--lightgrey-d2);
cursor: move;
opacity: 0;
transition: visibility 200ms step-end, opacity 200ms ease-in-out;
}
.gh-newsletter-card {
transition: margin 125ms ease-in-out, padding 125ms ease-in-out;
}
/*
When dragging, the :hover selector could be on the wrong element. So we explicitly ignore :hover when we are dragging and switch to the .is-dragging-object
*/
body:not([data-user-is-dragging]) .gh-newsletter-card-draggable:hover .gh-newsletter-card, .gh-newsletter-card-draggable.is-dragging-object .gh-newsletter-card {
margin-left: 4px;
padding-left: 20px;
}
body:not([data-user-is-dragging]) .gh-newsletter-card-draggable:hover .grab-newsletter, .gh-newsletter-card-draggable.is-dragging-object .grab-newsletter {
visibility: visible;
opacity: 1;
/*
To make sure the grab handler also fades out correctly and only change visibility after the animation,
we need to update the animation curve for visibility to step-start at the start of the animation
*/
transition: visibility 200ms step-start, opacity 200ms ease-in-out;
}
.gh-newsletter-card-container .grab-newsletter {
display: none;
}
.gh-newsletter-card-draggable .grab-newsletter {
display: inline-block;
}
.gh-newsletter-card-block.title-block {
flex-basis: 60%;
}
.gh-newsletter-card-block.stats-block {
display: grid;
flex-basis: 30%;
grid-template-columns: 1fr 1fr;
}
.gh-newsletter-card-block.stats-block.multiple {
margin-right: -4.4rem;
}
.gh-newsletter-card-block.cta-block {
display: flex;
}
.gh-newsletter-card-block:not(:first-of-type) {
padding-left: 16px;
}
.gh-newsletter-card-block h4 {
font-size: 1.3rem;
font-weight: 500;
}
.gh-newsletter-card-block h4 .counter {
font-weight: 400;
color: var(--midgrey);
}
.gh-newsletter-card-name {
display: flex;
align-items: center;
margin: 0;
2022-04-26 14:58:42 +03:00
font-size: 1.8rem;
font-weight: 600;
line-height: 1.3em;
}
.stats-block .gh-newsletter-card-name {
font-size: 1.7rem;
}
.gh-newsletter-card-description {
font-size: 1.3rem;
line-height: 1.45em;
margin: 4px 20px 4px 0;
color: var(--midgrey);
}
.gh-newsletter-card-button-container {
position: absolute;
right: 24px;
top: 24px;
margin-right: 0;
}
.gh-newsletter-actions-menu {
margin-top: 4px;
2022-05-19 17:44:12 +03:00
background: none;
}
.gh-add-newsletter {
display: flex;
align-items: center;
width: max-content;
margin: .8rem 0 0;
color: var(--green-d1);
}
.gh-add-newsletter svg {
width: 1rem;
height: 1rem;
margin-right: 6px;
}
.gh-newsletters-setting-sectionheading {
font-size: 1.1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.2px;
color: var(--midgrey-l1);
margin: 0 0 16px;
padding: 0 0 8px;
border-bottom: 1px solid var(--whitegrey);
}
.gh-newsletters-labs .form-group.vertical p {
margin: 4px 0 0;
}
.gh-newsletters-labs .modal-fullsettings-uploader {
flex-grow: 1;
margin: 0;
}
.gh-newsletters-labs .gh-header-img-uploadicon {
background: var(--whitegrey-l2);
}
.gh-newsletters-labs .gh-email-design-typography-wrapper.header .gh-btn-group {
background: var(--whitegrey-d1);
}
.gh-newsletters-labs .gh-stack-item .tooltip-top-left::before {
width: max-content;
max-width: 320px;
white-space: normal;
word-break: break-word;
text-align: left;
}
.gh-newsletters-labs .gh-members-emailsettings-footer {
margin-top: auto;
margin-bottom: 0;
}
.gh-newsletters-labs .gh-members-emailpreview-container {
margin: 16px auto 32px;
}
.gh-newsletters-labs .gh-members-emailpreview-faux {
height: 88px;
background: var(--whitegrey-l2);
}
.gh-newsletters-labs .gh-members-emailpreview-faux .dark,
.gh-newsletters-labs .gh-members-emailpreview-faux .strong {
color: var(--darkgrey);
font-size: 1.4rem;
font-weight: 600;
}
.gh-newsletters-labs .gh-members-emailpreview-faux p {
color: var(--midgrey-l2);
}
/* Customise email newsletter LABS
/* ---------------------------------------------------------- */
.modal-fullsettings-form-labs.email-design .modal-fullsettings-tab-expanded {
padding: 20px 32px;
}
.modal-fullsettings-form-labs.email-design .gh-stack-item {
margin: 12px 0;
}
/* Code injection
2015-05-14 16:45:37 +03:00
/* ---------------------------------------------------------- */
2015-05-20 19:52:55 +03:00
.settings-code {
max-width: 100%;
}
.settings-code label {
font-size: 1.5rem;
letter-spacing: 0;
margin-bottom: 2px;
2015-05-14 16:45:37 +03:00
}
2015-05-20 19:52:55 +03:00
.settings-code p {
margin: 0 0 8px;
font-size: 1.3rem;
2015-05-14 16:45:37 +03:00
}
.settings-code code {
background-color: rgb(242, 244, 247);
border: 1px solid var(--lightgrey);
2015-05-14 16:45:37 +03:00
vertical-align: middle;
font-size: 1.2rem;
2015-05-14 16:45:37 +03:00
}
.settings-code-editor {
2015-05-20 19:52:55 +03:00
padding: 0;
2015-05-14 16:45:37 +03:00
min-width: 250px;
2015-05-16 14:43:12 +03:00
min-height: 300px;
2021-02-10 13:54:27 +03:00
max-width: 1224px;
2021-02-22 23:43:57 +03:00
width: calc(100vw - 416px) !important;
2015-05-14 16:45:37 +03:00
height: auto;
line-height: 22px;
border: 1px solid var(--lightgrey);
2015-05-14 16:45:37 +03:00
}
.settings-code-editor:hover {
cursor: text;
}
.settings-code-editor textarea {
width: 100%;
max-width: none;
min-height: 300px;
line-height: 22px;
border: none;
}
2015-05-14 16:45:37 +03:00
.settings-code-editor .CodeMirror {
padding: 0;
border: none;
2015-05-14 16:45:37 +03:00
border-radius: inherit;
background: var(--white);
color: var(--darkgrey);
}
.settings-code-editor .CodeMirror-gutters {
background-color: var(--whitegrey-l2);
border-right: 1px solid var(--lightgrey);
2015-05-14 16:45:37 +03:00
}
.settings-code-editor .CodeMirror-cursor {
border: 1px solid var(--midgrey);
}
2015-05-14 16:45:37 +03:00
.settings-code-editor .cm-s-xq-light span.cm-meta {
color: #000;
}
@media (max-width: 800px) {
.settings-code-editor {
2021-02-22 23:43:57 +03:00
width: calc(100vw - 8vw - 40px) !important;
}
}
2015-05-14 16:45:37 +03:00
/* Labs
/* ---------------------------------------------------------- */
#startupload {
line-height: inherit;
}
@media (max-width: 500px) {
#importfile {
flex-direction: column;
}
#importfile input {
width: 150px;
}
2015-05-14 16:45:37 +03:00
#startupload {
margin-left: 0;
2015-05-14 16:45:37 +03:00
margin-top: 5px;
}
}
.gh-import-errors {
position: relative;
padding: 12px 10px 14px 10px;
border: 1px solid var(--lightgrey);
border-left-width: 5px;
border-left-color: var(--red);
color: var(--midgrey);
line-height: 1.4em;
letter-spacing: 0.2px;
background: #fff;
border-radius: 5px;
margin-top: 18px;
margin-bottom: 25px;
}
.gh-import-errors-alert {
border-left-color: color-mod(var(--yellow) l(-8%) s(+10%));
}
.gh-import-errors-title {
margin-bottom: 1em;
font-size: 1.8rem;
line-height: 1.15em;
font-weight: 600;
color: var(--red);
}
.gh-import-errors-alert .gh-import-errors-title {
color: color-mod(var(--yellow) l(-8%) s(+10%));
}
.gh-import-error {
margin-bottom: 1.75em;
}
.gh-import-error:last-of-type {
margin-bottom: 0;
}
.gh-import-error-message {
margin-bottom: 0.5em;
2019-11-22 13:53:57 +03:00
font-weight: 300;
}
.gh-import-error-entry pre {
margin: 0;
font-size: 10px;
}
.gh-setting-linkrow:hover {
background: var(--whitegrey-l2);
}
/* Themes
/* ---------------------------------------------------------- */
@media (max-width: 500px) {
.gh-themes-container .apps-configured {
justify-content: flex-end;
}
.gh-themes-container .apps-card-meta {
flex-basis: auto;
}
}
/*Errors */
.theme-validation-container {
overflow-y: auto;
margin: -32px -32px 0;
padding: 32px 32px 0;
max-height: calc(100vh - 20vw);
}
@media (max-height: 960px) {
.theme-validation-container {
max-height: calc(100vh - 180px);
}
}
.theme-validation-container .gh-image-uploader {
justify-content: center;
}
.theme-validation-container .gh-image-uploader .description {
color: var(--green-d1);
font-weight: 500;
}
.theme-validation-container .gh-image-uploader .x-file-input.try-again,
.theme-validation-container .gh-image-uploader .x-file-input.try-again label {
display: inline;
}
.theme-validation-item {
margin: 12px 0 0;
padding: 12px 16px 12px 28px;
border: 1px solid #e5eff5;
border-radius: 5px;
display: flex;
flex-direction: column;
border: 1px solid var(--lightgrey);
}
.theme-validation-item h4 {
margin: 0;
font-size: 1.4rem;
font-weight: 400;
line-height: 1.5em;
}
.theme-validation-rule-text {
flex-grow: 1;
}
.theme-validation-item.theme-fatal-error {
border: 1px solid var(--red);
}
.theme-validation-item.theme-fatal-error .theme-validation-rule-text::before,
.theme-validation-item.theme-error .theme-validation-rule-text::before,
.theme-validation-item.theme-warning .theme-validation-rule-text::before
{
font-weight: 600;
}
.theme-validation-item.theme-fatal-error .theme-validation-rule-text::before {
content: "Fatal error:";
color: var(--red);
}
.theme-validation-item.theme-error .theme-validation-rule-text::before {
content: "Error:";
}
.theme-validation-item.theme-warning .theme-validation-rule-text::before {
content: "Warning:";
}
.theme-fatal-error .theme-validation-type-label::before,
.theme-error .theme-validation-type-label::before,
.theme-warning .theme-validation-type-label::before {
content: "";
display: block;
width: 8px;
height: 8px;
margin-top: 6px;
margin-left: -16px;
border-radius: 999px;
}
.theme-fatal-error .theme-validation-type-label::before,
.theme-error .theme-validation-type-label::before {
background: color-mod(var(--red) alpha(0.85));
}
.theme-warning .theme-validation-type-label::before {
background: color-mod(var(--yellow));
}
.theme-validation-list ul {
list-style: disc;
}
.theme-validation-list code,
.theme-validation-rule-text code {
font-size: 0.9em;
}
.theme-validation-item h6 {
font-size: 1.3rem;
font-weight: 500;
}
.theme-validation-toggle-details {
display: flex;
justify-content: space-between;
flex-grow: 1;
align-items: flex-start;
padding: 0;
color: var(--darkgrey);
text-decoration: none!important;
font-size: 1.3rem;
}
.theme-validation-rule-icon {
flex-shrink: 0;
margin-left: 5px;
width: 13px;
height: 14px;
color: var(--midgrey);
transition: all 0.1s ease-out;
}
.theme-validation-rule-icon svg path {
fill: var(--midgrey);
}
.theme-validation-details {
margin-top: 12px;
padding-top: 12px;
font-size: 1.3rem;
border-top: 1px solid var(--lightgrey);
}
p.theme-validation-details {
font-size: 1.3rem;
}
.theme-validation-screenshot img {
margin-bottom: 2rem;
border: 1px solid var(--main-color-area-divider);
border-radius: 3px;
}
/* Publication identity
/* ---------------------------------------------------------- */
.blog-logo,
.blog-icon {
max-height: 50px;
height: auto !important;
}
/** CSS for accent color */
.input-color-form-group {
display: flex;
align-items: flex-end;
flex-direction: column;
margin-bottom: 0;
}
.input-color {
display: flex;
position: relative;
}
.input-color:after {
content: "#";
position: absolute;
top: 9px;
left: 43px;
color: var(--midlightgrey);
font-family: "Consolas", monaco, monospace;
font-size: 13px;
}
.input-color:focus {
border: none;
}
.input-color input {
padding-left: 52px;
width: 112px;
height: 38px;
padding-right: 8px;
font-family: "Consolas", monaco, monospace;
font-size: 13px;
}
.input-color .color-box {
position: absolute;
top: 1px;
left: 1px;
width: 36px;
height: 36px;
display: inline-block;
background-color: var(--lightgrey);
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
border-right: 1px solid var(--input-border);
box-shadow: inset 0 0 0 1px var(--white);
}
.input-color input:focus + .color-box {
top: 2px;
left: 2px;
width: 35px;
height: 34px;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
.gh-setting-unsplash-checkbox {
margin-bottom: 0;
}
/* Branding
/* ---------------------------------------------------- */
.gh-branding-settings {
display: flex;
align-items: stretch;
height: 100%;
}
.gh-branding-settings-header {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid var(--whitegrey);
margin: -20px -24px;
2021-02-10 13:54:27 +03:00
padding: 16px 24px;
}
.gh-branding-settings-header h4 {
margin: 0;
padding: 0;
font-size: 1.9rem;
font-weight: 600;
}
.gh-branding-settings-actions {
display: flex;
align-items: center;
justify-content: flex-end;
}
.gh-branding-settings-actions .close {
padding: 4px;
margin-right: 12px;
}
.gh-branding-settings-options {
flex-basis: 25%;
flex-grow: 0;
flex-shrink: 0;
border-right: 1px solid var(--whitegrey);
min-width: 320px;
max-width: 400px;
margin: 20px 0 -20px;
padding: 24px 24px 24px 0;
overflow-y: auto;
height: calc(100vh - 136px);
}
.gh-branding-image-container {
position: relative;
align-self: flex-start;
height: 50px;
}
.gh-branding-image-container.largeimg {
width: 100%;
display: flex;
height: unset;
min-height: 80px;
align-items: center;
}
.gh-branding-image-container.transparent-bg {
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle%3ERectangle%3C/title%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23E6EEF2' d='M0 0h24v24H0z'/%3E%3Cpath fill='%23D8E2E8' d='M0 0h12v12H0zM12 12h12v12H12z'/%3E%3C/g%3E%3C/svg%3E");
}
.gh-branding-settings-options .gh-setting-action-largeimg-delete,
.gh-branding-settings-options .gh-setting-action-smallimg-delete {
position: absolute;
top: 5px;
right: 5px;
background: rgba(0, 0, 0, 0.9);
border: 1px solid rgba(255, 255, 255, 0.25);
padding: 5px;
margin: 0;
border-radius: 3px;
opacity: 0;
}
.gh-branding-settings-options .gh-setting-action-largeimg-delete:hover,
.gh-branding-settings-options .gh-setting-action-smallimg-delete:hover {
background: var(--red);
border-color: transparent;
}
.gh-branding-image-container:hover .gh-setting-action-largeimg-delete,
.gh-branding-image-container:hover .gh-setting-action-smallimg-delete {
opacity: 1;
}
.gh-branding-settings-right {
flex-grow: 1;
flex-basis: 100%;
display: flex;
flex-direction: column;
align-items: stretch;
margin: 20px -24px -20px 0;
2021-02-15 20:03:07 +03:00
background: var(--whitegrey-l1);
}
.gh-branding-settings-previewcontainer {
margin: 32px 68px 68px;
}
.gh-branding-settings-previewcontainer .site-frame {
2021-03-03 18:26:59 +03:00
width: 133.33333%;
height: 133.33333%;
transform: scale(0.75);
transform-origin: 0 0;
}
.gh-branding-settings .input-color input {
position: relative;
height: 30px;
width: 102px;
padding: 3px 4px 3px 44px;
font-size: 1.3rem;
}
.gh-branding-settings .input-color::after {
top: 5px;
left: 34px;
}
.gh-branding-settings .color-picker-horizontal-divider {
position: absolute;
display: block;
content: "";
width: 1px;
top: 0;
left: 29px;
bottom: 0;
2021-03-10 15:42:32 +03:00
background: var(--input-border-color);
}
.gh-branding-settings .input-color input:focus + .color-picker-horizontal-divider {
top: 2px;
bottom: 2px;
}
.gh-branding-settings .color-box-container {
height: 26px;
width: 26px;
position: absolute;
overflow: hidden;
top: 2px;
left: 2px;
border-top-left-radius: 2px;
border-bottom-left-radius: 2px;
}
.gh-branding-settings .color-box-container .color-picker {
position: absolute;
top: -10px;
left: -10px;
border: none;
outline: none;
padding: 0;
margin: 0;
width: 50px;
height: 50px;
}
.gh-branding-settings .gh-accent-color .gh-setting-action {
align-self: flex-start;
margin-top: 22px;
}
.gh-branding-settings .gh-accent-color .response {
margin: -8px 0 0;
font-size: 1.3rem;
}
/* Design (Labs)
/* ---------------------------------------------------- */
.gh-nav-contextual {
flex: 0 0 360px;
}
2021-10-15 18:59:47 +03:00
.gh-nav-header {
display: flex;
align-items: center;
padding: 32px 32px 48px;
color: var(--midgrey-l2);
font-size: 1.35rem;
font-weight: 400;
line-height: 36px;
letter-spacing: .2px;
2021-10-15 18:59:47 +03:00
}
.gh-nav-header.no-accordion {
padding-bottom: 32px;
}
.gh-nav-header.no-accordion + .gh-nav-body .gh-nav-top:first-of-type .gh-nav-design-settings {
margin-top: 4px;
}
2021-10-15 18:59:47 +03:00
.gh-nav-menu-back-button {
display: flex;
align-items: center;
height: 36px;
color: var(--darkgrey);
2021-10-15 18:59:47 +03:00
background: none;
}
.gh-nav-header svg {
2021-10-15 18:59:47 +03:00
display: block;
width: 9px;
height: 9px;
margin: 1px 6px 0;
}
.gh-nav-header svg path {
stroke: var(--darkgrey-l1);
}
2021-10-15 18:59:47 +03:00
.gh-nav-menu-back-button:hover {
color: var(--black);
}
.gh-nav-design {
overflow-x: hidden;
}
2021-10-15 18:59:47 +03:00
.gh-nav-design .gh-nav-menu-title {
display: flex;
align-items: center;
overflow: hidden;
2021-10-20 12:14:26 +03:00
margin: 0 16px 4px 16px;
padding: 8px 16px;
color: var(--black);
font-size: 1.5rem;
letter-spacing: 0;
2021-10-27 17:59:45 +03:00
font-weight: 600;
line-height: 1.3em;
2021-10-20 12:14:26 +03:00
border-radius: var(--border-radius);
}
.gh-nav-design .gh-nav-menu-title:hover {
background: none !important;
}
.gh-nav-design-tab {
2021-10-12 15:30:12 +03:00
display: flex;
2021-10-20 12:14:26 +03:00
flex-grow: 1;
position: relative;
2021-10-12 15:30:12 +03:00
align-items: center;
box-sizing: border-box;
padding: 7px var(--main-layout-area-padding);
2021-10-12 15:30:12 +03:00
color: var(--darkgrey-l1);
font-weight: 400;
font-size: 1.45rem;
transition: none;
}
2021-10-12 20:14:17 +03:00
.gh-nav-design-tab:hover {
color: var(--black);
2021-10-12 20:14:17 +03:00
}
.gh-nav-design-tab.active {
2021-10-12 20:14:17 +03:00
color: var(--black);
2021-10-27 17:59:45 +03:00
font-weight: 400;
2021-10-20 12:14:26 +03:00
border-radius: var(--border-radius) var(--border-radius) 0 0;
2021-10-12 20:14:17 +03:00
}
2021-10-13 16:33:53 +03:00
.gh-nav-bottom .gh-nav-design-tab {
justify-content: space-between;
2021-10-13 16:33:53 +03:00
}
.gh-nav-bottom .gh-nav-design-tab span {
display: flex;
align-items: center;
2021-10-15 18:59:47 +03:00
color: var(--black);
font-size: 1.5rem;
letter-spacing: 0;
2021-10-27 17:59:45 +03:00
font-weight: 600;
}
.gh-nav-design-tab:not(.active):hover {
background: var(--mainmenu-color-hover-bg);
}
.gh-nav-bottom .gh-nav-design-tab > a {
position: absolute;
inset: 0;
}
2021-10-15 18:59:47 +03:00
.gh-nav-bottom .gh-nav-design-tab .active-theme {
2021-10-13 16:33:53 +03:00
color: var(--midgrey);
font-size: 1.3rem;
2021-10-27 17:59:45 +03:00
font-weight: 400;
2021-10-13 16:33:53 +03:00
}
2021-10-20 12:14:26 +03:00
.gh-nav-design .gh-nav-list {
display: flex;
flex-direction: column;
}
2021-10-13 15:57:39 +03:00
.gh-nav-design .gh-nav-list .active svg {
fill: none;
}
2021-10-12 20:14:17 +03:00
.gh-nav-design .gh-nav-button-expand {
2021-10-20 12:14:26 +03:00
position: relative;
top: inherit;
left: inherit;
margin: 0 8px 0 auto;
2021-10-12 20:14:17 +03:00
padding-top: 3px;
}
2021-10-20 12:14:26 +03:00
.gh-nav-design .gh-nav-button-expand svg {
margin-right: 0;
}
2021-10-12 20:14:17 +03:00
.gh-nav-design .gh-nav-bottom {
position: sticky;
-webkit-position: sticky;
bottom: -24px;
z-index: 9997;
height: 120px;
padding: 0;
-webkit-backface-visibility: hidden;
}
.gh-nav-design .gh-nav-bottom::before,
.gh-nav-design .gh-nav-bottom::after {
content: "";
position: sticky;
-webkit-position: sticky;
display: block;
height: 24px;
}
.gh-nav-design .gh-nav-bottom::before {
z-index: 9998;
bottom: 0;
background: var(--white);
}
.gh-nav-design .gh-nav-bottom::after {
bottom: 72px;
box-shadow: 0 0 0 1px rgba(0,0,0,.04), 0 -8px 16px -3px rgba(0,0,0,.15);
}
.gh-change-theme {
position: sticky;
-webkit-position: sticky;
bottom: 0;
z-index: 9999;
display: flex;
align-items: center;
height: 96px;
margin-bottom: -24px;
background: var(--white);
2021-10-12 15:30:12 +03:00
}
.gh-theme-docs {
position: relative;
z-index: 10;
padding: 4px 8px;
line-height: 0;
color: var(--midgrey);
}
.gh-theme-docs:hover {
color: #15171a;
}
.gh-theme-docs svg {
width: 12px;
height: 12px;
fill: currentColor;
}
.gh-nav-design-tabicon {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
margin-right: -8px;
border-radius: 50%;
2021-10-12 15:30:12 +03:00
}
2021-10-22 10:56:39 +03:00
.gh-nav-design-tab.active .gh-nav-design-tabicon {
background: var(--mainmenu-color-hover-bg);
}
.gh-nav-design-tabicon svg {
width: 18px;
height: 18px;
fill: currentColor;
2021-10-12 15:30:12 +03:00
}
.gh-nav-design-settings {
margin: 8px 0 24px;
padding: 24px var(--main-layout-area-padding) 16px;
background: var(--mainmenu-color-hover-bg);
}
.gh-nav-design .gh-setting {
padding: 12px 0;
}
.gh-nav-design .gh-setting-first {
padding-bottom: 12px;
}
.gh-nav-design .gh-setting-title {
font-size: 1.3rem;
font-weight: 600;
}
.gh-nav-design .gh-setting-action {
align-self: flex-start;
}
2021-10-20 18:07:17 +03:00
.gh-nav-design .gh-select svg {
width: 12px;
height: 6px;
margin-right: 0;
}
.gh-nav-design .input-color input {
position: relative;
height: 30px;
width: 102px;
padding: 3px 4px 3px 44px;
font-size: 1.3rem;
}
.gh-nav-design .input-color::after {
top: 5px;
left: 34px;
}
.gh-nav-design .color-box-container {
height: 26px;
width: 26px;
position: absolute;
overflow: hidden;
top: 2px;
left: 2px;
border-top-left-radius: 2px;
border-bottom-left-radius: 2px;
}
.gh-nav-design .color-box-container .color-picker {
position: absolute;
top: -10px;
left: -10px;
border: none;
outline: none;
padding: 0;
margin: 0;
width: 50px;
height: 50px;
}
.gh-nav-design .gh-setting-action-largeimg-delete,
.gh-nav-design .gh-setting-action-smallimg-delete {
position: absolute;
top: 5px;
right: 5px;
background: rgba(0, 0, 0, 0.9);
border: 1px solid rgba(255, 255, 255, 0.25);
padding: 5px;
margin: 0;
border-radius: 3px;
opacity: 0;
}
.gh-nav-design .gh-setting-action-largeimg-edit,
.gh-nav-design .gh-setting-action-smallimg-edit {
right: 40px;
}
.gh-nav-design .gh-setting-action-largeimg-delete:hover,
.gh-nav-design .gh-setting-action-smallimg-delete:hover {
background: var(--red);
border-color: transparent;
}
.gh-nav-design .gh-setting-action-smallimg-edit:hover,
.gh-nav-design .gh-setting-action-largeimg-edit:hover {
background: var(--middarkgrey);
}
.gh-nav-design .gh-setting-action-largeimg-delete svg,
.gh-nav-design .gh-setting-action-smallimg-delete svg {
margin: 0;
}
.gh-nav-design .for-switch label {
width: 34px !important;
height: 22px !important;
margin: 0;
}
.gh-nav-design .for-checkbox .input-toggle-component {
background-color: var(--white);
}
.gh-nav-design .kg-settings-panel-control-input {
margin-right: -4px;
}
.gh-nav-design .kg-settings-headerstyle-btn-group .kg-headerstyle-btn-light {
border-color: color-mod(var(--lightgrey) l(-5%) s(-10%));
}
.gh-theme-setting-title {
margin-bottom: 1rem;
}
.gh-design {
display: flex;
flex-direction: column;
height: 100%;
}
.gh-preview-page-selector,
.gh-preview-page-selector select {
height: 34px;
min-width: 160px;
2021-10-14 19:01:12 +03:00
}
.gh-preview-page-selector svg {
2021-10-14 19:01:12 +03:00
margin-top: -.1em;
}
.gh-design-preview-mode span {
line-height: 28px;
}
.gh-design-preview-mode svg {
max-width: 16px;
height: 16px;
vertical-align: middle;
fill: var(--midgrey);
}
.gh-design .view-container {
padding-bottom: 0;
}
.gh-design .gh-pe-mobile-container {
margin: 4vmin 0 4rem;
}
2021-10-20 12:14:26 +03:00
.gh-advanced svg {
width: auto;
height: 6px;
margin-right: .6em;
fill: var(--darkgrey);
}
.gh-advanced svg path {
stroke: var(--darkgrey);
}
.gh-themes-container {
margin-bottom: 40px;
background: var(--main-color-content-greybg);
border-radius: var(--border-radius);
}
.gh-themes-container .apps-grid-cell {
background: none;
}
.gh-themes-container .apps-grid-cell:hover {
background: var(--whitegrey-l1);
}
.gh-themes-container .apps-card-app {
padding: 16px 24px;
}
.gh-themes-container .apps-grid-cell:last-of-type .apps-card-app {
border-bottom: none;
}
.gh-themes-container .apps-configured-action {
display: block;
margin-right: 16px;
padding: 2px 6px;
color: var(--green-d1);
border-radius: var(--border-radius);
}
.gh-themes-container .gh-btn-icon {
background: none;
}
.gh-themes-container .gh-btn-icon:hover {
background: var(--whitegrey-d1);
}
.gh-themes-container .gh-btn-icon svg {
margin-right: 0;
}
.gh-list-delete {
color: var(--red-d1) !important;
}
@media (max-width: 500px) {
.gh-themes-container .apps-configured {
justify-content: flex-end;
}
.gh-themes-container .apps-card-meta {
flex-basis: auto;
}
}
.gh-theme-directory-container {
padding: 8px 0 0;
}
.theme-directory {
display: grid;
justify-content: space-between;
grid-template-columns: 1fr 1fr 1fr;
grid-column-gap: 40px;
grid-row-gap: 64px;
margin: 0 0 24px;
}
@media (min-width: 1800px) {
.theme-directory {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
}
@media (max-width: 1120px) {
.theme-directory {
grid-template-columns: 1fr 1fr;
}
}
@media (min-width: 800px) and (max-width: 890px) {
.theme-directory {
grid-template-columns: 1fr;
}
}
@media (max-width: 800px) {
.theme-directory {
grid-column-gap: 32px;
grid-row-gap: 48px;
}
}
@media (max-width: 430px) {
.theme-directory {
grid-template-columns: 1fr;
}
}
2021-10-14 19:01:12 +03:00
.gh-theme-browser {
position: relative;
width: 100%;
height: 28px;
padding: 0 12px;
background: var(--whitegrey-l1);
border-radius: 3px 3px 0 0;
}
2021-10-14 19:01:12 +03:00
.gh-theme-browser-button {
position: relative;
top: 11px;
display: block;
width: 6px;
height: 6px;
background: var(--lightgrey);
border-radius: 50%;
}
2021-10-14 19:01:12 +03:00
.gh-theme-browser-button::before,
.gh-theme-browser-button::after {
content: "";
position: absolute;
width: 6px;
height: 6px;
background: var(--lightgrey);
border-radius: 50%;
}
2021-10-14 19:01:12 +03:00
.gh-theme-browser-button::before {
left: 12px;
}
2021-10-14 19:01:12 +03:00
.gh-theme-browser-button::after {
left: 24px;
}
.td-item-labs {
text-align: left !important;
}
.td-item-screenshot-labs {
line-height: 0;
border-radius: 0 0 3px 3px;
}
.td-item-screenshot-labs img {
border-radius: 0 0 3px 3px;
}
.theme-directory .td-item-desc {
display: flex;
flex-direction: column;
}
.td-item-name {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 4px;
font-size: 1.6rem;
text-transform: none;
}
.td-item-labs .td-item-category {
margin-left: 0;
color: var(--midgrey);
font-size: 1.2rem;
font-weight: 500;
text-transform: uppercase;
}
.gh-theme-directory-footer {
2021-10-22 10:56:39 +03:00
position: relative;
2021-10-20 12:14:26 +03:00
padding: 58px var(--main-layout-content-sidepadding);
2021-10-22 10:56:39 +03:00
color: var(--whitegrey-l2);
font-size: 1.75rem;
text-align: center;
background: #15171A;
background-repeat: no-repeat;
background-position: 100% 50%;
background-size: 35vw;
}
.gh-theme-directory-footer .link {
2021-10-22 10:56:39 +03:00
color: var(--lime);
font-weight: 500;
}
2021-10-13 16:33:53 +03:00
.gh-theme-preview {
max-width: none;
padding: 0 80px 48px;
}
.gh-theme-preview .view-container {
padding-bottom: 0;
}
.gh-theme-preview .gh-pe-mobile-container {
margin-top: 4vmin;
}
/* Membership */
.gh-setting-membership {
margin-bottom: 32px;
}
@media (max-width: 1140px) {
.gh-setting-members-canvas::before {
display: none;
}
}
.gh-setting-members-basicsform {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.gh-setting-members-basicsform .intro {
margin: 0;
font-size: 1.6rem;
margin-bottom: 12px;
}
.gh-setting-members-portalcta {
background: linear-gradient(to left, color-mod(var(--main-color-content-greybg) l(-3%)), var(--main-color-content-greybg));
}
.gh-setting-members-portalcta .gh-expandable-header button {
margin-left: 16px;
}
@media (max-width: 500px), (min-width: 1140px) and (max-width: 1260px) {
.gh-setting-members-portalcta .gh-expandable-header {
flex-direction: column;
align-items: inherit;
}
.gh-setting-members-portalcta .gh-expandable-header button {
margin-top: 1rem;
margin-left: 0;
}
}
.gh-setting-members-portalcta .gh-expandable-description {
padding-top: 2px;
line-height: 1.4;
}
.gh-setting-members-portalpreview {
justify-self: end;
font-size: 1.3rem;
font-weight: 500;
color: var(--midgrey);
}
@media (max-width: 1140px) {
.gh-setting-members-portalpreview {
display: none;
}
}
2021-05-17 20:36:36 +03:00
.gh-setting-dropdown {
margin-top: 1.2rem;
cursor: pointer;
background: var(--white);
}
2021-05-18 23:17:46 +03:00
.gh-setting-dropdown[aria-disabled="true"] {
background: var(--whitegrey-l2);
}
.gh-setting-dropdown[aria-disabled="true"] svg path {
fill: var(--lightgrey-d1);
}
.gh-setting-dropdown[aria-disabled="true"] .gh-radio-label {
opacity: .65;
}
.gh-setting-dropdown:focus-visible {
outline: none;
}
.gh-setting-dropdown .ember-power-select-status-icon {
right: 24px;
2021-05-17 20:36:36 +03:00
}
.gh-setting-dropdown .gh-setting-dropdown-content {
display: flex;
align-items: center;
margin: 1.2rem 2.4rem 1.2rem 0.8rem;
2021-05-17 20:36:36 +03:00
}
.gh-setting-dropdown-list {
margin-top: -1px;
border-top: 1px solid var(--input-border-color) !important;
}
2021-05-17 20:36:36 +03:00
.gh-setting-dropdown-list .ember-power-select-option {
padding: 6px 8px;
}
.gh-setting-dropdown-list .gh-setting-dropdown-content {
display: flex;
align-items: center;
2021-05-17 20:36:36 +03:00
margin: 1.4rem 1rem;
}
.gh-setting-dropdown-content svg {
width: 3rem;
height: 3rem;
margin-right: 1.2rem;
2021-05-17 20:36:36 +03:00
}
.gh-setting-richdd-container {
margin: 36px 0 0;
}
.gh-expandable-content .gh-setting-richdd-container {
margin: 0 0 30px;
}
.gh-expandable-content .gh-setting-richdd-container .gh-setting-dropdown {
margin-top: 0;
}
.gh-setting-large-dropdown .ember-power-select-multiple-trigger {
padding: 8px;
}
.gh-setting-large-dropdown .segment-totals {
display: none;
}
.gh-setting-rich-dropdown {
margin-bottom: 32px;
}
.gh-setting-rich-dropdown .ember-power-select-status-icon {
right: 20px;
}
.gh-setting-members-tierscontainer {
margin-top: 4vmin;
}
.gh-settings-members-tiersheader {
display: flex;
align-items: flex-end;
justify-content: space-between;
}
.gh-settings-members-tiersheader .gh-btn-stripe-status {
margin-bottom: 12px;
}
.gh-settings-members-tiersheader .gh-btn-stripe-status span {
height: 28px;
line-height: 28px;
font-size: 1.25rem;
}
.gh-setting-members-tierscontainer .gh-expandable:not(:first-of-type) {
margin-top: 20px;
}
.gh-setting-members-portal-mock {
display: flex;
position: relative;
align-items: center;
justify-content: center;
background: #fff;
box-shadow: var(--box-shadow-preview-box);
width: 420px;
height: 562px;
margin-bottom: 32px;
border-radius: 5px;
pointer-events: none;
transition: height 0.17s ease-out;
}
.gh-setting-members-portal-mock.mock-enabled {
pointer-events: unset;
}
.gh-setting-members-portal-disabled {
display: flex;
flex-direction: column;
align-items: center;
margin: 32px;
text-align: center;
}
.gh-setting-members-portal-disabled svg {
width: 44px;
height: 44px;
}
.gh-setting-members-portal-disabled svg path {
stroke-width: 1.2px;
}
.gh-setting-members-portal-disabled h4 {
font-size: 1.5rem;
letter-spacing: 0;
font-weight: 500;
color: var(--darkgrey);
}
.gh-setting-members-portal-disabled p {
max-width: 240px;
font-weight: 400;
}
.gh-setting-members-portal-mock .site-frame {
border-radius: 5px;
}
.gh-settings-members-pricetrialcont {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 32px;
}
.gh-settings-members-pricetrialcont .trial-docs-link {
color: #30cf43;
white-space: nowrap;
}
.gh-settings-members-pricelabelcont {
display: flex;
align-items: baseline;
}
.gh-settings-members-pricelabelcont.free-trial-enabled {
justify-content: space-between;
margin-bottom: 3px;
}
.gh-settings-members-pricelabelcont span {
margin: 0 4px;
}
.gh-settings-members-pricelabelcont span,
.gh-settings-members-pricelabelcont div {
display: inline-block;
margin-bottom: 3px;
}
2021-05-17 19:12:49 +03:00
.gh-settings-members-pricelabelcont .gh-select svg {
position: unset;
margin-top: -3px;
}
.gh-settings-members-pricelabelcont .gh-select {
padding: 0;
2021-05-17 19:12:49 +03:00
height: 16px;
border: none;
margin-left: 0;
margin-right: 0;
}
.gh-settings-members-pricelabelcont .gh-select select {
2021-05-17 19:12:49 +03:00
font-size: 1.4rem;
font-weight: 500;
border: none;
2021-05-17 19:12:49 +03:00
height: 16px;
width: 46px;
padding: 0;
}
.gh-setting-members-prices {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 20px;
}
.gh-setting-members-prices.free-trial-enabled {
display: grid;
grid-template-rows: 1fr 1fr;
grid-template-columns: none !important;
grid-gap: 6px;
}
.gh-setting-members-currency {
position: relative;
}
2021-05-17 18:14:38 +03:00
.gh-setting-members-currencylabel {
position: absolute;
display: flex !important;
align-items: center;
top: 0px;
left: 0px;
background: var(--main-color-content-greybg);
height: 20px;
font-weight: 500;
font-size: 1.3rem;
color: var(--middarkgrey);
text-transform: uppercase;
pointer-events: none;
min-width: 60px;
}
.gh-setting-members-currencylabel span {
margin-right: 0;
pointer-events: none;
padding-right: 3px;
}
.gh-input-group-tier-trial-disabled .gh-input-append {
border-color: #eceef0;
background-color: #fcfcfc;
}
.gh-input-group-tier-trial-disabled .gh-input-append:before {
background-color: #fcfcfc;
}
2021-05-17 18:14:38 +03:00
/* Stripe Connect modal */
.fullscreen-modal-stripe-connect {
max-width: 860px;
}
.fullscreen-modal-stripe-connect:not(.fullscreen-modal-stripe-connected) .gh-main-section {
2021-05-17 18:14:38 +03:00
margin: 0 0 -32px;
}
.fullscreen-modal-stripe-connect:not(.fullscreen-modal-stripe-connected) .gh-btn-stripe-disconnect,
.fullscreen-modal-stripe-connect:not(.fullscreen-modal-stripe-connected) .gh-stripe-guide-container {
display: none;
}
.fullscreen-modal-stripe-connect.fullscreen-modal-stripe-connected .modal-header {
display: none;
}
.fullscreen-modal-stripe-connected .modal-content {
background: linear-gradient(to top, #F6F6F6, #ffffff);
border-radius: 12px;
}
.fullscreen-modal-stripe-connected .gh-main-section {
margin-bottom: 0;
}
2021-05-17 18:14:38 +03:00
.gh-members-stripe-info-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.gh-members-stripe-info-header h4 {
font-weight: 600;
margin: 0;
padding: 0;
color: #555ABF;
}
.gh-members-stripe-info {
border-radius: 0.9rem;
background: color-mod(#555ABF a(12%));
padding: 12px;
width: 380px;
color: #555ABF;
}
.gh-members-stripe-badge {
width: 180px;
}
.gh-members-stripe-link,
.gh-members-stripe-link:hover {
color: #555ABF;
text-decoration: underline;
}
.gh-members-connectbutton-container {
margin-right: 4px;
2021-05-17 18:14:38 +03:00
}
.gh-members-connectbutton-container .for-switch {
line-height: 1em;
}
.gh-members-connectbutton-container .for-switch label {
width: 36px !important
}
.gh-members-connectbutton-container .for-switch input:checked + .input-toggle-component {
background: #F1946A;
}
.gh-members-connect-testmodeon {
color: #F1946A;
}
.gh-members-stripe-connect-token {
background: var(--whitegrey-l2);
min-height: unset;
height: 80px;
font-family: var(--font-family-mono);
font-size: 1.3rem;
resize: none;
}
.gh-members-connect-testmodelabel {
display: inline-block;
background: #f8e5b9;
color: #983705;
font-size: 1.3rem;
2021-05-17 18:14:38 +03:00
font-weight: 500;
line-height: 1em;
border-radius: 999px;
padding: 4px 8px;
}
.gh-members-connect-savecontainer {
height: 0px;
overflow-y: hidden;
transition: all 0.2s ease-in-out;
opacity: 0;
margin-top: 16px;
margin-bottom: 0;
}
.gh-members-connect-savecontainer.expanded {
margin-bottom: 20px;
}
.gh-members-connect-savecontainer.expanded {
height: 36px;
opacity: 1.0;
}
.gh-stripe-connected-container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 7vw;
2021-05-17 18:14:38 +03:00
}
.gh-stripe-connected-container h1 {
font-size: 2.6rem;
2021-05-17 18:14:38 +03:00
font-weight: 600;
text-align: center;
letter-spacing: -.5px;
margin: 20px 0 10px;
2021-05-17 18:14:38 +03:00
}
.gh-stripe-connected-info {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-bottom: 5vw;
}
.gh-stripe-site-title {
display: flex;
justify-content: center;
align-items: center;
2021-05-17 18:14:38 +03:00
}
.gh-stripe-connected-info p {
margin: 0 10px 0 0;
font-size: 1.5rem;
letter-spacing: -.1px;
2021-05-17 18:14:38 +03:00
}
.gh-btn-stripe-disconnect {
position: absolute;
top: 0;
left: 0;
z-index: 9999;
margin: 0;
}
.fullscreen-modal-stripe-connect .modal-content .close {
top: 32px;
right: 32px;
2021-05-17 18:14:38 +03:00
}
.gh-stripe-error-hasactivesub {
margin: 24px 24px -8px;
color: var(--red);
}
.gh-stripe-guide-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
}
.gh-stripe-guide-container > p {
text-transform: uppercase;
letter-spacing: .1em;
font-weight: 500;
margin-bottom: 20px;
}
.gh-logos-stripe-connect {
display: flex;
}
.gh-logo-squircle {
flex: 0 0 60px;
width: 60px;
height: 60px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
border-radius: 35%;
}
.gh-logo-squircle:first-of-type {
z-index: 101;
}
.gh-logo-squircle:nth-of-type(2) {
z-index: 102;
box-shadow: -1.5px 0 0 1.5px #fff;
margin-left: -3px;
}
.gh-stripe-guide {
display: flex;
width: 100%;
box-shadow: rgba(0,0,0,0.05) 0 14px 23px -18px;
color: var(--midgrey);
transition: all 0.2s ease-in-out;
}
.gh-stripe-guide:hover {
box-shadow: rgba(0,0,0,0.1) 0 14px 23px -18px;
}
.gh-stripe-guide-content {
display: flex;
flex-direction: column;
flex-grow: 1;
flex-basis: 100%;
padding: 20px;
overflow: hidden;
background-color: var(--white);
border-top: 1px;
border-bottom: 1px;
border-left: 1px;
border-right: 0;
border-style: solid;
border-color: var(--lightgrey-l2);
border-radius: 2px 0 0 2px;
}
.gh-stripe-guide-content-body {
display: flex;
flex-direction: column;
}
.gh-stripe-guide-content-body h3 {
font-size: 1.7rem;
font-weight: 600;
}
.gh-stripe-guide-content-body p {
font-size: 1.4rem;
}
.gh-stripe-guide-content-footer {
display: flex;
align-items: center;
}
.gh-stripe-guide-content-footer svg {
width: 20px;
height: 20px;
flex: 0 0 20px;
}
.gh-stripe-guide-content-footer h4,
.gh-stripe-guide-content-footer p {
margin: 0;
}
.gh-stripe-guide-content-footer h4 {
font-size: 1.4rem;
font-weight: 500;
margin-left: 5px;
margin-right: 6px;
letter-spacing: -0.02em;
}
.gh-stripe-guide-content-footer p {
font-weight: 500;
color: #15171a;
}
.gh-stripe-guide-content-footer span {
margin-right: 6px;
font-size: 3.2rem;
color: var(--black);
line-height: .8em;
}
.gh-stripe-guide-image {
position: relative;
flex-grow: 1;
min-width: 33%;
align-items: center;
}
.gh-stripe-guide-image img {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
border-radius: 0 2px 2px 0;
}
@media (max-width: 1080px) {
.gh-settings-members-pricetrialcont {
display: grid;
grid-template-columns: none;
grid-gap: 0px;
margin-bottom: 24px;
}
}
2021-05-17 18:14:38 +03:00
@media (max-width: 500px) {
.gh-members-stripe-info-header {
flex-direction: column;
align-items: stretch;
}
.gh-members-stripe-info-header h4 {
order: 2;
margin-top: 10px;
padding-top: 10px;
border-top: 1px solid var(--whitegrey);
}
.gh-members-stripe-badge {
order: 1;
/* margin: -10px 0 0 -10px; */
}
.gh-members-stripe-info {
width: 100%;
}
.gh-stripe-connected-container {
margin-top: 7rem;
}
.gh-stripe-connected-container h1 {
font-size: 2.4rem;
}
.gh-stripe-connected-info p {
font-size: 1.4rem;
}
.gh-stripe-guide-image {
display: none;
}
.gh-stripe-guide-content {
border-radius: 2px;
border: 1px solid var(--lightgrey-l2);
}
}
@media (max-width: 430px) {
.gh-stripe-site-title {
flex-direction: column;
}
.gh-members-connect-testmodelabel {
margin-top: 15px;
}
.gh-logo-squircle {
flex-basis: 40px;
width: 40px;
height: 40px;
}
2021-05-17 18:14:38 +03:00
}
.gh-setting-nossl {
border-top: 1px solid var(--whitegrey-d1);
display: flex;
flex-direction: column;
align-items: center;
margin: 16px -24px -12px;
}
.gh-setting-nossl-container {
display: flex;
flex-direction: column;
align-items: center;
padding: 32px;
text-align: center;
max-width: 520px;
}
.gh-setting-nossl-container svg {
width: 44px;
height: 44px;
margin-bottom: 12px;
}
.gh-setting-nossl-container svg path,
.gh-setting-nossl-container svg rect,
.gh-setting-nossl-container svg circle {
stroke-width: 1px;
}
.gh-setting-nossl-container h4 {
font-size: 1.5rem;
letter-spacing: 0;
font-weight: 600;
}
.gh-setting-nossl-container p {
margin: 8px 0 0;
color: var(--midgrey);
}
/* History log
/* ---------------------------------------------------------- */
.gh-history-filter-li {
height: 32px;
}
.gh-history-filter-li svg {
margin-right: 6px;
}
.gh-activity-log-actions {
padding-top: 12px;
padding-bottom: 12px;
}
.gh-activity-log-actions ul {
width: 240px;
}
.gh-activity-log-actions hr {
margin: 12px -20px;
}
.gh-activity-log-action-switch.for-switch.small label {
display: flex;
align-items: center;
justify-content: space-between;
width: unset !important;
height: unset !important;
}
.gh-activity-log-action-switch.for-switch.small .input-toggle-component {
position: relative;
width: 30px!important;
height: 18px!important;
}
.gh-activity-log-action-switch.for-switch.small .input-toggle-component:before {
width: 14px !important;
height: 14px !important;
}
.gh-activity-log-action-switch.for-switch.small input:checked+.input-toggle-component:before {
transform: translateX(12px);
}
.gh-history-container {
display: flex;
align-items: center;
}
.gh-history-container strong {
2022-08-24 14:49:06 +03:00
font-weight: 600;
}
.gh-history-action {
padding-right: 6px;
}
.gh-history-object {
padding-left: 6px;
}
.gh-history-object code {
2022-08-23 18:37:59 +03:00
background: none;
border: none;
color: var(--midgrey);
2022-08-23 18:37:59 +03:00
}
.gh-history-dash {
padding-left: 0;
padding-right: 0;
color: var(--lightgrey);
}
.gh-history-description {
font-size: 1.4rem;
color: var(--darkgrey);
white-space: nowrap;
margin-top: 2px;
font-weight: 500;
}
.gh-history-description a {
font-weight: 700;
}
.gh-history-name {
font-size: 1.35rem;
font-weight: 400;
margin-bottom: 0 !important;
color: var(--midgrey);
}
.gh-history-name a {
color: var(--midgrey) !important;
font-weight: 400;
}
.gh-history-name a:hover {
color: var(--darkgrey) !important;
}
.gh-history-datetime {
font-size: 1.2rem;
color: var(--midlightgrey);
}
.gh-history-table .user-list-item-figure {
position: relative;
height: 34px;
width: 34px;
margin-left: 0;
margin-right: 16px;
}
.gh-history-icon {
position: absolute;
display: flex;
align-items: center;
justify-content: center;
right: -7px;
bottom: -7px;
background: var(--white);
width: 22px;
height: 22px;
color: var(--midgrey);
border-radius: 999px;
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.12);
}
.gh-history-icon svg {
width: 12px;
height: 12px;
}
@media (max-width: 620px) {
.gh-history-table .user-list-item-figure {
display: none;
}
.gh-history-name {
font-size: 1.4rem !important;
min-width: 130px;
}
}
/* About /ghost/settings/about/
/* ---------------------------------------------------------- */
.gh-about-logo svg {
position: relative;
width: 120px;
height: auto;
}
.gh-about-logo {
border-bottom: 1px solid var(--lightgrey-l2);
padding-bottom: 10px;
margin-bottom: 16px;
}
.gh-about-modal .gh-about-logo {
margin: 4px 0 20px;
border-bottom: none;
padding-bottom: 0;
}
.gh-about-container {
display: grid;
grid-template-columns: 2fr 1fr;
grid-gap: 80px;
}
.gh-whats-new-canvas .gh-about-container {
display: flex;
grid-template-columns: unset;
grid-gap: unset;
margin: 0 auto;
max-width: 920px;
margin-top: 60px;
}
.gh-about-box {
position: sticky;
top: 96px;
right: 0;
display: flex;
flex-grow: 1;
flex-direction: column;
height: max-content;
border-radius: 3px;
min-width: 300px;
}
.gh-about-box.grey {
border: none;
background: var(--main-color-content-greybg);
}
.gh-env-details {
display: flex;
flex-grow: 1;
flex-direction: column;
padding: 24px 28px 28px;
}
.gh-about-container h2 {
font-size: 1.65rem;
line-height: 1.4em;
font-weight: 600;
border-bottom: 1px solid var(--lightgrey-l2);
padding-bottom: 12px;
margin-bottom: 12px;
}
.gh-env-list {
margin: 0;
padding: 0;
list-style: none;
}
.gh-env-list li {
margin: 0 0 4px;
font-size: 1.4rem;
line-height: 1.5em;
}
.gh-env-error {
margin: 1.2rem 0;
padding: 16px;
line-height: 1.4em;
border: none;
background: color-mod(var(--red) a(6%));
border-radius: 3px;
}
.gh-env-error a {
color: var(--red);
}
.gh-env-help {
max-width: 200px;
}
.gh-env-help .gh-btn {
margin: 4px 0;
}
@media (max-width: 670px) {
.gh-env-details {
flex-direction: column;
}
.gh-env-help {
margin: 1em 0;
max-width: none;
}
.gh-env-help .gh-btn {
display: inline-block;
}
}
.gh-about-content-actions {
display: none;
}
/* Upgrade
/* ---------------------------------------------------------- */
.gh-upgrade-notification {
padding-top: 1em;
}
.gh-upgrade-notification a {
text-decoration: underline;
}
.gh-about-modal .gh-upgrade-notification {
background: color-mod(var(--green) a(8%));
padding: 24px 28px 24px;
border-radius: 3px;
margin-bottom: 28px;
}
/* Copyright Info
/* ---------------------------------------------------------- */
.gh-copyright-info {
color: var(--midgrey);
font-size: 1.3rem;
border-top: 1px solid var(--lightgrey-l2);
padding-top: 16px;
margin-top: 16px;
line-height: 1.45em;
}
.gh-about-modal .gh-copyright-info {
margin: 4px 0 8px;
border-top: none;
}
/* Debug screen
/* ---------------------------------------------------------- */
.gh-email-debug .gh-post-analytics-header .gh-canvas-header-content {
border-bottom: none;
padding-bottom: 0;
}
.gh-email-debug-error {
display: flex;
margin-top: 20px;
padding: 12px 16px 12px 40px;
}
.gh-email-debug-error svg {
height: 20px !important;
margin-top: -2px;
}
.gh-email-debug-errortext {
flex-grow: 1;
margin-left: 4px;
}
.gh-email-debug-error h4 {
font-size: 1.5rem;
font-weight: 600;
margin: 0;
padding: 0;
}
.gh-email-debug-error button {
min-width: 80px;
}
.gh-email-debug-settingstab-icon {
width: 20px;
height: 20px;
margin-bottom: 11px;
margin-top: 2px;
}
.gh-email-debug-settingstab-icon svg path,
.gh-email-debug-settingstab-icon svg circle {
stroke-width: 2;
}
.gh-email-debug .gh-list {
border-bottom: none;
}
.gh-email-debug .gh-list thead,
.gh-email-debug .gh-list tbody {
width: 100%;
}
.gh-email-debug .gh-list tr:first-of-type .gh-list-data {
border-top: none;
}
.gh-email-debug .gh-list tr .gh-list-data:first-of-type {
padding-left: 0;
}
.gh-email-debug-col-member {
padding-left: 0;
width: 25%;
}
.gh-email-debug-member {
display: flex;
flex-wrap: nowrap;
align-items: center;
}
.gh-email-debug-failure {
display: flex;
}
.gh-email-debug-failure svg {
height: 16px;
width: 16px;
margin-right: 4px;
}
.gh-email-debug-failure-details {
display: flex;
flex-direction: column;
gap: 2px;
width: 100%;
}
.gh-email-debug-failure-codes {
display: flex;
gap: 20px;
}
.gh-email-debug-failure-code {
color: var(--midgrey);
}
.gh-email-debug-failure-code span {
color: var(--darkgrey);
font-weight: 500;
}
.gh-email-debug .gh-list-data {
height: 98px;
}
.gh-email-debug-permanent-failures .gh-list-data,
.gh-email-debug-temporary-failures .gh-list-data {
height: 80px;
}
.gh-email-debug-batch-col-status span {
display: inline-block;
position: relative;
padding-left: 16px;
color: var(--midlightgrey);
}
.gh-email-debug-batch-col-status span::before {
display: block;
position: absolute;
content: "";
top: 6px;
left: 0;
width: 8px;
height: 8px;
border-radius: 999px;
background: var(--midlightgrey);
}
.gh-email-debug-batch-col-status .failed {
color: color-mod(var(--red) l(-2%));
}
.gh-email-debug-batch-col-status .failed::before {
background: var(--red);
}
.gh-email-debug-batch-col-status .submitting {
color: var(--blue);
}
.gh-email-debug-batch-col-status .submitting::before {
background: var(--blue);
}
.gh-email-debug-batch-col-status .submitted {
color: var(--green);
}
.gh-email-debug-batch-col-status .submitted::before {
background: var(--green);
}
.gh-email-debug-batch-col-created,
.gh-email-debug-batch-col-details {
color: var(--midgrey);
}
.gh-email-debug-batch-col-created span,
.gh-email-debug-batch-col-segment span {
white-space: nowrap;
}
.gh-email-debug-batch-col-details .detailtext div {
word-break: break-all;
}
.gh-email-debug-batch-col-details .detailtext .noselect {
user-select: none;
}
.gh-email-debug-batch-col-details .detailtext div code {
white-space: unset;
word-break: normal;
user-select: text;
}
.gh-email-debug-batch-col-details .error {
color: color-mod(var(--red) l(-2%));
font-weight: unset;
}
.gh-email-debug-batch-col-segment span {
display: inline-block;
border-radius: 2px;
background: color-mod(var(--black) a(5%));
padding: 1px 6px;
color: var(--middarkgrey);
}
.gh-email-debug-batch-col-details span {
color: var(--darkgrey);
font-weight: 500;
}
.gh-email-debug-batch-col-details .download-icon {
width: 20px;
height: 20px;
margin-left: 20px;
}
.gh-email-debug-batch-col-details .download-icon path {
stroke: var(--midgrey);
}
.gh-email-debug-batch-col-details .detailtext {
flex-grow: 1;
}
.gh-email-debug-settings {
font-size: 1.3rem;
margin: 12px 0 20px;
}
Implemented email analytics retrying (#16273) fixes https://github.com/TryGhost/Team/issues/2562 New event fetching loops: - Reworked the analytics fetching algorithm. Instead of starting again where we stopped during the last fetching minus 30 minutes, we now just continue where we stopped. But with ms precision (because no longer database dependent after first fetch), and we stop at NOW - 1 minute to reduce chance of missing events. - Apart from that, a missing fetching loop is introduced. This fetches events that are older than 30 minutes, and just processes all events a second time to make sure we didn't skip any because of storage delays in the Mailgun API. - A new scheduled fetching loop, that allows us to schedule between a given start/end date (currently only persisted in memory, so stops after a reboot) UI and endpoint changes: - New UI to show the state of the analytics 'loops' - New endpoint to request the analytics loop status - New endpoint to schedule analytics - New endpoint to cancel scheduled analytics - Some number formatting improvements, and introduction of 'opened' count in debug screen - Live reload of data in the debug screen Other changes: - This also improves the support for maxEvents. We can now stop a fetching loop after x events without worrying about lost events. This is used to reduce the fetched events in the missing and scheduled event loop (e.g. when the main one is fetching lots of events, we skip the other loops). - Prevents fetching the same events over and over again if no new events come in (because we always started at the same begin timestamp). The code increases the begin timestamp with 1 second if it is safe to do so, to prevent the API from returning the same events over and over again. - Some optimisations in handing the processing results (less merges to reduce CPU usage in cases we have lots of events). Testing: - You can test with lots of events using the new mailgun mocking server (Toolbox repo `scripts/mailgun-mock-server`). This can also simulate events that are only returned after x minutes because of storage delays.
2023-02-20 18:44:13 +03:00
.gh-email-debug-settings .gh-type-number {
font-variant-numeric: tabular-nums;
}
.gh-email-debug-settings hr {
margin: 8px 0;
border-top-color: var(--whitegrey);
}
.gh-email-debug-settings tr td {
font-weight: 500;
padding: 6px 0;
}
.gh-email-debug-settings tr td:first-of-type {
Implemented email analytics retrying (#16273) fixes https://github.com/TryGhost/Team/issues/2562 New event fetching loops: - Reworked the analytics fetching algorithm. Instead of starting again where we stopped during the last fetching minus 30 minutes, we now just continue where we stopped. But with ms precision (because no longer database dependent after first fetch), and we stop at NOW - 1 minute to reduce chance of missing events. - Apart from that, a missing fetching loop is introduced. This fetches events that are older than 30 minutes, and just processes all events a second time to make sure we didn't skip any because of storage delays in the Mailgun API. - A new scheduled fetching loop, that allows us to schedule between a given start/end date (currently only persisted in memory, so stops after a reboot) UI and endpoint changes: - New UI to show the state of the analytics 'loops' - New endpoint to request the analytics loop status - New endpoint to schedule analytics - New endpoint to cancel scheduled analytics - Some number formatting improvements, and introduction of 'opened' count in debug screen - Live reload of data in the debug screen Other changes: - This also improves the support for maxEvents. We can now stop a fetching loop after x events without worrying about lost events. This is used to reduce the fetched events in the missing and scheduled event loop (e.g. when the main one is fetching lots of events, we skip the other loops). - Prevents fetching the same events over and over again if no new events come in (because we always started at the same begin timestamp). The code increases the begin timestamp with 1 second if it is safe to do so, to prevent the API from returning the same events over and over again. - Some optimisations in handing the processing results (less merges to reduce CPU usage in cases we have lots of events). Testing: - You can test with lots of events using the new mailgun mocking server (Toolbox repo `scripts/mailgun-mock-server`). This can also simulate events that are only returned after x minutes because of storage delays.
2023-02-20 18:44:13 +03:00
width: 30%;
white-space: nowrap;
color: var(--midgrey);
}
.gh-email-debug-settings-icon svg {
width: 14px;
height: 14px;
}
.gh-email-debug-settings-icon .check {
width: 18px;
height: 18px;
}
.gh-email-debug-settings-icon .check path {
stroke: var(--green);
stroke-width: 2.5;
}
.gh-email-debug-settings-icon .x path {
stroke: var(--midgrey);
}
Implemented email analytics retrying (#16273) fixes https://github.com/TryGhost/Team/issues/2562 New event fetching loops: - Reworked the analytics fetching algorithm. Instead of starting again where we stopped during the last fetching minus 30 minutes, we now just continue where we stopped. But with ms precision (because no longer database dependent after first fetch), and we stop at NOW - 1 minute to reduce chance of missing events. - Apart from that, a missing fetching loop is introduced. This fetches events that are older than 30 minutes, and just processes all events a second time to make sure we didn't skip any because of storage delays in the Mailgun API. - A new scheduled fetching loop, that allows us to schedule between a given start/end date (currently only persisted in memory, so stops after a reboot) UI and endpoint changes: - New UI to show the state of the analytics 'loops' - New endpoint to request the analytics loop status - New endpoint to schedule analytics - New endpoint to cancel scheduled analytics - Some number formatting improvements, and introduction of 'opened' count in debug screen - Live reload of data in the debug screen Other changes: - This also improves the support for maxEvents. We can now stop a fetching loop after x events without worrying about lost events. This is used to reduce the fetched events in the missing and scheduled event loop (e.g. when the main one is fetching lots of events, we skip the other loops). - Prevents fetching the same events over and over again if no new events come in (because we always started at the same begin timestamp). The code increases the begin timestamp with 1 second if it is safe to do so, to prevent the API from returning the same events over and over again. - Some optimisations in handing the processing results (less merges to reduce CPU usage in cases we have lots of events). Testing: - You can test with lots of events using the new mailgun mocking server (Toolbox repo `scripts/mailgun-mock-server`). This can also simulate events that are only returned after x minutes because of storage delays.
2023-02-20 18:44:13 +03:00
.gh-email-debug-schedule-analytics {
display: flex;
align-items: center;
width: max-content;
margin: .8rem 0 0;
color: var(--green-d1);
}
.gh-email-debug-schedule-analytics svg {
width: 1rem;
height: 1rem;
margin-right: 6px;
}
.gh-email-debug-schedule-analytics svg g {
stroke: var(--green-d1);
stroke-width: 3px;
}
.gh-email-debug-empty-list {
margin: 120px 40px;
text-align: center;
font-size: 1.3rem;
color: var(--midgrey);
}
.gh-email-debug-readmore-error {
display: inline-flex;
width: 100%;
}
.gh-email-debug-readmore-error label {
order: 3;
cursor: pointer;
}
.gh-email-debug-readmore-error .toggle-checkbox {
display: none;
}
.gh-email-debug-readmore-error span {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
overflow: hidden;
color: color-mod(var(--red) l(-2%));
word-break: break-all;
}
.gh-email-debug-readmore-error .toggle-checkbox:checked ~ span {
display: block;
-webkit-box-orient: unset;
-webkit-line-clamp: unset;
overflow: unset;
word-break: break-word;
}
.gh-email-debug-readmore-error .toggle-checkbox:checked ~ label {
display: none !important;
}
.gh-email-debug-readmore-error svg {
width: 12px;
height: 12px;
margin: 0;
}
.gh-email-debug-readmore-error svg circle {
fill: var(--midgrey);
}
.gh-email-debug-readmore-error label {
display: flex;
align-items: center;
padding: 0 4px;
border-radius: 2px;
height: 14px;
margin-top: 3px;
margin-left: 8px;
background: var(--whitegrey);
}
/* Announcement bar */
.gh-announcement-editor {
min-height: 120px;
overflow: auto;
padding: 6px 12px 6px 12px;
border: 1px solid var(--whitegrey-d1);
background: var(--white);
border-radius: 4px;
word-break: break-word;
}
.gh-announcement-editor.dark {
background: #15171A;
}
.gh-announcement-editor .koenig-lexical *,
.gh-announcement-editor .koenig-lexical-editor-input-placeholder {
font-family: var(--font-family) !important;
font-size: 1.4rem !important;
line-height: 1.5em !important;
}
.gh-announcement-editor .koenig-lexical p,
.gh-announcement-editor .koenig-lexical .kg-prose {
height: 108px;
color: var(--darkgrey);
font-size: 1.4rem !important;
line-height: 1.5em !important;
}
.gh-announcement-editor .koenig-lexical a {
display: inline;
padding: 0;
height: auto;
}