PluginProbe
Extendify / 3.1.2
Extendify v3.1.2
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 0.7.0 All 126 releases
extendify / src / Launch / launch.css

launch.css in Extendify 3.1.2, at src/Launch/launch.css

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