@arsedizioni/ars-utils 18.4.72 → 18.4.74

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.
@@ -324,6 +324,138 @@
324
324
  }
325
325
 
326
326
 
327
+ }
328
+
329
+
330
+ .stripe:hover {
331
+ background-color: var(--ars-item-hover-background-color, #eaecef);
332
+ border-radius: 12px;
333
+ }
334
+
335
+ .stripe {
336
+ cursor: pointer !important;
337
+ padding: 5px 10px 5px 10px !important;
338
+ margin-bottom: 5px !important;
339
+
340
+ .body {
341
+ padding: 0px 15px !important;
342
+ }
343
+
344
+ .image-mark {
345
+ border-left: 6px solid transparent;
346
+ margin: 8px 0;
347
+
348
+ }
349
+
350
+ .image-mark-unread {
351
+ border-left-color: var(--ars-color-error, #ff5449);
352
+ margin: 8px 0;
353
+ }
354
+
355
+ .image {
356
+ width: 150px !important;
357
+ height: 70px !important;
358
+ position: relative;
359
+ background-color: transparent;
360
+ overflow: hidden;
361
+ display: flex;
362
+ justify-content: center;
363
+ align-items: center;
364
+ border-radius: 8px;
365
+
366
+
367
+ img {
368
+ object-fit: cover;
369
+ width: 100%;
370
+ height: 100%;
371
+ }
372
+
373
+
374
+
375
+ .info-1 {
376
+ position: absolute;
377
+ left: 0;
378
+ bottom: 0;
379
+ padding: 4px 8px;
380
+ background-color: var(--ars-color-overlay, rgba(255, 255, 255, 0.75));
381
+ color: var(--ars-color-text, #191c1b);
382
+ font-size: small !important;
383
+ font-weight: 700 !important;
384
+ text-transform: uppercase !important;
385
+ }
386
+
387
+ .info-2 {
388
+ position: absolute;
389
+ right: 0;
390
+ top: 0;
391
+ padding: 4px 8px;
392
+ background-color: var(--ars-color-overlay, rgba(255, 255, 255, 0.75));
393
+ color: var(--ars-color-accent, #7894ae);
394
+ font-size: x-small !important;
395
+ font-weight: 700 !important;
396
+ text-transform: uppercase !important;
397
+ }
398
+
399
+ .buttons {
400
+ position: absolute;
401
+ left: 0;
402
+ top: 0;
403
+ height: 42px;
404
+
405
+ .check,
406
+ .read {
407
+ background-color: var(--ars-color-primary, #00a293);
408
+ color: var(--ars-color-text-low, #e0e2e5);
409
+ }
410
+
411
+ .check-selected {
412
+ background-color: var(--ars-color-primary-hi, #12c0ae);
413
+ }
414
+ }
415
+ }
416
+
417
+ .date {
418
+ padding: 0 !important;
419
+ font-weight: 700 !important;
420
+ text-transform: uppercase !important;
421
+
422
+ .date-day {
423
+ color: var(--ars-accent, #7894ae);
424
+ }
425
+
426
+ .date-divider {
427
+ width: 1px;
428
+ margin: 0 8px;
429
+ border-left: 1px solid var(--ars-color-color-divider, #757d87);
430
+ }
431
+ }
432
+
433
+ .time {
434
+ font-size: small !important;
435
+ font-weight: 700 !important;
436
+ }
437
+
438
+ .title {
439
+ text-decoration: none !important;
440
+ font-size: 16px !important;
441
+ font-weight: 600;
442
+ min-height: 50px !important; // 2 lines;
443
+ max-height: 70px !important; // 3 lines;
444
+ min-width: 100%;
445
+ white-space: initial !important;
446
+ overflow: hidden !important;
447
+
448
+ @supports (-webkit-line-clamp: 3) {
449
+ overflow: hidden;
450
+ text-overflow: ellipsis;
451
+ white-space: initial;
452
+ display: -webkit-box;
453
+ -webkit-line-clamp: 3;
454
+ -webkit-box-orient: vertical;
455
+ }
456
+ }
457
+
458
+
327
459
  }
328
460
 
329
461
  .badge,
@@ -6,7 +6,8 @@ import { ClipperSearchResultManager } from '../search-result-manager/search-resu
6
6
  import * as i0 from "@angular/core";
7
7
  export declare enum ClipperSearchResultItemDisplayMode {
8
8
  List = 1,
9
- Tile = 2
9
+ Tile = 2,
10
+ Stripe = 3
10
11
  }
11
12
  export declare class ClipperSearchResultItemComponent implements OnInit {
12
13
  contextMenuTrigger: MatMenuTrigger;