| 1 |
@import "tailwindcss" source(none) important; |
| 2 |
@import "../tailwind.css" source(none); |
| 3 |
@source "."; |
| 4 |
|
| 5 |
:root { |
| 6 |
color-scheme: only light; |
| 7 |
} |
| 8 |
|
| 9 |
/* no-prefix */ |
| 10 |
.extendify-auto-launch { |
| 11 |
-webkit-font-smoothing: antialiased; |
| 12 |
} |
| 13 |
|
| 14 |
@layer base { |
| 15 |
p, |
| 16 |
a { |
| 17 |
@apply text-base; |
| 18 |
} |
| 19 |
} |
| 20 |
|
| 21 |
.button-focus { |
| 22 |
@apply rounded-lg text-center text-base no-underline outline-hidden ring-design-main ring-offset-2 ring-offset-white focus:shadow-none focus:ring-wp; |
| 23 |
} |
| 24 |
|
| 25 |
.input-focus { |
| 26 |
@apply rounded-lg text-base outline-hidden ring-design-main ring-offset-2 ring-offset-white focus:shadow-none focus:ring-wp; |
| 27 |
} |
| 28 |
|
| 29 |
.button-card { |
| 30 |
@apply m-0 block flex-1 overflow-hidden border p-4; |
| 31 |
} |
| 32 |
|
| 33 |
.block-editor-block-preview__container { |
| 34 |
overflow: visible !important; |
| 35 |
} |
| 36 |
|
| 37 |
.spin { |
| 38 |
animation: extendify-loading-spinner 1s linear infinite; |
| 39 |
} |
| 40 |
|
| 41 |
@keyframes extendify-loading-spinner { |
| 42 |
to { |
| 43 |
transform: rotate(1turn); |
| 44 |
} |
| 45 |
} |
| 46 |
@keyframes extendify-loading-skeleton { |
| 47 |
0% { |
| 48 |
background-position: 0 0; |
| 49 |
} |
| 50 |
25% { |
| 51 |
background-position: 100% 0; |
| 52 |
} |
| 53 |
50% { |
| 54 |
background-position: 100% 100%; |
| 55 |
} |
| 56 |
75% { |
| 57 |
background-position: 0 100%; |
| 58 |
} |
| 59 |
100% { |
| 60 |
background-position: 0 0; |
| 61 |
} |
| 62 |
} |
| 63 |
|
| 64 |
.status-animation { |
| 65 |
background-image: linear-gradient( |
| 66 |
to right, |
| 67 |
#1e1e1e 0%, |
| 68 |
#1e1e1e 25%, |
| 69 |
#999999 50%, |
| 70 |
#1e1e1e 75%, |
| 71 |
#1e1e1e 100% |
| 72 |
); |
| 73 |
background-size: 300% 100%; |
| 74 |
color: transparent; |
| 75 |
background-clip: text; |
| 76 |
-webkit-background-clip: text; |
| 77 |
animation: extendify-status-animation 1.8s linear infinite; |
| 78 |
} |
| 79 |
@keyframes extendify-status-animation { |
| 80 |
0% { |
| 81 |
background-position: 100% 50%; |
| 82 |
} |
| 83 |
100% { |
| 84 |
background-position: 0% 50%; |
| 85 |
} |
| 86 |
} |
| 87 |
|
| 88 |
/* Checkbox styles for page selection step. */ |
| 89 |
input[type="checkbox"]:not(:checked) { |
| 90 |
@apply border border-gray-900; |
| 91 |
} |
| 92 |
input[type="checkbox"]:focus { |
| 93 |
@apply outline-hidden ring-wp ring-design-main ring-offset-2 ring-offset-white; |
| 94 |
} |
| 95 |
input[type="checkbox"]:checked { |
| 96 |
@apply bg-design-main; |
| 97 |
} |
| 98 |
input[type="checkbox"]:checked::before { |
| 99 |
content: ""; |
| 100 |
width: 0 !important; |
| 101 |
height: 0 !important; |
| 102 |
} |
| 103 |
|
| 104 |
/* Goal checkbox */ |
| 105 |
.goal-select .components-base-control__field { |
| 106 |
@apply mb-0; |
| 107 |
} |
| 108 |
/* no-prefix */ |
| 109 |
.block-editor-block-preview__content { |
| 110 |
@apply left-0 top-0 m-0 overflow-visible; |
| 111 |
transform-origin: top left; |
| 112 |
text-align: initial; |
| 113 |
min-height: auto; |
| 114 |
} |
| 115 |
/* no-prefix */ |
| 116 |
html[dir="rtl"] .block-editor-block-preview__content { |
| 117 |
transform-origin: top right; |
| 118 |
} |
| 119 |
/* no-prefix */ |
| 120 |
body.site-assistant_page_extendify-auto-launch, |
| 121 |
body.site-launcher_page_extendify-auto-launch { |
| 122 |
background: white; |
| 123 |
} |
| 124 |
/* no-prefix */ |
| 125 |
.site-assistant_page_extendify-auto-launch #adminmenumain, |
| 126 |
.site-launcher_page_extendify-auto-launch #adminmenumain, |
| 127 |
.site-assistant_page_extendify-auto-launch #wpadminbar, |
| 128 |
.site-launcher_page_extendify-auto-launch #wpadminbar { |
| 129 |
display: none; |
| 130 |
} |
| 131 |
|