@arsedizioni/ars-utils 18.4.9 → 18.4.11
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 +13 -4
- package/clipper.ui/ui/document-menu/document-menu.component.d.ts +1 -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 +3 -3
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +10 -10
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +11 -11
|
@@ -185,7 +185,7 @@
|
|
|
185
185
|
.tile {
|
|
186
186
|
cursor: pointer !important;
|
|
187
187
|
padding: 10px 13px 10px 13px !important;
|
|
188
|
-
margin-bottom:
|
|
188
|
+
margin-bottom: 5px !important;
|
|
189
189
|
|
|
190
190
|
.body {
|
|
191
191
|
padding: 4px 6px;
|
|
@@ -286,13 +286,22 @@
|
|
|
286
286
|
|
|
287
287
|
.title {
|
|
288
288
|
text-decoration: none !important;
|
|
289
|
-
font-size:
|
|
289
|
+
font-size: 15px !important;
|
|
290
290
|
font-weight: 600;
|
|
291
291
|
min-height: 50px !important; // 2 lines;
|
|
292
|
-
|
|
292
|
+
max-height: 70px !important; // 3 lines;
|
|
293
293
|
min-width: 100%;
|
|
294
|
-
white-space:
|
|
294
|
+
white-space: initial !important;
|
|
295
295
|
overflow: hidden !important;
|
|
296
|
+
|
|
297
|
+
@supports (-webkit-line-clamp: 3) {
|
|
298
|
+
overflow: hidden;
|
|
299
|
+
text-overflow: ellipsis;
|
|
300
|
+
white-space: initial;
|
|
301
|
+
display: -webkit-box;
|
|
302
|
+
-webkit-line-clamp: 3;
|
|
303
|
+
-webkit-box-orient: vertical;
|
|
304
|
+
}
|
|
296
305
|
}
|
|
297
306
|
|
|
298
307
|
|
|
@@ -12,7 +12,7 @@ export declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
|
|
|
12
12
|
private changeDetector;
|
|
13
13
|
private clipperService;
|
|
14
14
|
useSelections: import("@angular/core").InputSignal<boolean>;
|
|
15
|
-
selectionSource: import("@angular/core").InputSignal<"
|
|
15
|
+
selectionSource: import("@angular/core").InputSignal<"none" | "bag" | "selection">;
|
|
16
16
|
protected selection: () => ClipperDocumentInfo[];
|
|
17
17
|
parent: import("@angular/core").InputSignal<ClipperSearchResultManager>;
|
|
18
18
|
item: import("@angular/core").InputSignal<ClipperDocumentInfo>;
|