testio-tailwind 1.1.2 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/.eleventy.js +2 -5
  2. package/README.md +1 -37
  3. package/icon-classes-extractor.js +3 -3
  4. package/index.html +122 -73
  5. package/package.json +13 -29
  6. package/src/_includes/head.njk +3 -3
  7. package/src/assets/images/pencil.svg +11 -0
  8. package/src/assets/stylesheets/app.css +94 -69
  9. package/src/assets/stylesheets/components/alerts.css +1 -1
  10. package/src/assets/stylesheets/components/cards.css +9 -9
  11. package/src/assets/stylesheets/components/chat.css +9 -6
  12. package/src/assets/stylesheets/components/customer/customer_productcards.css +3 -3
  13. package/src/assets/stylesheets/components/devices.css +1 -1
  14. package/src/assets/stylesheets/components/forms.css +3 -10
  15. package/src/assets/stylesheets/components/header.css +1 -2
  16. package/src/assets/stylesheets/components/icons.css +25 -5
  17. package/src/assets/stylesheets/components/list_item.css +1 -2
  18. package/src/assets/stylesheets/components/lists.css +1 -2
  19. package/src/assets/stylesheets/components/loading_spinner.css +61 -79
  20. package/src/assets/stylesheets/components/metasidebar.css +1 -2
  21. package/src/assets/stylesheets/components/notifications.css +1 -1
  22. package/src/assets/stylesheets/components/select.css +1 -1
  23. package/src/assets/stylesheets/components/select2.css +1 -1
  24. package/src/assets/stylesheets/components/splitview.css +6 -6
  25. package/src/assets/stylesheets/components/tables.css +18 -18
  26. package/src/assets/stylesheets/components/tags.css +10 -3
  27. package/src/assets/stylesheets/components/test_header.css +3 -3
  28. package/src/assets/stylesheets/components/tester/tester_cards.css +4 -4
  29. package/src/assets/stylesheets/components/trix_editor.css +3 -3
  30. package/src/assets/stylesheets/components/typography.css +12 -11
  31. package/src/assets/stylesheets/tailwind_config.css +299 -0
  32. package/src/assets/stylesheets/tailwind_custom_utilities.css +268 -0
  33. package/src/index.pug +8 -39
  34. package/src/pages/components/banner_cards.haml +0 -10
  35. package/src/pages/components/loading_spinner.haml +5 -5
  36. package/src/pages/forms/search.haml +2 -2
  37. package/src/pages/icons/index.njk +35 -2
  38. package/src/static/icons.json +1 -0
  39. package/src/static/site.webmanifest +2 -2
  40. package/src/assets/stylesheets/postcss.config.js +0 -24
  41. package/src/assets/stylesheets/tailwind.config.js +0 -346
  42. /package/src/{static → assets/images}/android-chrome-192x192.png +0 -0
  43. /package/src/{static → assets/images}/android-chrome-512x512.png +0 -0
  44. /package/src/{static → assets/images}/apple-touch-icon.png +0 -0
  45. /package/src/{static → assets/images}/favicon-16x16.png +0 -0
  46. /package/src/{static → assets/images}/favicon-32x32.png +0 -0
