| 1 |
/* Adding CSS classes should be done with consideration and rarely */ |
| 2 |
@tailwind base; |
| 3 |
@tailwind components; |
| 4 |
@tailwind utilities; |
| 5 |
|
| 6 |
.extendify-onboarding { |
| 7 |
--tw-ring-inset: var(--tw-empty, /*!*/ /*!*/); |
| 8 |
--tw-ring-offset-width: 0px; |
| 9 |
--tw-ring-offset-color: transparent; |
| 10 |
--tw-ring-color: var(--ext-partner-theme-primary-bg, #2c39bd); |
| 11 |
} |
| 12 |
|
| 13 |
.extendify-onboarding *, |
| 14 |
.extendify-onboarding *:after, |
| 15 |
.extendify-onboarding *:before { |
| 16 |
box-sizing: border-box; |
| 17 |
border: 0 solid #e5e7eb; |
| 18 |
} |
| 19 |
|
| 20 |
.extendify-onboarding { |
| 21 |
-webkit-font-smoothing: antialiased; |
| 22 |
} |
| 23 |
|
| 24 |
.extendify-onboarding .search-panel input[type="text"]::placeholder { |
| 25 |
@apply text-sm; |
| 26 |
} |
| 27 |
|
| 28 |
.extendify-onboarding .search-panel .icon-search { |
| 29 |
position: absolute; |
| 30 |
right: 16px; |
| 31 |
} |
| 32 |
.extendify-onboarding .button-focus { |
| 33 |
@apply outline-none cursor-pointer rounded-lg bg-transparent text-center text-base no-underline ring-partner-primary-bg ring-offset-2 ring-offset-white focus:shadow-none focus:ring-wp; |
| 34 |
} |
| 35 |
.extendify-onboarding .input-focus { |
| 36 |
@apply outline-none rounded-lg text-base ring-partner-primary-bg ring-offset-2 ring-offset-white focus:shadow-none focus:ring-wp; |
| 37 |
} |
| 38 |
|
| 39 |
.extendify-onboarding .button-card { |
| 40 |
@apply m-0 block flex-1 overflow-hidden border p-4; |
| 41 |
} |
| 42 |
.extendify-onboarding .preview-container .block-editor-block-preview__content { |
| 43 |
max-height: none !important; |
| 44 |
} |
| 45 |
|
| 46 |
.extendify-onboarding .spin { |
| 47 |
animation: extendify-loading-spinner 2.5s linear infinite; |
| 48 |
} |
| 49 |
|
| 50 |
@keyframes extendify-loading-spinner { |
| 51 |
from { |
| 52 |
transform: rotate(0deg); |
| 53 |
} |
| 54 |
to { |
| 55 |
transform: rotate(360deg); |
| 56 |
} |
| 57 |
} |
| 58 |
|
| 59 |
/* Checkbox styles for page selection step. */ |
| 60 |
.extendify-onboarding input[type="checkbox"] { |
| 61 |
@apply border border-gray-900; |
| 62 |
} |
| 63 |
.extendify-onboarding input[type="checkbox"]:focus { |
| 64 |
@apply outline-none ring-wp ring-partner-primary-bg ring-offset-2 ring-offset-white; |
| 65 |
} |
| 66 |
.extendify-onboarding input[type="checkbox"]:checked { |
| 67 |
@apply bg-partner-primary-bg; |
| 68 |
} |
| 69 |
.extendify-onboarding input[type="checkbox"]:checked::before { |
| 70 |
content: ""; |
| 71 |
} |
| 72 |
|
| 73 |
/* Goal checkbox */ |
| 74 |
.extendify-onboarding .goal-select .components-base-control__field { |
| 75 |
@apply mb-0; |
| 76 |
} |
| 77 |
|