@net7/boilerplate-arianna 4.0.0 → 4.2.0
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/esm2020/lib/components/extended-tree/extended-tree.mjs +4 -4
- package/esm2020/lib/components/index.mjs +2 -1
- package/esm2020/lib/components/scheda-search/scheda-search.mjs +18 -0
- package/esm2020/lib/config/apollo.config.mjs +5 -1
- package/esm2020/lib/config-types/arianna/layouts.mjs +1 -1
- package/esm2020/lib/data-sources/aw-facets-wrapper.ds.mjs +1 -1
- package/esm2020/lib/data-sources/extended-tree.ds.mjs +25 -4
- package/esm2020/lib/data-sources/home-facets-wrapper.ds.mjs +14 -2
- package/esm2020/lib/data-sources/index.mjs +2 -1
- package/esm2020/lib/data-sources/scheda-search.ds.mjs +141 -0
- package/esm2020/lib/event-handlers/extended-tree.eh.mjs +11 -3
- package/esm2020/lib/event-handlers/index.mjs +2 -1
- package/esm2020/lib/event-handlers/scheda-search.eh.mjs +15 -0
- package/esm2020/lib/layouts/home-layout/home-layout.ds.mjs +5 -1
- package/esm2020/lib/layouts/home-layout/home-layout.mjs +3 -3
- package/esm2020/lib/layouts/scheda-layout/scheda-layout.config.mjs +2 -1
- package/esm2020/lib/layouts/scheda-layout/scheda-layout.ds.mjs +65 -8
- package/esm2020/lib/layouts/scheda-layout/scheda-layout.eh.mjs +104 -14
- package/esm2020/lib/layouts/scheda-layout/scheda-layout.mjs +4 -3
- package/esm2020/lib/n7-boilerplate-arianna.module.mjs +7 -3
- package/fesm2015/net7-boilerplate-arianna.mjs +395 -37
- package/fesm2015/net7-boilerplate-arianna.mjs.map +1 -1
- package/fesm2020/net7-boilerplate-arianna.mjs +404 -37
- package/fesm2020/net7-boilerplate-arianna.mjs.map +1 -1
- package/lib/components/extended-tree/extended-tree.d.ts +1 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/components/scheda-search/scheda-search.d.ts +28 -0
- package/lib/config-types/arianna/layouts.d.ts +20 -0
- package/lib/data-sources/extended-tree.ds.d.ts +7 -1
- package/lib/data-sources/home-facets-wrapper.ds.d.ts +1 -0
- package/lib/data-sources/index.d.ts +1 -0
- package/lib/data-sources/scheda-search.ds.d.ts +9 -0
- package/lib/event-handlers/index.d.ts +1 -0
- package/lib/event-handlers/scheda-search.eh.d.ts +6 -0
- package/lib/layouts/scheda-layout/scheda-layout.ds.d.ts +6 -0
- package/lib/layouts/scheda-layout/scheda-layout.eh.d.ts +2 -0
- package/lib/n7-boilerplate-arianna.module.d.ts +7 -6
- package/package.json +1 -1
- package/src/lib/styles/arianna/components/_extended-tree.scss +35 -2
- package/src/lib/styles/arianna/components/_scheda-search.scss +119 -0
- package/src/lib/styles/arianna/layouts/_home-layout.scss +16 -4
- package/src/lib/styles/arianna/layouts/_scheda-layout.scss +5 -2
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Anchor, InnerTitleData, InputSelectData, InputTextData, PaginationData } from '@net7/components';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare type SchedaSearchData = {
|
|
4
|
+
header: InnerTitleData;
|
|
5
|
+
input: InputTextData;
|
|
6
|
+
items: {
|
|
7
|
+
icon: string;
|
|
8
|
+
thumbnail?: string;
|
|
9
|
+
label: string;
|
|
10
|
+
anchor: Anchor;
|
|
11
|
+
breadcrumbs?: {
|
|
12
|
+
items: {
|
|
13
|
+
label: string;
|
|
14
|
+
anchor: Anchor;
|
|
15
|
+
}[];
|
|
16
|
+
};
|
|
17
|
+
}[];
|
|
18
|
+
pagination: PaginationData;
|
|
19
|
+
limitSelect?: InputSelectData;
|
|
20
|
+
fallback?: string;
|
|
21
|
+
loading?: boolean;
|
|
22
|
+
};
|
|
23
|
+
export declare class SchedaSearchComponent {
|
|
24
|
+
data: SchedaSearchData;
|
|
25
|
+
emit: (type: string, payload?: any) => void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SchedaSearchComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SchedaSearchComponent, "aw-scheda-search", never, { "data": "data"; "emit": "emit"; }, {}, never, never, false>;
|
|
28
|
+
}
|
|
@@ -28,6 +28,11 @@ export interface ConfigAriannaHomeLayout {
|
|
|
28
28
|
'autocomplete-fallback': string;
|
|
29
29
|
/** item preview (right sidebar) fallback text */
|
|
30
30
|
'linked-objects-fallback': string;
|
|
31
|
+
/** facets view all links */
|
|
32
|
+
'view-all-links'?: {
|
|
33
|
+
label?: string;
|
|
34
|
+
enabled?: boolean;
|
|
35
|
+
};
|
|
31
36
|
}
|
|
32
37
|
declare type StringLimitConfig = {
|
|
33
38
|
/** text limit */
|
|
@@ -103,6 +108,21 @@ export interface ConfigAriannaSchedaLayout {
|
|
|
103
108
|
};
|
|
104
109
|
/** extended tree lite version? */
|
|
105
110
|
lite?: boolean;
|
|
111
|
+
/** extended tree empty state fallback text */
|
|
112
|
+
fallback?: string;
|
|
113
|
+
};
|
|
114
|
+
/** internal search section */
|
|
115
|
+
'internal-search'?: {
|
|
116
|
+
/** internal search section title */
|
|
117
|
+
title: string;
|
|
118
|
+
/** internal search search input */
|
|
119
|
+
search: {
|
|
120
|
+
placeholder: string;
|
|
121
|
+
};
|
|
122
|
+
/** internal search lite version? */
|
|
123
|
+
lite?: boolean;
|
|
124
|
+
/** internal search empty state fallback text */
|
|
125
|
+
fallback?: string;
|
|
106
126
|
};
|
|
107
127
|
/** image viewer navigation */
|
|
108
128
|
'image-viewer-nav'?: {
|
|
@@ -3,22 +3,28 @@ import { ExtendedTreeData } from '../components/extended-tree/extended-tree';
|
|
|
3
3
|
declare type ParentResponse = {
|
|
4
4
|
label: string;
|
|
5
5
|
};
|
|
6
|
-
declare type NodesResponse = {
|
|
6
|
+
export declare type NodesResponse = {
|
|
7
7
|
items: {
|
|
8
8
|
img?: string;
|
|
9
9
|
label: string;
|
|
10
10
|
id: string;
|
|
11
11
|
document_type: string;
|
|
12
12
|
document_classification: string;
|
|
13
|
+
breadcrumbs?: {
|
|
14
|
+
label: string;
|
|
15
|
+
link: string;
|
|
16
|
+
}[];
|
|
13
17
|
}[];
|
|
14
18
|
totalCount: number;
|
|
15
19
|
};
|
|
16
20
|
export declare class AwExtendedTreeDS extends DataSource {
|
|
21
|
+
searchIsOpen: boolean;
|
|
17
22
|
protected transform: ({ parent, nodes }: {
|
|
18
23
|
parent: ParentResponse;
|
|
19
24
|
nodes: NodesResponse;
|
|
20
25
|
}) => ExtendedTreeData;
|
|
21
26
|
setLoading(loading: boolean): void;
|
|
27
|
+
toggleSearch(): void;
|
|
22
28
|
private getPagination;
|
|
23
29
|
private getPaginationLinks;
|
|
24
30
|
}
|
|
@@ -22,6 +22,7 @@ export * from './scheda-pdf.ds';
|
|
|
22
22
|
export * from './tree.ds';
|
|
23
23
|
export * from './extended-tree.ds';
|
|
24
24
|
export * from './scheda-image-navigator.ds';
|
|
25
|
+
export * from './scheda-search.ds';
|
|
25
26
|
export * from './search-layout-tabs.ds';
|
|
26
27
|
export * from './aw-facets-wrapper.ds';
|
|
27
28
|
export * from './gallery-results.ds';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DataSource } from '@net7/core';
|
|
2
|
+
import { SchedaSearchData } from '../components/scheda-search/scheda-search';
|
|
3
|
+
import { NodesResponse } from './extended-tree.ds';
|
|
4
|
+
export declare class AwSchedaSearchDS extends DataSource {
|
|
5
|
+
protected transform: (nodes: NodesResponse) => SchedaSearchData;
|
|
6
|
+
setLoading(loading: boolean): void;
|
|
7
|
+
private getPagination;
|
|
8
|
+
private getPaginationLinks;
|
|
9
|
+
}
|
|
@@ -11,6 +11,7 @@ export * from './scheda-dropdown.eh';
|
|
|
11
11
|
export * from './scheda-pdf.eh';
|
|
12
12
|
export * from './extended-tree.eh';
|
|
13
13
|
export * from './scheda-image-navigator.eh';
|
|
14
|
+
export * from './scheda-search.eh';
|
|
14
15
|
export * from './search-layout-tabs.eh';
|
|
15
16
|
export * from './aw-facets-wrapper.eh';
|
|
16
17
|
export * from './gallery-results.eh';
|
|
@@ -22,6 +22,7 @@ export declare class AwSchedaLayoutDS extends LayoutDataSource {
|
|
|
22
22
|
hasRelatedEntities: boolean;
|
|
23
23
|
hasSimilarItems: boolean;
|
|
24
24
|
hasExtendedTree: boolean;
|
|
25
|
+
hasInternalSearch: boolean;
|
|
25
26
|
hasDigitalObjects: boolean;
|
|
26
27
|
digitalObjects: any;
|
|
27
28
|
currentDigitalObject: any;
|
|
@@ -41,6 +42,9 @@ export declare class AwSchedaLayoutDS extends LayoutDataSource {
|
|
|
41
42
|
extendedTreeParams: {
|
|
42
43
|
[key: string]: string;
|
|
43
44
|
};
|
|
45
|
+
internalSearchParams: {
|
|
46
|
+
[key: string]: string;
|
|
47
|
+
};
|
|
44
48
|
lastResponse: any;
|
|
45
49
|
/** Name of query that should be used (chosen in config) */
|
|
46
50
|
private getTreeQuery;
|
|
@@ -85,6 +89,7 @@ export declare class AwSchedaLayoutDS extends LayoutDataSource {
|
|
|
85
89
|
*/
|
|
86
90
|
loadContent(response: any): void;
|
|
87
91
|
loadExtendedTree(): void;
|
|
92
|
+
loadInternalSearch(): void;
|
|
88
93
|
loadTitleNavigation(): void;
|
|
89
94
|
loadDocumentType(): void;
|
|
90
95
|
/**
|
|
@@ -101,4 +106,5 @@ export declare class AwSchedaLayoutDS extends LayoutDataSource {
|
|
|
101
106
|
}[];
|
|
102
107
|
changeDigitalObject(payload: any): void;
|
|
103
108
|
private normalizeDigitalObjects;
|
|
109
|
+
private _normalizeItems;
|
|
104
110
|
}
|
|
@@ -8,10 +8,12 @@ export declare class AwSchedaLayoutEH extends EventHandler {
|
|
|
8
8
|
private router;
|
|
9
9
|
private treeLoaded$;
|
|
10
10
|
private extendedTreeChanged$;
|
|
11
|
+
private schedaSearchChanged$;
|
|
11
12
|
private pageInputValue;
|
|
12
13
|
listen(): void;
|
|
13
14
|
private listenRoute;
|
|
14
15
|
private listenExtendedTree;
|
|
16
|
+
private listenSchedaSearch;
|
|
15
17
|
private listenRouteQueryParams;
|
|
16
18
|
private loadNavigation;
|
|
17
19
|
private parseDigitalObjects$;
|
|
@@ -17,14 +17,15 @@ import * as i13 from "./components/scheda-dropdown/scheda-dropdown";
|
|
|
17
17
|
import * as i14 from "./components/smart-breadcrumbs/smart-breadcrumbs";
|
|
18
18
|
import * as i15 from "./components/extended-tree/extended-tree";
|
|
19
19
|
import * as i16 from "./components/scheda-image-navigator/scheda-image-navigator";
|
|
20
|
-
import * as i17 from "
|
|
21
|
-
import * as i18 from "@angular/
|
|
22
|
-
import * as i19 from "@
|
|
23
|
-
import * as i20 from "@net7/
|
|
24
|
-
import * as i21 from "
|
|
20
|
+
import * as i17 from "./components/scheda-search/scheda-search";
|
|
21
|
+
import * as i18 from "@angular/common";
|
|
22
|
+
import * as i19 from "@angular/router";
|
|
23
|
+
import * as i20 from "@net7/components";
|
|
24
|
+
import * as i21 from "@net7/boilerplate-common";
|
|
25
|
+
import * as i22 from "ngx-extended-pdf-viewer";
|
|
25
26
|
export declare class N7BoilerplateAriannaModule {
|
|
26
27
|
constructor(initStatus: ApplicationInitStatus, config: ConfigurationService);
|
|
27
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<N7BoilerplateAriannaModule, never>;
|
|
28
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<N7BoilerplateAriannaModule, [typeof i1.AwCollectionLayoutComponent, typeof i2.AwEntitaLayoutComponent, typeof i3.AwFacetsWrapperComponent, typeof i4.AwGalleryLayoutComponent, typeof i5.AwHomeLayoutComponent, typeof i6.AwMapLayoutComponent, typeof i7.AwSchedaLayoutComponent, typeof i8.AwSearchLayoutComponent, typeof i9.AwTimelineLayoutComponent, typeof i10.BubbleChartWrapperComponent, typeof i11.ChartTippyComponent, typeof i12.PdfViewerComponent, typeof i13.SchedaDropdownComponent, typeof i14.SmartBreadcrumbsComponent, typeof i15.ExtendedTreeComponent, typeof i16.SchedaImageNavigatorComponent], [typeof
|
|
29
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<N7BoilerplateAriannaModule, [typeof i1.AwCollectionLayoutComponent, typeof i2.AwEntitaLayoutComponent, typeof i3.AwFacetsWrapperComponent, typeof i4.AwGalleryLayoutComponent, typeof i5.AwHomeLayoutComponent, typeof i6.AwMapLayoutComponent, typeof i7.AwSchedaLayoutComponent, typeof i8.AwSearchLayoutComponent, typeof i9.AwTimelineLayoutComponent, typeof i10.BubbleChartWrapperComponent, typeof i11.ChartTippyComponent, typeof i12.PdfViewerComponent, typeof i13.SchedaDropdownComponent, typeof i14.SmartBreadcrumbsComponent, typeof i15.ExtendedTreeComponent, typeof i16.SchedaImageNavigatorComponent, typeof i17.SchedaSearchComponent], [typeof i18.CommonModule, typeof i19.RouterModule, typeof i20.DvComponentsLibModule, typeof i21.N7BoilerplateCommonModule, typeof i22.NgxExtendedPdfViewerModule], [typeof i1.AwCollectionLayoutComponent, typeof i2.AwEntitaLayoutComponent, typeof i3.AwFacetsWrapperComponent, typeof i4.AwGalleryLayoutComponent, typeof i5.AwHomeLayoutComponent, typeof i6.AwMapLayoutComponent, typeof i7.AwSchedaLayoutComponent, typeof i8.AwSearchLayoutComponent, typeof i9.AwTimelineLayoutComponent, typeof i10.BubbleChartWrapperComponent, typeof i11.ChartTippyComponent, typeof i12.PdfViewerComponent, typeof i13.SchedaDropdownComponent, typeof i14.SmartBreadcrumbsComponent, typeof i15.ExtendedTreeComponent, typeof i16.SchedaImageNavigatorComponent, typeof i17.SchedaSearchComponent]>;
|
|
29
30
|
static ɵinj: i0.ɵɵInjectorDeclaration<N7BoilerplateAriannaModule>;
|
|
30
31
|
}
|
package/package.json
CHANGED
|
@@ -91,8 +91,41 @@
|
|
|
91
91
|
}
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
|
|
95
|
-
|
|
94
|
+
// inner title search
|
|
95
|
+
.n7-inner-title {
|
|
96
|
+
.n7-inner-title__search-button {
|
|
97
|
+
content: '';
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.n7-inner-title__search-button:before {
|
|
101
|
+
font-family: n7-icon!important;
|
|
102
|
+
content: "\e9c6";
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.n7-inner-title__search {
|
|
106
|
+
border: 1px solid $color-border-light;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
input[type=text] {
|
|
110
|
+
transition: width .2s ease-in-out;
|
|
111
|
+
padding: 0 0;
|
|
112
|
+
width: 1px;
|
|
113
|
+
margin-right: -1px;
|
|
114
|
+
border: none;
|
|
115
|
+
visibility: hidden;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
button.n7-btn {
|
|
119
|
+
border: none;
|
|
120
|
+
background-color: transparent;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
&.search-is-open input[type=text] {
|
|
124
|
+
visibility: visible;
|
|
125
|
+
padding: 0 $space;
|
|
126
|
+
width: 250px;
|
|
127
|
+
margin-right: 0;
|
|
128
|
+
}
|
|
96
129
|
}
|
|
97
130
|
|
|
98
131
|
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SCHEDA SEARCH
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
.aw-scheda-search {
|
|
6
|
+
padding-bottom: $space * 2;
|
|
7
|
+
|
|
8
|
+
&__item-link {
|
|
9
|
+
display: block;
|
|
10
|
+
padding: $space * 1.8 0 ;
|
|
11
|
+
border-bottom: 1px solid $color-border-normal;
|
|
12
|
+
cursor: pointer;
|
|
13
|
+
color: $color-gray-05;
|
|
14
|
+
|
|
15
|
+
&:hover {
|
|
16
|
+
.aw-scheda-search__item-label {
|
|
17
|
+
color: $color-text-link;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&__item:last-child .aw-scheda-search__item-link {
|
|
23
|
+
border-bottom: none;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&__item-bottom {
|
|
27
|
+
display: flex;
|
|
28
|
+
align-items: center;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&__item-icon {
|
|
32
|
+
margin-right: $space;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// &__item-label {
|
|
36
|
+
// font-weight: $font-weight-bold;
|
|
37
|
+
// }
|
|
38
|
+
|
|
39
|
+
&__item-image img {
|
|
40
|
+
margin-right: $space;
|
|
41
|
+
width: $tree-image-size;
|
|
42
|
+
height: $tree-image-size;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&__content, &__footer, &__input, &__loader {
|
|
46
|
+
padding: 0 $aw-scheda-content-padding $aw-scheda-content-padding * 0.5 $aw-scheda-content-padding;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&__loader {
|
|
50
|
+
.n7-loader {
|
|
51
|
+
margin: 0 auto;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&__footer {
|
|
56
|
+
display: flex;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&__limit-select {
|
|
60
|
+
label {
|
|
61
|
+
font-size: $font-size-m;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
select {
|
|
65
|
+
margin-left: $space;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
&__pagination {
|
|
70
|
+
flex-grow: 1;
|
|
71
|
+
|
|
72
|
+
.n7-pagination {
|
|
73
|
+
justify-content: left;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.n7-inner-title {
|
|
78
|
+
padding: 0;
|
|
79
|
+
|
|
80
|
+
.n7-inner-title__title {
|
|
81
|
+
font-size: $font-size-xxl;
|
|
82
|
+
font-weight: $font-weight-normal;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.n7-inner-title__title .aw-scheda-search__total {
|
|
86
|
+
font-size: $font-size-l;
|
|
87
|
+
color: $color-gray-04;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.n7-inner-title__subtitle {
|
|
91
|
+
font-size: $font-size-m;
|
|
92
|
+
color: $color-gray-04;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
&__content {
|
|
97
|
+
/* Hover on breadcrumbs */
|
|
98
|
+
n7-smart-breadcrumbs {
|
|
99
|
+
cursor: pointer;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
/* ------------------------------------ *\
|
|
106
|
+
#MEDIA-QUERIES
|
|
107
|
+
\* ------------------------------------ */
|
|
108
|
+
@media all and (max-width: $breakpoint-laptop) {
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
@media all and (max-width: $breakpoint-ipad-portrait) {
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
@media all and (max-width: $breakpoint-smartphone-landscape) {
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/* Retina */
|
|
118
|
+
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
119
|
+
}
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
padding-right: $space * 2;
|
|
34
34
|
padding-left: $space * 2;
|
|
35
35
|
border-radius: $top-hero-input-border-radius 0 0
|
|
36
|
-
|
|
36
|
+
$top-hero-input-border-radius;
|
|
37
37
|
box-shadow: $top-hero-input-box-shadow;
|
|
38
38
|
line-height: $top-hero-input-height;
|
|
39
39
|
font-size: $font-size-l;
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
&__btn {
|
|
47
47
|
height: $top-hero-button-height;
|
|
48
48
|
border-radius: 0 $top-hero-input-border-radius
|
|
49
|
-
|
|
49
|
+
$top-hero-input-border-radius 0;
|
|
50
50
|
border: none;
|
|
51
51
|
font-size: $font-size-l;
|
|
52
52
|
}
|
|
@@ -194,6 +194,18 @@
|
|
|
194
194
|
}
|
|
195
195
|
}
|
|
196
196
|
|
|
197
|
+
.aw-home__facet-link {
|
|
198
|
+
display: flex;
|
|
199
|
+
align-items: center;
|
|
200
|
+
font-weight: $font-weight-normal;
|
|
201
|
+
width: fit-content !important;
|
|
202
|
+
height: $space * 3;
|
|
203
|
+
|
|
204
|
+
.aw-home__facet-link-label {
|
|
205
|
+
margin-left: $space;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
197
209
|
.n7-facet-header {
|
|
198
210
|
height: auto;
|
|
199
211
|
position: relative;
|
|
@@ -412,8 +424,8 @@
|
|
|
412
424
|
&-loading {
|
|
413
425
|
flex: 0 0 auto;
|
|
414
426
|
width: calc(
|
|
415
|
-
|
|
416
|
-
|
|
427
|
+
100% - #{$facets-wrapper-width} - #{$results-wrapper-width}
|
|
428
|
+
);
|
|
417
429
|
}
|
|
418
430
|
}
|
|
419
431
|
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
display: none;
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
.n7-breadcrumbs {
|
|
111
|
+
.aw-scheda____breadcrumbs-wrapper .n7-breadcrumbs {
|
|
112
112
|
margin-left: $sidebar-header-height;
|
|
113
113
|
}
|
|
114
114
|
}
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
}
|
|
164
164
|
|
|
165
165
|
/* Breadcrumbs */
|
|
166
|
-
.n7-breadcrumbs {
|
|
166
|
+
.aw-scheda____breadcrumbs-wrapper .n7-breadcrumbs {
|
|
167
167
|
height: $sidebar-header-height;
|
|
168
168
|
overflow: hidden;
|
|
169
169
|
padding-left: $space * 2;
|
|
@@ -251,6 +251,9 @@
|
|
|
251
251
|
border-bottom: 0;
|
|
252
252
|
}
|
|
253
253
|
}
|
|
254
|
+
.aw-scheda__section.aw-scheda__section-internal-search {
|
|
255
|
+
background-color: $breadcrumbs-background;
|
|
256
|
+
}
|
|
254
257
|
|
|
255
258
|
.aw-scheda__section.aw-scheda__empty {
|
|
256
259
|
padding-bottom: $space * 3;
|