@@ -1,346 +0,0 @@
1
- module.exports = {
2
- theme: {
3
- colors: {
4
- transparent: 'transparent',
5
- current: 'currentColor',
6
-
7
- black: '#1d1d1d',
8
- white: '#fff',
9
-
10
- gray: {
11
- 100: '#f2f2f2',
12
- 200: '#e6e6e6',
13
- 300: '#bfc1c5',
14
- 400: '#9fa2a8',
15
- 500: '#7c8188',
16
- 600: '#5f656d',
17
- 700: '#343A40',
18
- 800: '#262626',
19
- 900: '#222222',
20
- 'lightest': '#f2f2f2',
21
- 'lighter': '#e6e6e6',
22
- 'light': '#bfc1c5',
23
- DEFAULT: '#9fa2a8',
24
- 'dark': '#7c8188',
25
- 'darker': '#5f656d',
26
- 'darkest': '#262626',
27
- },
28
- red: {
29
- 200: '#FF3131',
30
- 'light': '#FF3131',
31
- 500: '#ec0404',
32
- DEFAULT: '#ec0404',
33
- },
34
- orange: {
35
- 500: '#f48d21',
36
- DEFAULT: '#f48d21',
37
- },
38
- green: {
39
- 500: '#8cbd24',
40
- DEFAULT: '#8cbd24',
41
- },
42
- yellow: {
43
- 500: '#d8ce0d',
44
- DEFAULT: '#d8ce0d',
45
- },
46
- blue: {
47
- 200: '#21bef4',
48
- 'light': '#21bef4',
49
- 500: '#326dd1',
50
- DEFAULT: '#326dd1',
51
- },
52
- petrol: {
53
- 500: '#236a84',
54
- DEFAULT: '#236a84',
55
- 800: '#263340',
56
- 'dark': '#263340',
57
- },
58
- teal: {
59
- 300: '#78eac1',
60
- 'lighter': '#78eac1',
61
- 400: '#6ddeba',
62
- 'light': '#6ddeba',
63
- 500: '#33ba9e',
64
- DEFAULT: '#33ba9e',
65
- },
66
- pink: {
67
- 500: '#e83e8c',
68
- DEFAULT: '#e83e8c',
69
- },
70
- purple: {
71
- 200: '#8988eb',
72
- 'light': '#8988eb',
73
- 500: '#7954ff',
74
- DEFAULT: '#7954ff',
75
- },
76
- },
77
- fontFamily: {
78
- 'sans': ['Source Sans Pro', 'sans-serif'],
79
- 'serif': ['Source Sans Pro', 'sans-serif'],
80
- 'mono': ['Source Code Pro', 'monospace'],
81
- 'display': ['Source Sans Pro', 'sans-serif'],
82
- 'body': ['Source Sans Pro', 'sans-serif']
83
- },
84
- borderWidth: {
85
- DEFAULT: '1px',
86
- '0': '0px',
87
- '1': '1px',
88
- '2': '2px',
89
- '4': '4px',
90
- '6': '6px',
91
- '10': '10px',
92
- },
93
- extend: {
94
- colors: {
95
- 'appbody': '#FFFFFF',
96
- 'black': '#1d1d1d',
97
- 'primary': '#236a84',
98
- 'link': '#236a84',
99
- 'link-hover': '#21bef4',
100
- 'header': '#1d1d1d',
101
- 'actionbar': '#236a84',
102
- 'bordercolor': '#e6e6e6',
103
- 'bordercolor-dark': '#D4D6DC',
104
- 'success': '#8cbd24',
105
- 'danger': '#ec0404',
106
- 'disabled': '#bfc1c5',
107
- 'disabled-dark': '#5f656d',
108
- 'placeholder': '#bfc1c5',
109
- 'info': '#326dd1',
110
- 'label-color': '#5f656d',
111
- 'label-inverted-color': '#bfc1c5',
112
- 'dark': '#222222',
113
- 'card': '#e6e6e6',
114
- 'critical': '#ec0404',
115
- 'high': '#d8ce0d',
116
- 'low': '#9fa2a8',
117
- 'visual': '#f48d21',
118
- 'content': '#326dd1',
119
- 'usability': '#263340',
120
- 'color-product-website': '#236a84',
121
- 'color-product-apple': '#326dd1',
122
- 'color-product-android': '#8cbd24',
123
- 'color-product-streaming': '#FF3131',
124
- 'color-product-gaming': '#f48d21',
125
- 'color-product-windows': '#d8ce0d',
126
- 'navigation-customer-color': '#262626',
127
- 'navlink-customer-hover-color': '#78eac1',
128
- 'navlink-customer-hover-bg': '#343A40',
129
- 'navlink-customer-active-bg': '#78eac1',
130
- 'navigation-tester-color': '#1d1d1d',
131
- 'navlink-tester-hover-color': '#7954ff',
132
- 'navlink-tester-hover-bg': '#343A40',
133
- 'navlink-tester-active-bg': '#7954ff',
134
- 'navigation-manager-color': '#ffffff',
135
- 'navlink-manager-hover-color': '#222222',
136
- 'navlink-manager-hover-bg': '#e6e6e6',
137
- 'navlink-manager-active-bg': '#6ddeba',
138
-
139
- },
140
- fontSize: {
141
- 'heading-1': ['2.25rem', '2.25rem'],
142
- 'heading-2': ['1.875rem', '1.875rem'],
143
- 'heading-3': ['1.563rem', '1.563rem'],
144
- 'heading-4': ['1.375rem', '1.375rem'],
145
- 'heading-5': ['1.125rem', '1.125rem'],
146
- 'heading-6': ['1rem', '1rem'],
147
- 'navlinks': ['14px', '16px'],
148
- 'base': ['14px', '18px'],
149
- 'buttons': ['14px', '16px'],
150
- 'label': ['13px', '13px'],
151
- 'label-sm': ['12px', '12px'],
152
- 'icon': '20px',
153
- 'icon-lg': '40px',
154
- 'icon-xl': '60px',
155
- 'icon-sm': '18px',
156
- 'icon-xs': '16px',
157
- 'icon-xxs': '14px',
158
- 'icon-xxxs': '10px',
159
- 'xl': ['4.25rem', '4.25rem'],
160
- 'lg': ['1.25rem', '1.25rem'],
161
- 'sm': ['0.813rem', '0.813rem'],
162
- 'xs': ['11px', '11px'],
163
- 'xxs': ['10px', '10px'],
164
- 'display-1': ['3.25rem','3.25rem'],
165
- 'display-2': ['3rem','3rem'],
166
- 'display-3': ['2.75rem','2.75rem'],
167
- 'display-4': ['2.5rem','2.5rem'],
168
- 'hidden': ['0rem','0rem'],
169
- },
170
- fontWeight: {
171
- 'headings': ['300'],
172
- 'navlinks': ['600'],
173
- 'display': ['300']
174
- },
175
- borderRadius: {
176
- DEFAULT: '5px',
177
- 'default': '0.3rem'
178
- },
179
- spacing: {
180
- 'spacing': '30px',
181
- 'xxs': '5px',
182
- 'xs': '10px',
183
- 'sm': '15px',
184
- 'md': '20px',
185
- 'lg': '50px',
186
- 'xl': '60px',
187
- 'xxl': '90px',
188
- 'spacing-2xl': '120px',
189
- 'spacing-3xl': '180px',
190
- 'spacing-4xl': '240px',
191
- 'spacing-5xl': '300px',
192
- 'spacing-6xl': '360px',
193
- 'spacing-7xl': '420px',
194
- 'spacing-8xl': '480px',
195
- 'btn': '40px',
196
- 'btn-xs': '20px',
197
- 'btn-sm': '30px',
198
- 'btn-lg': '90px',
199
- 'btn-xl': '150px',
200
- 'header' : '50px',
201
- 'icon' : '20px',
202
- 'icon-lg' : '40px',
203
- 'icon-xl' : '60px',
204
- 'icon-sm' : '18px',
205
- 'icon-xs' : '16px',
206
- 'icon-xxs' : '14px',
207
- 'icon-spacing' : '8px',
208
- 'heading' : '1rem',
209
- 'heading-lg' : '2rem',
210
- 'section-margin' : '30px',
211
- 'actionbar' : '70px',
212
- 'aside' : '20rem',
213
- 'sidebar' : '200px',
214
- 'grid-gutter' : '20px',
215
- '13': '3.25rem',
216
- '30': '7.25rem',
217
- '144': '36rem',
218
- '192': '48rem',
219
- '240': '60rem',
220
- 'body-padding-mobile': '15px',
221
- 'body-padding-tablet': '30px',
222
- 'body-padding-desktop': '50px',
223
- 'card-lg': '380px',
224
- 'card-md': '280px',
225
- 'card-sm': '180px',
226
- 'card-xs': '80px',
227
- '1px': '1px',
228
- 'modal-lg': '1200px',
229
- 'modal-md': '700px',
230
- 'modal-sm': '400px',
231
- 'progress-bar-thin-height': '2px',
232
- 'progress-bar-thick-height': '10px',
233
- 'meta-sidebar-width': '350px',
234
- 'popover-width': '15rem'
235
- },
236
- minWidth: {
237
- 'auto': 'auto',
238
- 'btn': '40px',
239
- 'btn-sm': '30px',
240
- 'cell': '10rem',
241
- '6': '1.5rem',
242
- '9': '2.25rem',
243
- '11': '2.75rem',
244
- '12': '3rem',
245
- '24': '6rem',
246
- '30': '7.25rem',
247
- '36': '9rem',
248
- '56': '14rem',
249
- 'spacing': '30px',
250
- 'xxs': '5px',
251
- 'xs': '10px',
252
- 'sm': '15px',
253
- 'md': '20px',
254
- 'lg': '50px',
255
- 'xl': '60px',
256
- 'xxl': '90px',
257
- 'spacing-2xl': '150px',
258
- 'spacing-3xl': '180px',
259
- 'spacing-4xl': '240px',
260
- 'spacing-5xl': '300px',
261
- 'spacing-6xl': '360px',
262
- 'spacing-7xl': '420px',
263
- 'spacing-8xl': '480px'
264
- },
265
- minHeight: {
266
- 'auto': 'auto',
267
- 'btn': '40px',
268
- 'btn-sm': '30px',
269
- '8': '2rem',
270
- '11': '2.75rem',
271
- '12': '3rem',
272
- '16': '4rem',
273
- '22': '5.5rem',
274
- '24': '6rem',
275
- '30': '7.25rem',
276
- '32': '8rem',
277
- '48': '12rem',
278
- '96': '24rem',
279
- '144': '36rem',
280
- 'spacing': '30px',
281
- 'xxs': '5px',
282
- 'xs': '10px',
283
- 'sm': '15px',
284
- 'md': '20px',
285
- 'lg': '50px',
286
- 'xl': '60px',
287
- 'xxl': '90px',
288
- },
289
- maxWidth: {
290
- '1/2': '50%',
291
- '2/3': '66%',
292
- '8': '2rem',
293
- '32': '8rem',
294
- '44': '11rem',
295
- '48': '12rem',
296
- '96': '24rem',
297
- '144': '36rem',
298
- '192': '48rem',
299
- 'xxl': '90px',
300
- 'card-lg': '380px',
301
- 'card-md': '280px',
302
- 'card-sm': '180px',
303
- 'card-xs': '80px',
304
- 'capped': '700px',
305
- },
306
- boxShadow: {
307
- DEFAULT: '0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 0px 0px 0 rgba(0, 0, 0, 0.05)',
308
- },
309
- backgroundImage: theme => ({
310
- 'pattern-disabled-bright': "url('/assets/images/pattern-striped-bright.png')",
311
- 'pattern-disabled-dark': "url('/assets/images/pattern-striped-dark.png')"
312
- }),
313
- gridTemplateColumns: {
314
- '3-1': '3fr 1fr',
315
- '1-3': '1fr 3fr',
316
- 'max-auto': 'max-content auto',
317
- '4-auto': 'auto auto auto auto',
318
- '3-auto': 'auto auto auto',
319
- '2-auto': 'auto auto',
320
- '2-auto-fr': 'auto auto 1fr',
321
- 'auto-fr-auto': 'auto 1fr auto',
322
- 'auto-fr-2-auto': 'auto 1fr auto auto',
323
- 'auto-fr': 'auto 1fr',
324
- 'auto': 'auto',
325
- '14': 'repeat(14, minmax(0, 1fr))',
326
- },
327
- gridTemplateRows: {
328
- 'auto': 'auto',
329
- 'auto-auto': 'auto auto',
330
- },
331
- screens: {
332
- '3xl': '1930px',
333
- },
334
- lineHeight: {
335
- 'ultratight': '0.5',
336
- },
337
- outline: {
338
- 'link-hover': '2px solid #21bef4',
339
- }
340
- }
341
- },
342
- plugins: [
343
- require('@tailwindcss/forms'),
344
- require('@tailwindcss/typography'),
345
- ]
346
- }
File without changes
File without changes