PluginProbe
Extendify / 1.17.1
Extendify v1.17.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 0.7.0 All 126 releases
extendify / src / Launch / launch.css

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

116 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Adding CSS classes should be done with consideration and rarely */
2 @tailwind base;
3 @tailwind components;
4 @tailwind utilities;
5
6 .extendify-launch {
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-design-main, #2c39bd);
11 --tw-translate-x: 0;
12 --tw-translate-y: 0;
13 --tw-rotate: 0;
14 --tw-skew-x: 0;
15 --tw-skew-y: 0;
16 --tw-scale-x: 1;
17 --tw-scale-y: 1;
18 }
19
20 .extendify-launch *,
21 .extendify-launch *:after,
22 .extendify-launch *:before {
23 box-sizing: border-box;
24 border: 0 solid #e5e7eb;
25 }
26
27 .extendify-launch {
28 -webkit-font-smoothing: antialiased;
29 }
30
31 .extendify-launch .button-focus {
32 @apply cursor-pointer rounded-lg text-center text-base no-underline outline-none ring-design-main ring-offset-2 ring-offset-white focus:shadow-none focus:ring-wp;
33 }
34
35 .extendify-launch .input-focus {
36 @apply rounded-lg text-base outline-none ring-design-main ring-offset-2 ring-offset-white focus:shadow-none focus:ring-wp;
37 }
38
39 .extendify-launch .button-card {
40 @apply m-0 block flex-1 overflow-hidden border p-4;
41 }
42
43 .extendify-launch .block-editor-block-preview__container {
44 overflow: visible !important;
45 }
46
47 .extendify-launch .spin {
48 animation: extendify-loading-spinner 1s linear infinite;
49 }
50
51 @keyframes extendify-loading-spinner {
52 to {
53 transform: rotate(1turn);
54 }
55 }
56 @keyframes extendify-loading-skeleton {
57 0% {
58 background-position: 0 0;
59 }
60 25% {
61 background-position: 100% 0;
62 }
63 50% {
64 background-position: 100% 100%;
65 }
66 75% {
67 background-position: 0 100%;
68 }
69 100% {
70 background-position: 0 0;
71 }
72 }
73
74 /* Checkbox styles for page selection step. */
75 .extendify-launch input[type="checkbox"]:not(:checked) {
76 @apply border border-gray-900;
77 }
78 .extendify-launch input[type="checkbox"]:focus {
79 @apply outline-none ring-wp ring-design-main ring-offset-2 ring-offset-white;
80 }
81 .extendify-launch input[type="checkbox"]:checked {
82 @apply bg-design-main;
83 }
84 .extendify-launch input[type="checkbox"]:checked::before {
85 content: "";
86 width: 0 !important;
87 height: 0 !important;
88 }
89
90 /* Goal checkbox */
91 .extendify-launch .goal-select .components-base-control__field {
92 @apply mb-0;
93 }
94 .block-editor-block-preview__content {
95 @apply left-0 top-0 m-0 overflow-visible;
96 transform-origin: top left;
97 text-align: initial;
98 min-height: auto;
99 }
100
101 html[dir="rtl"] .block-editor-block-preview__content {
102 transform-origin: top right;
103 }
104
105 body.site-assistant_page_extendify-launch,
106 body.site-launcher_page_extendify-launch {
107 background: white;
108 }
109
110 .site-assistant_page_extendify-launch #adminmenumain,
111 .site-launcher_page_extendify-launch #adminmenumain,
112 .site-assistant_page_extendify-launch #wpadminbar,
113 .site-launcher_page_extendify-launch #wpadminbar {
114 display: none;
115 }
116