PluginProbe
Extendify / 3.0.6
Extendify v3.0.6
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.0.6, at src/AutoLaunch/auto-launch.css

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