@arsedizioni/ars-utils 18.4.72 → 18.4.73
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/clipper.ui/ui/clipper.scss +131 -0
- package/clipper.ui/ui/search-result-item/search-result-item.component.d.ts +2 -1
- package/esm2022/clipper.ui/ui/browser-dialog/browser-dialog.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/document/document.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/references/references.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/search-facets/search-facets.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/search-result-item/search-result-item.component.mjs +4 -3
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +11 -10
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -240,6 +240,137 @@
|
|
|
240
240
|
|
|
241
241
|
|
|
242
242
|
|
|
243
|
+
.info-1 {
|
|
244
|
+
position: absolute;
|
|
245
|
+
left: 0;
|
|
246
|
+
bottom: 0;
|
|
247
|
+
padding: 4px 8px;
|
|
248
|
+
background-color: var(--ars-color-overlay, rgba(255, 255, 255, 0.75));
|
|
249
|
+
color: var(--ars-color-text, #191c1b);
|
|
250
|
+
font-size: small !important;
|
|
251
|
+
font-weight: 700 !important;
|
|
252
|
+
text-transform: uppercase !important;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.info-2 {
|
|
256
|
+
position: absolute;
|
|
257
|
+
right: 0;
|
|
258
|
+
top: 0;
|
|
259
|
+
padding: 4px 8px;
|
|
260
|
+
background-color: var(--ars-color-overlay, rgba(255, 255, 255, 0.75));
|
|
261
|
+
color: var(--ars-color-accent, #7894ae);
|
|
262
|
+
font-size: small !important;
|
|
263
|
+
font-weight: 700 !important;
|
|
264
|
+
text-transform: uppercase !important;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.buttons {
|
|
268
|
+
position: absolute;
|
|
269
|
+
left: 0;
|
|
270
|
+
top: 0;
|
|
271
|
+
height: 42px;
|
|
272
|
+
|
|
273
|
+
.check,
|
|
274
|
+
.read {
|
|
275
|
+
background-color: var(--ars-color-primary, #00a293);
|
|
276
|
+
color: var(--ars-color-text-low, #e0e2e5);
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.check-selected {
|
|
280
|
+
background-color: var(--ars-color-primary-hi, #12c0ae);
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.date {
|
|
286
|
+
padding: 8px 0 6px 0 !important;
|
|
287
|
+
font-weight: 700 !important;
|
|
288
|
+
text-transform: uppercase !important;
|
|
289
|
+
|
|
290
|
+
.date-day {
|
|
291
|
+
color: var(--ars-accent, #7894ae);
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.date-divider {
|
|
295
|
+
width: 1px;
|
|
296
|
+
margin: 0 8px;
|
|
297
|
+
border-left: 1px solid var(--ars-color-color-divider, #757d87);
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.time {
|
|
302
|
+
font-size: small !important;
|
|
303
|
+
font-weight: 700 !important;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.title {
|
|
307
|
+
text-decoration: none !important;
|
|
308
|
+
font-size: 16px !important;
|
|
309
|
+
font-weight: 600;
|
|
310
|
+
min-height: 50px !important; // 2 lines;
|
|
311
|
+
max-height: 70px !important; // 3 lines;
|
|
312
|
+
min-width: 100%;
|
|
313
|
+
white-space: initial !important;
|
|
314
|
+
overflow: hidden !important;
|
|
315
|
+
|
|
316
|
+
@supports (-webkit-line-clamp: 3) {
|
|
317
|
+
overflow: hidden;
|
|
318
|
+
text-overflow: ellipsis;
|
|
319
|
+
white-space: initial;
|
|
320
|
+
display: -webkit-box;
|
|
321
|
+
-webkit-line-clamp: 3;
|
|
322
|
+
-webkit-box-orient: vertical;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
|
|
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: 10px 13px 10px 13px !important;
|
|
338
|
+
margin-bottom: 5px !important;
|
|
339
|
+
|
|
340
|
+
.body {
|
|
341
|
+
padding: 4px 6px;
|
|
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: 100px;
|
|
357
|
+
position: relative;
|
|
358
|
+
background-color: transparent;
|
|
359
|
+
overflow: hidden;
|
|
360
|
+
display: flex;
|
|
361
|
+
justify-content: center;
|
|
362
|
+
align-items: center;
|
|
363
|
+
border-radius: 8px;
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
img {
|
|
367
|
+
object-fit: cover;
|
|
368
|
+
width: 100%;
|
|
369
|
+
height: 100%;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
|
|
243
374
|
.info-1 {
|
|
244
375
|
position: absolute;
|
|
245
376
|
left: 0;
|
|
@@ -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;
|