File size: 1,739 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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
@import "@automattic/typography/styles/variables";
@import "@wordpress/base-styles/breakpoints";
.account__username-form-toggle-enter {
opacity: 0.01;
transition: opacity 0.5s ease-in;
}
.account__username-form-toggle-enter-active {
opacity: 1;
}
.account__username-form-toggle-exit {
opacity: 1;
transition: opacity 0.01s ease-in;
}
.account__username-form-toggle-exit-active {
opacity: 0.01;
}
.account__settings-form select {
width: 100%;
}
.account__settings {
.form-fieldset {
margin-bottom: 30px;
&:last-child {
margin-bottom: 0;
}
}
.components-radio-control {
label {
font-size: $font-body-small;
}
}
}
.form-setting-explanation {
.account-email-field__enable-input.components-button.is-link {
color: inherit;
font-style: inherit;
}
}
.account__link-destination {
.components-base-control__field {
align-items: flex-start;
margin-top: 0.5em;
}
.components-toggle-control__label {
color: var(--color-text-subtle);
strong {
display: block;
}
}
.account__link-destination-label-extra {
font-style: italic;
margin-top: 0.1em;
}
.inline-support-link {
margin-left: 4px;
}
}
.account .form-input-validation {
padding-bottom: 0;
}
.account__confirm-username-dialog.dialog {
max-width: 600px;
.form-label {
font-size: $font-title-small;
margin-bottom: 16px;
}
p {
font-size: $font-body;
}
a {
color: inherit;
text-decoration: underline;
}
}
main.account {
.email-verification-banner {
margin-bottom: 16px;
margin-top: 0;
@media (min-width: $break-small) {
margin-top: 24px;
margin-bottom: 24px;
}
}
&:has(.email-verification-banner) .navigation-header {
@media (min-width: $break-small) {
padding-bottom: 0;
}
}
}
|