PluginProbe
Extendify / 3.1.5
Extendify v3.1.5
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 / tailwind.css

tailwind.css in Extendify 3.1.5, at src/tailwind.css

226 lines 4.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* no-prefix */
2 *,
3 ::before,
4 ::after {
5 --tw-shadow: 0 0 #0000;
6 --tw-inset-shadow: 0 0 #0000;
7 --tw-ring-shadow: 0 0 #0000;
8 --tw-inset-ring-shadow: 0 0 #0000;
9 --tw-ring-offset-shadow: 0 0 #0000;
10 --tw-ring-offset-width: 0px;
11 --tw-ring-offset-color: #fff;
12 --tw-blur: ;
13 --tw-brightness: ;
14 --tw-contrast: ;
15 --tw-grayscale: ;
16 --tw-hue-rotate: ;
17 --tw-invert: ;
18 --tw-opacity: ;
19 --tw-saturate: ;
20 --tw-sepia: ;
21 --tw-drop-shadow: ;
22 }
23
24 @layer base {
25 *,
26 ::after,
27 ::before,
28 ::backdrop,
29 ::file-selector-button {
30 box-sizing: border-box;
31 border: 0px solid transparent;
32 }
33 button:not(:disabled) {
34 @apply cursor-pointer!;
35 }
36 }
37
38 @theme {
39 --breakpoint-xxs: 280px;
40 --breakpoint-xs: 480px;
41 --breakpoint-sm: 600px;
42 --breakpoint-md: 783px; /* Admin Bar goes big */
43 --breakpoint-lg: 961px; /* Sidebar auto folds */
44 --breakpoint-xl: 1152px;
45 --breakpoint-2xl: 1345px;
46 --breakpoint-3xl: 1600px;
47 --breakpoint-5xl: 2300px;
48
49 --color-gray-50: #fafafa;
50 --color-gray-100: #f0f0f0;
51 --color-gray-150: #eaeaea; /* This wasn't a variable but I saw it on buttons */
52 --color-gray-200: #e0e0e0; /* Used sparingly for light borders. */
53 --color-gray-300: #dddddd; /* Used for most borders. */
54 --color-gray-400: #cccccc;
55 --color-gray-500: #bbbbbb;
56 --color-gray-600: #949494; /* Meets 3:1 UI or large text contrast against white. */
57 --color-gray-700: #757575; /* Meets 4.6:1 text contrast against white. */
58 --color-gray-800: #2f2f2f;
59 --color-gray-900: #1e1e1e;
60
61 --color-override: var(--ext-override, #2271b1);
62
63 --color-wp-theme-bg: var(--wp-admin-theme-bg, #373b3f);
64 --color-wp-theme-main: var(--wp-admin-theme-main, #2271b1);
65 --color-wp-theme-accent: var(--wp-admin-theme-accent, #76ed85);
66
67 --color-editor-main: var(--wp-admin-theme-color, #3858e9);
68 --color-editor-main-darker: var(--wp-admin-theme-color-darker-10, #2145e6);
69 --color-editor-accent-darker: var(--wp-components-color-accent-darker-10);
70
71 --color-design-main: var(--ext-design-main, #2271b1);
72 --color-design-text: var(--ext-design-text, #ffffff);
73 --color-design-tertiary: var(--wp--preset--color--tertiary);
74
75 --color-banner-main: var(--ext-banner-main, #2271b1);
76 --color-banner-text: var(--ext-banner-text, #ffffff);
77
78 --color-extendify-main: #0b4a43;
79 --color-extendify-main-dark: #05312c;
80 --color-extendify-alert: #841010;
81 --color-extendify-gray: #5f5f5f;
82 --color-extendify-secondary: #cbc3f5;
83 --color-extendify-black: #1e1e1e;
84 --color-extendify-transparent-white: rgba(253, 253, 253, 0.88);
85 --color-extendify-transparent-black-100: rgba(0, 0, 0, 0.07);
86
87 --color-wp-alert-yellow: #f0b849;
88 --color-wp-alert-red: #cc1818;
89 --color-wp-alert-green: #4ab866;
90 --color-wp-notice-success: #eff9f1;
91 --color-wp-notice-error: #fcf0f0;
92 --color-wp-notice-neutral: #c3c4c7;
93 }
94
95 /* sizing */
96 @utility max-w-52 {
97 max-width: 13rem;
98 }
99 @utility max-w-72 {
100 max-width: 18rem;
101 }
102
103 @utility min-w-20 {
104 min-width: 5rem;
105 }
106 @utility min-w-30 {
107 min-width: 7.5rem;
108 }
109 @utility min-w-40 {
110 min-width: 10rem;
111 }
112 @utility min-w-48 {
113 min-width: 12rem;
114 }
115 @utility min-w-60 {
116 min-width: 15rem;
117 }
118 @utility min-w-sm {
119 min-width: 7rem;
120 }
121 @utility min-w-md {
122 min-width: 30rem;
123 }
124
125 @utility w-40vw {
126 width: 40vw;
127 }
128
129 @utility min-h-16 {
130 min-height: 4rem;
131 }
132 @utility min-h-20 {
133 min-height: 5rem;
134 }
135 @utility min-h-40 {
136 min-height: 10rem;
137 }
138 @utility min-h-48 {
139 min-height: 12rem;
140 }
141 @utility min-h-60 {
142 min-height: 15rem;
143 }
144 @utility min-h-half {
145 min-height: 50vh;
146 }
147
148 @utility max-h-half {
149 max-height: 50vh;
150 }
151
152 /* typography */
153 @utility text-xss {
154 font-size: 11px;
155 }
156 @utility text-3xl {
157 font-size: 2rem;
158 line-height: 2.5rem;
159 }
160 @utility leading-extra-tight {
161 line-height: 0.5;
162 }
163
164 /* z-index */
165 @utility z-high-1 {
166 z-index: 99998;
167 }
168 @utility z-high {
169 z-index: 99999;
170 }
171 @utility z-higher {
172 z-index: 999999;
173 }
174 @utility z-max-1 {
175 z-index: 2147483646;
176 }
177 @utility z-max {
178 z-index: 2147483647;
179 }
180
181 @utility ring-wp {
182 --tw-ring-width: var(--wp-admin-border-width-focus, 2px);
183 }
184
185 /* shadows */
186 @utility shadow-inner-sm {
187 box-shadow:
188 inset 0 0 0 1px rgba(0, 0, 0, 0.1),
189 0 3px 15px -3px rgba(0, 0, 0, 0.035),
190 0 0 1px rgba(0, 0, 0, 0.025);
191 }
192 @utility shadow-inner-md {
193 box-shadow:
194 inset 0 0 0 1px rgba(0, 0, 0, 0.2),
195 0 3px 15px -3px rgba(0, 0, 0, 0.025),
196 0 0 1px rgba(0, 0, 0, 0.02);
197 }
198 @utility shadow-modal {
199 box-shadow:
200 0 0 0 1px rgba(0, 0, 0, 0.1),
201 0 3px 15px -3px rgba(0, 0, 0, 0.035),
202 0 0 1px rgba(0, 0, 0, 0.05);
203 }
204 @utility shadow-button {
205 box-shadow: 0 0 0 1px var(--ext-design-main, #3959e9);
206 }
207 @utility shadow-toggle {
208 box-shadow:
209 0 0 0 2px #fff,
210 0 0 0 4px var(--ext-design-main, #3959e9);
211 }
212 @utility shadow-surface {
213 box-shadow: 0 5px 20px 10px rgba(0, 0, 0, 0.03);
214 }
215 @utility shadow-lg-flipped {
216 box-shadow: 0px -10px 30px -15px #00000025;
217 }
218 @utility shadow-2xl-flipped {
219 box-shadow: 0px -25px 50px -12px #00000025;
220 }
221 @utility shadow-vibe {
222 box-shadow:
223 0 4px 6px -1px rgb(0 0 0 / 0.1),
224 0 2px 4px -2px rgb(0 0 0 / 0.1);
225 }
226