File size: 1,389 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
.external-link .gridicon.gridicons-external {
fill: currentColor;
width: 18px;
height: 18px;
}
.card.is-compact.settings__connected,
.card.is-compact.settings__disconnected {
display: flex;
align-items: center;
margin-bottom: 32px;
}
.settings__status-uninitialized {
height: 90px;
margin-bottom: 8px;
@include placeholder( --color-neutral-10 );
}
.settings__form-card {
margin-top: 8px;
background: none;
box-shadow: none;
}
.settings__form-uninitialized {
height: 64px;
@include placeholder( --color-neutral-10 );
}
.settings__link-external {
display: block;
margin-top: 16px;
font-style: italic;
}
.settings__disconnected .gridicon {
display: inline-block;
fill: var(--color-error);
width: 4rem;
height: 4rem;
}
.settings__title {
font-size: $font-title-small;
font-weight: 600;
margin: 16px 0 24px;
@include breakpoint-deprecated( ">660px" ) {
font-size: $font-headline-small;
margin: 32px 0;
}
}
.settings__details {
display: inline-block;
vertical-align: top;
margin-left: 1rem;
margin-top: 0.5rem;
}
.settings__icon {
max-width: 50px;
max-height: 50px;
}
.settings__details-head {
font-weight: 600;
margin-bottom: 0.3rem;
}
.is-section-jetpack-cloud-settings {
.empty-content__illustration {
filter: none;
min-height: 114px;
}
.empty-content__title,
.empty-content__line {
font-weight: 400;
line-height: inherit;
}
}
|