@trackunit/css-tailwind 0.0.168 → 0.0.170

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/css-tailwind",
3
- "version": "0.0.168",
3
+ "version": "0.0.170",
4
4
  "main": "./index.cjs.js",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -7,6 +7,417 @@
7
7
  /* node_modules/.store/tailwindcss-npm-3.4.3-deb88ca0a1/node_modules/tailwindcss/utilities.css */
8
8
  @tailwind utilities;
9
9
 
10
+ /* node_modules/.store/react-image-gallery-virtual-e424d4762d/node_modules/react-image-gallery/styles/css/image-gallery.css */
11
+ .image-gallery-icon {
12
+ color: #fff;
13
+ transition: all 0.3s ease-out;
14
+ appearance: none;
15
+ background-color: transparent;
16
+ border: 0;
17
+ cursor: pointer;
18
+ outline: none;
19
+ position: absolute;
20
+ z-index: 4;
21
+ filter: drop-shadow(0 2px 2px #1a1a1a);
22
+ }
23
+ @media (hover: hover) and (pointer: fine) {
24
+ .image-gallery-icon:hover {
25
+ color: #337ab7;
26
+ }
27
+ .image-gallery-icon:hover .image-gallery-svg {
28
+ transform: scale(1.1);
29
+ }
30
+ }
31
+ .image-gallery-icon:focus {
32
+ outline: 2px solid #337ab7;
33
+ }
34
+ .image-gallery-using-mouse .image-gallery-icon:focus {
35
+ outline: none;
36
+ }
37
+ .image-gallery-fullscreen-button,
38
+ .image-gallery-play-button {
39
+ bottom: 0;
40
+ padding: 20px;
41
+ }
42
+ .image-gallery-fullscreen-button .image-gallery-svg,
43
+ .image-gallery-play-button .image-gallery-svg {
44
+ height: 28px;
45
+ width: 28px;
46
+ }
47
+ @media (max-width: 768px) {
48
+ .image-gallery-fullscreen-button,
49
+ .image-gallery-play-button {
50
+ padding: 15px;
51
+ }
52
+ .image-gallery-fullscreen-button .image-gallery-svg,
53
+ .image-gallery-play-button .image-gallery-svg {
54
+ height: 24px;
55
+ width: 24px;
56
+ }
57
+ }
58
+ @media (max-width: 480px) {
59
+ .image-gallery-fullscreen-button,
60
+ .image-gallery-play-button {
61
+ padding: 10px;
62
+ }
63
+ .image-gallery-fullscreen-button .image-gallery-svg,
64
+ .image-gallery-play-button .image-gallery-svg {
65
+ height: 16px;
66
+ width: 16px;
67
+ }
68
+ }
69
+ .image-gallery-fullscreen-button {
70
+ right: 0;
71
+ }
72
+ .image-gallery-play-button {
73
+ left: 0;
74
+ }
75
+ .image-gallery-left-nav,
76
+ .image-gallery-right-nav {
77
+ padding: 50px 10px;
78
+ top: 50%;
79
+ transform: translateY(-50%);
80
+ }
81
+ .image-gallery-left-nav .image-gallery-svg,
82
+ .image-gallery-right-nav .image-gallery-svg {
83
+ height: 120px;
84
+ width: 60px;
85
+ }
86
+ @media (max-width: 768px) {
87
+ .image-gallery-left-nav .image-gallery-svg,
88
+ .image-gallery-right-nav .image-gallery-svg {
89
+ height: 72px;
90
+ width: 36px;
91
+ }
92
+ }
93
+ @media (max-width: 480px) {
94
+ .image-gallery-left-nav .image-gallery-svg,
95
+ .image-gallery-right-nav .image-gallery-svg {
96
+ height: 48px;
97
+ width: 24px;
98
+ }
99
+ }
100
+ .image-gallery-left-nav[disabled],
101
+ .image-gallery-right-nav[disabled] {
102
+ cursor: disabled;
103
+ opacity: 0.6;
104
+ pointer-events: none;
105
+ }
106
+ .image-gallery-left-nav {
107
+ left: 0;
108
+ }
109
+ .image-gallery-right-nav {
110
+ right: 0;
111
+ }
112
+ .image-gallery {
113
+ -webkit-user-select: none;
114
+ -moz-user-select: none;
115
+ -ms-user-select: none;
116
+ -o-user-select: none;
117
+ user-select: none;
118
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
119
+ position: relative;
120
+ }
121
+ .image-gallery.fullscreen-modal {
122
+ background: #000;
123
+ bottom: 0;
124
+ height: 100%;
125
+ left: 0;
126
+ position: fixed;
127
+ right: 0;
128
+ top: 0;
129
+ width: 100%;
130
+ z-index: 5;
131
+ }
132
+ .image-gallery.fullscreen-modal .image-gallery-content {
133
+ top: 50%;
134
+ transform: translateY(-50%);
135
+ }
136
+ .image-gallery-content {
137
+ position: relative;
138
+ line-height: 0;
139
+ top: 0;
140
+ }
141
+ .image-gallery-content.fullscreen {
142
+ background: #000;
143
+ }
144
+ .image-gallery-content .image-gallery-slide .image-gallery-image {
145
+ max-height: calc(100vh - 80px);
146
+ }
147
+ .image-gallery-content.image-gallery-thumbnails-left .image-gallery-slide .image-gallery-image,
148
+ .image-gallery-content.image-gallery-thumbnails-right .image-gallery-slide .image-gallery-image {
149
+ max-height: 100vh;
150
+ }
151
+ .image-gallery-slide-wrapper {
152
+ position: relative;
153
+ }
154
+ .image-gallery-slide-wrapper.image-gallery-thumbnails-left,
155
+ .image-gallery-slide-wrapper.image-gallery-thumbnails-right {
156
+ display: inline-block;
157
+ width: calc(100% - 110px);
158
+ }
159
+ @media (max-width: 768px) {
160
+ .image-gallery-slide-wrapper.image-gallery-thumbnails-left,
161
+ .image-gallery-slide-wrapper.image-gallery-thumbnails-right {
162
+ width: calc(100% - 87px);
163
+ }
164
+ }
165
+ .image-gallery-slide-wrapper.image-gallery-rtl {
166
+ direction: rtl;
167
+ }
168
+ .image-gallery-slides {
169
+ line-height: 0;
170
+ overflow: hidden;
171
+ position: relative;
172
+ white-space: nowrap;
173
+ text-align: center;
174
+ }
175
+ .image-gallery-slide {
176
+ left: 0;
177
+ position: absolute;
178
+ top: 0;
179
+ width: 100%;
180
+ }
181
+ .image-gallery-slide.image-gallery-center {
182
+ position: relative;
183
+ }
184
+ .image-gallery-slide .image-gallery-image {
185
+ width: 100%;
186
+ object-fit: contain;
187
+ }
188
+ .image-gallery-slide .image-gallery-description {
189
+ background: rgba(0, 0, 0, 0.4);
190
+ bottom: 70px;
191
+ color: #fff;
192
+ left: 0;
193
+ line-height: 1;
194
+ padding: 10px 20px;
195
+ position: absolute;
196
+ white-space: normal;
197
+ }
198
+ @media (max-width: 768px) {
199
+ .image-gallery-slide .image-gallery-description {
200
+ bottom: 45px;
201
+ font-size: 0.8em;
202
+ padding: 8px 15px;
203
+ }
204
+ }
205
+ .image-gallery-bullets {
206
+ bottom: 20px;
207
+ left: 0;
208
+ margin: 0 auto;
209
+ position: absolute;
210
+ right: 0;
211
+ width: 80%;
212
+ z-index: 4;
213
+ }
214
+ .image-gallery-bullets .image-gallery-bullets-container {
215
+ margin: 0;
216
+ padding: 0;
217
+ text-align: center;
218
+ }
219
+ .image-gallery-bullets .image-gallery-bullet {
220
+ appearance: none;
221
+ background-color: transparent;
222
+ border: 1px solid #fff;
223
+ border-radius: 50%;
224
+ box-shadow: 0 2px 2px #1a1a1a;
225
+ cursor: pointer;
226
+ display: inline-block;
227
+ margin: 0 5px;
228
+ outline: none;
229
+ padding: 5px;
230
+ transition: all 0.2s ease-out;
231
+ }
232
+ @media (max-width: 768px) {
233
+ .image-gallery-bullets .image-gallery-bullet {
234
+ margin: 0 3px;
235
+ padding: 3px;
236
+ }
237
+ }
238
+ @media (max-width: 480px) {
239
+ .image-gallery-bullets .image-gallery-bullet {
240
+ padding: 2.7px;
241
+ }
242
+ }
243
+ .image-gallery-bullets .image-gallery-bullet:focus {
244
+ transform: scale(1.2);
245
+ background: #337ab7;
246
+ border: 1px solid #337ab7;
247
+ }
248
+ .image-gallery-bullets .image-gallery-bullet.active {
249
+ transform: scale(1.2);
250
+ border: 1px solid #fff;
251
+ background: #fff;
252
+ }
253
+ @media (hover: hover) and (pointer: fine) {
254
+ .image-gallery-bullets .image-gallery-bullet:hover {
255
+ background: #337ab7;
256
+ border: 1px solid #337ab7;
257
+ }
258
+ .image-gallery-bullets .image-gallery-bullet.active:hover {
259
+ background: #337ab7;
260
+ }
261
+ }
262
+ .image-gallery-thumbnails-wrapper {
263
+ position: relative;
264
+ }
265
+ .image-gallery-thumbnails-wrapper.thumbnails-swipe-horizontal {
266
+ touch-action: pan-y;
267
+ }
268
+ .image-gallery-thumbnails-wrapper.thumbnails-swipe-vertical {
269
+ touch-action: pan-x;
270
+ }
271
+ .image-gallery-thumbnails-wrapper.thumbnails-wrapper-rtl {
272
+ direction: rtl;
273
+ }
274
+ .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,
275
+ .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
276
+ display: inline-block;
277
+ vertical-align: top;
278
+ width: 100px;
279
+ }
280
+ @media (max-width: 768px) {
281
+ .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,
282
+ .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
283
+ width: 81px;
284
+ }
285
+ }
286
+ .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left .image-gallery-thumbnails,
287
+ .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right .image-gallery-thumbnails {
288
+ height: 100%;
289
+ width: 100%;
290
+ left: 0;
291
+ padding: 0;
292
+ position: absolute;
293
+ top: 0;
294
+ }
295
+ .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left .image-gallery-thumbnails .image-gallery-thumbnail,
296
+ .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right .image-gallery-thumbnails .image-gallery-thumbnail {
297
+ display: block;
298
+ margin-right: 0;
299
+ padding: 0;
300
+ }
301
+ .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left
302
+ .image-gallery-thumbnails
303
+ .image-gallery-thumbnail
304
+ + .image-gallery-thumbnail,
305
+ .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right
306
+ .image-gallery-thumbnails
307
+ .image-gallery-thumbnail
308
+ + .image-gallery-thumbnail {
309
+ margin-left: 0;
310
+ margin-top: 2px;
311
+ }
312
+ .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,
313
+ .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
314
+ margin: 0 5px;
315
+ }
316
+ @media (max-width: 768px) {
317
+ .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,
318
+ .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
319
+ margin: 0 3px;
320
+ }
321
+ }
322
+ .image-gallery-thumbnails {
323
+ overflow: hidden;
324
+ padding: 5px 0;
325
+ }
326
+ @media (max-width: 768px) {
327
+ .image-gallery-thumbnails {
328
+ padding: 3px 0;
329
+ }
330
+ }
331
+ .image-gallery-thumbnails .image-gallery-thumbnails-container {
332
+ cursor: pointer;
333
+ text-align: center;
334
+ white-space: nowrap;
335
+ }
336
+ .image-gallery-thumbnail {
337
+ display: inline-block;
338
+ border: 4px solid transparent;
339
+ transition: border 0.3s ease-out;
340
+ width: 100px;
341
+ background: transparent;
342
+ padding: 0;
343
+ }
344
+ @media (max-width: 768px) {
345
+ .image-gallery-thumbnail {
346
+ border: 3px solid transparent;
347
+ width: 81px;
348
+ }
349
+ }
350
+ .image-gallery-thumbnail + .image-gallery-thumbnail {
351
+ margin-left: 2px;
352
+ }
353
+ .image-gallery-thumbnail .image-gallery-thumbnail-inner {
354
+ display: block;
355
+ position: relative;
356
+ }
357
+ .image-gallery-thumbnail .image-gallery-thumbnail-image {
358
+ vertical-align: middle;
359
+ width: 100%;
360
+ line-height: 0;
361
+ }
362
+ .image-gallery-thumbnail.active,
363
+ .image-gallery-thumbnail:focus {
364
+ outline: none;
365
+ border: 4px solid #337ab7;
366
+ }
367
+ @media (max-width: 768px) {
368
+ .image-gallery-thumbnail.active,
369
+ .image-gallery-thumbnail:focus {
370
+ border: 3px solid #337ab7;
371
+ }
372
+ }
373
+ @media (hover: hover) and (pointer: fine) {
374
+ .image-gallery-thumbnail:hover {
375
+ outline: none;
376
+ border: 4px solid #337ab7;
377
+ }
378
+ }
379
+ @media (hover: hover) and (pointer: fine) and (max-width: 768px) {
380
+ .image-gallery-thumbnail:hover {
381
+ border: 3px solid #337ab7;
382
+ }
383
+ }
384
+ .image-gallery-thumbnail-label {
385
+ box-sizing: border-box;
386
+ color: #fff;
387
+ font-size: 1em;
388
+ left: 0;
389
+ line-height: 1em;
390
+ padding: 5%;
391
+ position: absolute;
392
+ top: 50%;
393
+ text-shadow: 0 2px 2px #1a1a1a;
394
+ transform: translateY(-50%);
395
+ white-space: normal;
396
+ width: 100%;
397
+ }
398
+ @media (max-width: 768px) {
399
+ .image-gallery-thumbnail-label {
400
+ font-size: 0.8em;
401
+ line-height: 0.8em;
402
+ }
403
+ }
404
+ .image-gallery-index {
405
+ background: rgba(0, 0, 0, 0.4);
406
+ color: #fff;
407
+ line-height: 1;
408
+ padding: 10px 20px;
409
+ position: absolute;
410
+ right: 0;
411
+ top: 0;
412
+ z-index: 4;
413
+ }
414
+ @media (max-width: 768px) {
415
+ .image-gallery-index {
416
+ font-size: 0.8em;
417
+ padding: 5px 10px;
418
+ }
419
+ }
420
+
10
421
  /* libs/css/core/src/lib/theme/custom-properties.css */
11
422
  :root {
12
423
  --z-hidden: -1;