PluginProbe
Extendify / 3.2.1
Extendify v3.2.1
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
extendify / src / AutoLaunch / auto-launch.css

auto-launch.css in Extendify 3.2.1, at src/AutoLaunch/auto-launch.css

132 lines 2.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 /* Follows the ink token so the shimmer stays legible on a dark palette. */
66 background-image: linear-gradient(
67 to right,
68 var(--ext-ui-status-color, var(--color-ui-ink)) 0%,
69 var(--ext-ui-status-color, var(--color-ui-ink)) 25%,
70 var(--color-ui-ink-muted) 50%,
71 var(--ext-ui-status-color, var(--color-ui-ink)) 75%,
72 var(--ext-ui-status-color, var(--color-ui-ink)) 100%
73 );
74 background-size: 300% 100%;
75 color: transparent;
76 background-clip: text;
77 -webkit-background-clip: text;
78 animation: extendify-status-animation 1.8s linear infinite;
79 }
80 @keyframes extendify-status-animation {
81 0% {
82 background-position: 100% 50%;
83 }
84 100% {
85 background-position: 0% 50%;
86 }
87 }
88
89 /* Checkbox styles for page selection step. */
90 input[type="checkbox"]:not(:checked) {
91 @apply border border-gray-900;
92 }
93 input[type="checkbox"]:focus {
94 @apply outline-hidden ring-wp ring-design-main ring-offset-2 ring-offset-white;
95 }
96 input[type="checkbox"]:checked {
97 @apply bg-design-main;
98 }
99 input[type="checkbox"]:checked::before {
100 content: "";
101 width: 0 !important;
102 height: 0 !important;
103 }
104
105 /* Goal checkbox */
106 .goal-select .components-base-control__field {
107 @apply mb-0;
108 }
109 /* no-prefix */
110 .block-editor-block-preview__content {
111 @apply left-0 top-0 m-0 overflow-visible;
112 transform-origin: top left;
113 text-align: initial;
114 min-height: auto;
115 }
116 /* no-prefix */
117 html[dir="rtl"] .block-editor-block-preview__content {
118 transform-origin: top right;
119 }
120 /* no-prefix */
121 body.site-assistant_page_extendify-auto-launch,
122 body.site-launcher_page_extendify-auto-launch {
123 background: white;
124 }
125 /* no-prefix */
126 .site-assistant_page_extendify-auto-launch #adminmenumain,
127 .site-launcher_page_extendify-auto-launch #adminmenumain,
128 .site-assistant_page_extendify-auto-launch #wpadminbar,
129 .site-launcher_page_extendify-auto-launch #wpadminbar {
130 display: none;
131 }
132