@net7/boilerplate-arianna 3.0.1-rc.2
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/README.md +24 -0
- package/esm2020/lib/components/aw-facets-wrapper/aw-facets-wrapper.mjs +29 -0
- package/esm2020/lib/components/bubble-chart-wrapper/bubble-chart-wrapper.mjs +23 -0
- package/esm2020/lib/components/chart-tippy/chart-tippy.mjs +25 -0
- package/esm2020/lib/components/index.mjs +7 -0
- package/esm2020/lib/components/pdf-viewer/pdf-viewer.mjs +31 -0
- package/esm2020/lib/components/scheda-dropdown/scheda-dropdown.mjs +26 -0
- package/esm2020/lib/components/smart-breadcrumbs/smart-breadcrumbs.mjs +82 -0
- package/esm2020/lib/config/apollo.config.mjs +706 -0
- package/esm2020/lib/config-types/arianna/app.mjs +2 -0
- package/esm2020/lib/config-types/arianna/index.mjs +3 -0
- package/esm2020/lib/config-types/arianna/layouts.mjs +2 -0
- package/esm2020/lib/config-types/index.mjs +2 -0
- package/esm2020/lib/data-sources/autocomplete-wrapper.ds.mjs +48 -0
- package/esm2020/lib/data-sources/aw-facets-wrapper.ds.mjs +162 -0
- package/esm2020/lib/data-sources/bubble-chart.ds.mjs +95 -0
- package/esm2020/lib/data-sources/carousel.ds.mjs +74 -0
- package/esm2020/lib/data-sources/chart-tippy.ds.mjs +30 -0
- package/esm2020/lib/data-sources/entita-metadata-viewer.ds.mjs +16 -0
- package/esm2020/lib/data-sources/entita-nav.ds.mjs +74 -0
- package/esm2020/lib/data-sources/gallery-results.ds.mjs +103 -0
- package/esm2020/lib/data-sources/hero.ds.mjs +27 -0
- package/esm2020/lib/data-sources/home-autocomplete.ds.mjs +80 -0
- package/esm2020/lib/data-sources/home-facets-wrapper.ds.mjs +178 -0
- package/esm2020/lib/data-sources/home-hero-patrimonio.ds.mjs +7 -0
- package/esm2020/lib/data-sources/home-item-tags-wrapper.ds.mjs +7 -0
- package/esm2020/lib/data-sources/index.mjs +36 -0
- package/esm2020/lib/data-sources/linked-objects.ds.mjs +219 -0
- package/esm2020/lib/data-sources/map.ds.mjs +88 -0
- package/esm2020/lib/data-sources/related-entities.ds.mjs +35 -0
- package/esm2020/lib/data-sources/scheda-breadcrumbs.ds.mjs +18 -0
- package/esm2020/lib/data-sources/scheda-dropdown.ds.mjs +40 -0
- package/esm2020/lib/data-sources/scheda-image.ds.mjs +65 -0
- package/esm2020/lib/data-sources/scheda-inner-title.ds.mjs +7 -0
- package/esm2020/lib/data-sources/scheda-metadata.ds.mjs +11 -0
- package/esm2020/lib/data-sources/scheda-pdf.ds.mjs +54 -0
- package/esm2020/lib/data-sources/search-layout-tabs.ds.mjs +28 -0
- package/esm2020/lib/data-sources/sidebar-header.ds.mjs +24 -0
- package/esm2020/lib/data-sources/table.ds.mjs +8 -0
- package/esm2020/lib/data-sources/timeline.ds.mjs +106 -0
- package/esm2020/lib/data-sources/tree.ds.mjs +154 -0
- package/esm2020/lib/event-handlers/autocomplete-wrapper.eh.mjs +18 -0
- package/esm2020/lib/event-handlers/aw-facets-wrapper.eh.mjs +88 -0
- package/esm2020/lib/event-handlers/bubble-chart.eh.mjs +98 -0
- package/esm2020/lib/event-handlers/chart-tippy.eh.mjs +64 -0
- package/esm2020/lib/event-handlers/entita-nav.eh.mjs +22 -0
- package/esm2020/lib/event-handlers/gallery-results.eh.mjs +38 -0
- package/esm2020/lib/event-handlers/hero.eh.mjs +25 -0
- package/esm2020/lib/event-handlers/home-autocomplete.eh.mjs +15 -0
- package/esm2020/lib/event-handlers/home-facets-wrapper.eh.mjs +125 -0
- package/esm2020/lib/event-handlers/home-hero-patrimonio.eh.mjs +7 -0
- package/esm2020/lib/event-handlers/home-item-tags-wrapper.eh.mjs +18 -0
- package/esm2020/lib/event-handlers/index.mjs +30 -0
- package/esm2020/lib/event-handlers/linked-objects.eh.mjs +60 -0
- package/esm2020/lib/event-handlers/map.eh.mjs +23 -0
- package/esm2020/lib/event-handlers/scheda-breadcrumbs.eh.mjs +12 -0
- package/esm2020/lib/event-handlers/scheda-dropdown.eh.mjs +17 -0
- package/esm2020/lib/event-handlers/scheda-pdf.eh.mjs +14 -0
- package/esm2020/lib/event-handlers/search-layout-tabs.eh.mjs +7 -0
- package/esm2020/lib/event-handlers/sidebar-header.eh.mjs +11 -0
- package/esm2020/lib/event-handlers/table.eh.mjs +15 -0
- package/esm2020/lib/event-handlers/timeline.eh.mjs +46 -0
- package/esm2020/lib/event-handlers/tree.eh.mjs +113 -0
- package/esm2020/lib/helpers/metadata.helper.mjs +89 -0
- package/esm2020/lib/layouts/collection-layout/collection-layout.config.mjs +17 -0
- package/esm2020/lib/layouts/collection-layout/collection-layout.ds.mjs +173 -0
- package/esm2020/lib/layouts/collection-layout/collection-layout.eh.mjs +27 -0
- package/esm2020/lib/layouts/collection-layout/collection-layout.mjs +38 -0
- package/esm2020/lib/layouts/collection-layout/collection-layout.types.mjs +2 -0
- package/esm2020/lib/layouts/entita-layout/entita-layout.config.mjs +29 -0
- package/esm2020/lib/layouts/entita-layout/entita-layout.ds.mjs +310 -0
- package/esm2020/lib/layouts/entita-layout/entita-layout.eh.mjs +119 -0
- package/esm2020/lib/layouts/entita-layout/entita-layout.mjs +51 -0
- package/esm2020/lib/layouts/entita-layout/entita-layout.types.mjs +2 -0
- package/esm2020/lib/layouts/gallery-layout/gallery-facets.config.mjs +145 -0
- package/esm2020/lib/layouts/gallery-layout/gallery-layout.config.mjs +32 -0
- package/esm2020/lib/layouts/gallery-layout/gallery-layout.ds.mjs +15 -0
- package/esm2020/lib/layouts/gallery-layout/gallery-layout.eh.mjs +8 -0
- package/esm2020/lib/layouts/gallery-layout/gallery-layout.mjs +45 -0
- package/esm2020/lib/layouts/home-layout/home-layout.config.mjs +36 -0
- package/esm2020/lib/layouts/home-layout/home-layout.ds.mjs +286 -0
- package/esm2020/lib/layouts/home-layout/home-layout.eh.mjs +245 -0
- package/esm2020/lib/layouts/home-layout/home-layout.mjs +44 -0
- package/esm2020/lib/layouts/index.mjs +41 -0
- package/esm2020/lib/layouts/map-layout/map-layout.config.mjs +26 -0
- package/esm2020/lib/layouts/map-layout/map-layout.ds.mjs +112 -0
- package/esm2020/lib/layouts/map-layout/map-layout.eh.mjs +44 -0
- package/esm2020/lib/layouts/map-layout/map-layout.mjs +46 -0
- package/esm2020/lib/layouts/scheda-layout/scheda-layout.config.mjs +32 -0
- package/esm2020/lib/layouts/scheda-layout/scheda-layout.ds.mjs +282 -0
- package/esm2020/lib/layouts/scheda-layout/scheda-layout.eh.mjs +150 -0
- package/esm2020/lib/layouts/scheda-layout/scheda-layout.mjs +53 -0
- package/esm2020/lib/layouts/search-layout/search-facets.config.mjs +163 -0
- package/esm2020/lib/layouts/search-layout/search-layout.config.mjs +32 -0
- package/esm2020/lib/layouts/search-layout/search-layout.ds.mjs +296 -0
- package/esm2020/lib/layouts/search-layout/search-layout.eh.mjs +175 -0
- package/esm2020/lib/layouts/search-layout/search-layout.mjs +50 -0
- package/esm2020/lib/layouts/timeline-layout/timeline-layout.config.mjs +26 -0
- package/esm2020/lib/layouts/timeline-layout/timeline-layout.ds.mjs +133 -0
- package/esm2020/lib/layouts/timeline-layout/timeline-layout.eh.mjs +41 -0
- package/esm2020/lib/layouts/timeline-layout/timeline-layout.mjs +46 -0
- package/esm2020/lib/n7-boilerplate-arianna.module.mjs +110 -0
- package/esm2020/lib/search/aw-facet-inputs/aw-facet-input-checkbox.mjs +32 -0
- package/esm2020/lib/search/aw-facet-inputs/aw-facet-input-link.mjs +89 -0
- package/esm2020/lib/search/aw-facet-inputs/aw-facet-input-select.mjs +28 -0
- package/esm2020/lib/search/aw-facet-inputs/aw-facet-input-text.mjs +36 -0
- package/esm2020/lib/search/aw-facet-inputs/aw-facet-input.mjs +30 -0
- package/esm2020/lib/search/aw-facet-inputs/index.mjs +6 -0
- package/esm2020/lib/search/aw-search.model.mjs +331 -0
- package/esm2020/lib/search/aw-search.service.mjs +42 -0
- package/esm2020/lib/search/entity-links.helper.mjs +126 -0
- package/esm2020/net7-boilerplate-arianna.mjs +5 -0
- package/esm2020/public-api.mjs +11 -0
- package/fesm2015/net7-boilerplate-arianna.mjs +7482 -0
- package/fesm2015/net7-boilerplate-arianna.mjs.map +1 -0
- package/fesm2020/net7-boilerplate-arianna.mjs +7520 -0
- package/fesm2020/net7-boilerplate-arianna.mjs.map +1 -0
- package/lib/components/aw-facets-wrapper/aw-facets-wrapper.d.ts +9 -0
- package/lib/components/bubble-chart-wrapper/bubble-chart-wrapper.d.ts +9 -0
- package/lib/components/chart-tippy/chart-tippy.d.ts +9 -0
- package/lib/components/index.d.ts +6 -0
- package/lib/components/pdf-viewer/pdf-viewer.d.ts +38 -0
- package/lib/components/scheda-dropdown/scheda-dropdown.d.ts +23 -0
- package/lib/components/smart-breadcrumbs/smart-breadcrumbs.d.ts +71 -0
- package/lib/config/apollo.config.d.ts +67 -0
- package/lib/config-types/arianna/app.d.ts +103 -0
- package/lib/config-types/arianna/index.d.ts +2 -0
- package/lib/config-types/arianna/layouts.d.ts +164 -0
- package/lib/config-types/index.d.ts +1 -0
- package/lib/data-sources/autocomplete-wrapper.ds.d.ts +18 -0
- package/lib/data-sources/aw-facets-wrapper.ds.d.ts +50 -0
- package/lib/data-sources/bubble-chart.ds.d.ts +47 -0
- package/lib/data-sources/carousel.ds.d.ts +22 -0
- package/lib/data-sources/chart-tippy.ds.d.ts +4 -0
- package/lib/data-sources/entita-metadata-viewer.ds.d.ts +9 -0
- package/lib/data-sources/entita-nav.ds.d.ts +4 -0
- package/lib/data-sources/gallery-results.ds.d.ts +11 -0
- package/lib/data-sources/hero.ds.d.ts +20 -0
- package/lib/data-sources/home-autocomplete.ds.d.ts +37 -0
- package/lib/data-sources/home-facets-wrapper.ds.d.ts +14 -0
- package/lib/data-sources/home-hero-patrimonio.ds.d.ts +4 -0
- package/lib/data-sources/home-item-tags-wrapper.ds.d.ts +4 -0
- package/lib/data-sources/index.d.ts +27 -0
- package/lib/data-sources/linked-objects.ds.d.ts +22 -0
- package/lib/data-sources/map.ds.d.ts +17 -0
- package/lib/data-sources/related-entities.ds.d.ts +7 -0
- package/lib/data-sources/scheda-breadcrumbs.ds.d.ts +5 -0
- package/lib/data-sources/scheda-dropdown.ds.d.ts +7 -0
- package/lib/data-sources/scheda-image.ds.d.ts +10 -0
- package/lib/data-sources/scheda-inner-title.ds.d.ts +4 -0
- package/lib/data-sources/scheda-metadata.ds.d.ts +8 -0
- package/lib/data-sources/scheda-pdf.ds.d.ts +8 -0
- package/lib/data-sources/search-layout-tabs.ds.d.ts +12 -0
- package/lib/data-sources/sidebar-header.ds.d.ts +11 -0
- package/lib/data-sources/table.ds.d.ts +4 -0
- package/lib/data-sources/timeline.ds.d.ts +37 -0
- package/lib/data-sources/tree.ds.d.ts +19 -0
- package/lib/event-handlers/autocomplete-wrapper.eh.d.ts +4 -0
- package/lib/event-handlers/aw-facets-wrapper.eh.d.ts +7 -0
- package/lib/event-handlers/bubble-chart.eh.d.ts +7 -0
- package/lib/event-handlers/chart-tippy.eh.d.ts +6 -0
- package/lib/event-handlers/entita-nav.eh.d.ts +4 -0
- package/lib/event-handlers/gallery-results.eh.d.ts +4 -0
- package/lib/event-handlers/hero.eh.d.ts +4 -0
- package/lib/event-handlers/home-autocomplete.eh.d.ts +4 -0
- package/lib/event-handlers/home-facets-wrapper.eh.d.ts +7 -0
- package/lib/event-handlers/home-hero-patrimonio.eh.d.ts +4 -0
- package/lib/event-handlers/home-item-tags-wrapper.eh.d.ts +4 -0
- package/lib/event-handlers/index.d.ts +21 -0
- package/lib/event-handlers/linked-objects.eh.d.ts +5 -0
- package/lib/event-handlers/map.eh.d.ts +5 -0
- package/lib/event-handlers/scheda-breadcrumbs.eh.d.ts +4 -0
- package/lib/event-handlers/scheda-dropdown.eh.d.ts +4 -0
- package/lib/event-handlers/scheda-pdf.eh.d.ts +6 -0
- package/lib/event-handlers/search-layout-tabs.eh.d.ts +4 -0
- package/lib/event-handlers/sidebar-header.eh.d.ts +4 -0
- package/lib/event-handlers/table.eh.d.ts +4 -0
- package/lib/event-handlers/timeline.eh.d.ts +5 -0
- package/lib/event-handlers/tree.eh.d.ts +9 -0
- package/lib/helpers/metadata.helper.d.ts +15 -0
- package/lib/layouts/collection-layout/collection-layout.config.d.ts +13 -0
- package/lib/layouts/collection-layout/collection-layout.d.ts +21 -0
- package/lib/layouts/collection-layout/collection-layout.ds.d.ts +50 -0
- package/lib/layouts/collection-layout/collection-layout.eh.d.ts +6 -0
- package/lib/layouts/collection-layout/collection-layout.types.d.ts +31 -0
- package/lib/layouts/entita-layout/entita-layout.config.d.ts +29 -0
- package/lib/layouts/entita-layout/entita-layout.d.ts +28 -0
- package/lib/layouts/entita-layout/entita-layout.ds.d.ts +76 -0
- package/lib/layouts/entita-layout/entita-layout.eh.d.ts +13 -0
- package/lib/layouts/entita-layout/entita-layout.types.d.ts +17 -0
- package/lib/layouts/gallery-layout/gallery-facets.config.d.ts +150 -0
- package/lib/layouts/gallery-layout/gallery-layout.config.d.ts +38 -0
- package/lib/layouts/gallery-layout/gallery-layout.d.ts +26 -0
- package/lib/layouts/gallery-layout/gallery-layout.ds.d.ts +158 -0
- package/lib/layouts/gallery-layout/gallery-layout.eh.d.ts +4 -0
- package/lib/layouts/home-layout/home-layout.config.d.ts +15 -0
- package/lib/layouts/home-layout/home-layout.d.ts +23 -0
- package/lib/layouts/home-layout/home-layout.ds.d.ts +53 -0
- package/lib/layouts/home-layout/home-layout.eh.d.ts +11 -0
- package/lib/layouts/index.d.ts +32 -0
- package/lib/layouts/map-layout/map-layout.config.d.ts +22 -0
- package/lib/layouts/map-layout/map-layout.d.ts +23 -0
- package/lib/layouts/map-layout/map-layout.ds.d.ts +37 -0
- package/lib/layouts/map-layout/map-layout.eh.d.ts +5 -0
- package/lib/layouts/scheda-layout/scheda-layout.config.d.ts +19 -0
- package/lib/layouts/scheda-layout/scheda-layout.d.ts +33 -0
- package/lib/layouts/scheda-layout/scheda-layout.ds.d.ts +75 -0
- package/lib/layouts/scheda-layout/scheda-layout.eh.d.ts +11 -0
- package/lib/layouts/search-layout/search-facets.config.d.ts +168 -0
- package/lib/layouts/search-layout/search-layout.config.d.ts +38 -0
- package/lib/layouts/search-layout/search-layout.d.ts +31 -0
- package/lib/layouts/search-layout/search-layout.ds.d.ts +71 -0
- package/lib/layouts/search-layout/search-layout.eh.d.ts +31 -0
- package/lib/layouts/timeline-layout/timeline-layout.config.d.ts +22 -0
- package/lib/layouts/timeline-layout/timeline-layout.d.ts +23 -0
- package/lib/layouts/timeline-layout/timeline-layout.ds.d.ts +39 -0
- package/lib/layouts/timeline-layout/timeline-layout.eh.d.ts +5 -0
- package/lib/n7-boilerplate-arianna.module.d.ts +28 -0
- package/lib/search/aw-facet-inputs/aw-facet-input-checkbox.d.ts +18 -0
- package/lib/search/aw-facet-inputs/aw-facet-input-link.d.ts +8 -0
- package/lib/search/aw-facet-inputs/aw-facet-input-select.d.ts +21 -0
- package/lib/search/aw-facet-inputs/aw-facet-input-text.d.ts +30 -0
- package/lib/search/aw-facet-inputs/aw-facet-input.d.ts +35 -0
- package/lib/search/aw-facet-inputs/index.d.ts +5 -0
- package/lib/search/aw-search.model.d.ts +125 -0
- package/lib/search/aw-search.service.d.ts +13 -0
- package/lib/search/entity-links.helper.d.ts +12 -0
- package/net7-boilerplate-arianna.d.ts +5 -0
- package/package.json +36 -0
- package/public-api.d.ts +6 -0
- package/src/lib/styles/arianna/components/_advanced-autocomplete.scss +103 -0
- package/src/lib/styles/arianna/components/_breadcrumbs.scss +129 -0
- package/src/lib/styles/arianna/components/_bubble-popup-menu.scss +87 -0
- package/src/lib/styles/arianna/components/_carousel.scss +32 -0
- package/src/lib/styles/arianna/components/_facet-header.scss +58 -0
- package/src/lib/styles/arianna/components/_facet.scss +268 -0
- package/src/lib/styles/arianna/components/_footer.scss +64 -0
- package/src/lib/styles/arianna/components/_header.scss +61 -0
- package/src/lib/styles/arianna/components/_item-preview.scss +278 -0
- package/src/lib/styles/arianna/components/_map.scss +59 -0
- package/src/lib/styles/arianna/components/_metadata-viewer.scss +106 -0
- package/src/lib/styles/arianna/components/_pdf-viewer.scss +93 -0
- package/src/lib/styles/arianna/components/_simple-autocomplete.scss +60 -0
- package/src/lib/styles/arianna/components/_timeline.scss +112 -0
- package/src/lib/styles/arianna/components/_tippy-tooltip.scss +41 -0
- package/src/lib/styles/arianna/components/_tree.scss +110 -0
- package/src/lib/styles/arianna/generic/_color_scheme.scss +60 -0
- package/src/lib/styles/arianna/generic/_mixins.scss +18 -0
- package/src/lib/styles/arianna/generic/_variables.scss +380 -0
- package/src/lib/styles/arianna/layouts/_collection-layout.scss +200 -0
- package/src/lib/styles/arianna/layouts/_entita-layout.scss +344 -0
- package/src/lib/styles/arianna/layouts/_home-layout.scss +785 -0
- package/src/lib/styles/arianna/layouts/_multimedia-layout.scss +132 -0
- package/src/lib/styles/arianna/layouts/_scheda-layout.scss +438 -0
- package/src/lib/styles/arianna/layouts/_search-layout.scss +284 -0
- package/src/lib/styles/arianna/utilities/_item-preview-list.scss +48 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CAROUSEL
|
|
3
|
+
*
|
|
4
|
+
* Few custom styles for the A4V carousel.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* ------------------------------------ *\
|
|
8
|
+
#CAROUSEL
|
|
9
|
+
\* ------------------------------------ */
|
|
10
|
+
.n7-carousel {
|
|
11
|
+
.n7-btn {
|
|
12
|
+
font-size: $font-size-l;
|
|
13
|
+
text-transform: uppercase;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
/* ------------------------------------ *\
|
|
19
|
+
#MEDIA-QUERIES
|
|
20
|
+
\* ------------------------------------ */
|
|
21
|
+
@media all and (max-width: $breakpoint-laptop) {
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@media all and (max-width: $breakpoint-ipad-portrait) {
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@media all and (max-width: $breakpoint-smartphone-landscape) {
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/* Retina */
|
|
31
|
+
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
32
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* FACET-HEADER
|
|
3
|
+
*
|
|
4
|
+
* Header component for facet, displaying facet title and other datas (for istance count of items).
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* ------------------------------------ *\
|
|
8
|
+
#FACET-HEADER
|
|
9
|
+
\* ------------------------------------ */
|
|
10
|
+
.n7-facet-header {
|
|
11
|
+
margin-bottom: $space;
|
|
12
|
+
border-radius: $facet-header-border-radius;
|
|
13
|
+
background: $facet-header-background;
|
|
14
|
+
|
|
15
|
+
&__text {
|
|
16
|
+
// margin-right: $space;
|
|
17
|
+
// margin-left: $space;
|
|
18
|
+
font-size: $font-size-s;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&__secondary-text {
|
|
22
|
+
// font-size: $font-size-s;
|
|
23
|
+
// line-height: $facet-header-height;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&__icon-left,
|
|
27
|
+
&__icon-right {
|
|
28
|
+
// width: $facet-header-height;
|
|
29
|
+
// height: $facet-header-height;
|
|
30
|
+
// text-align: center;
|
|
31
|
+
// line-height: $facet-header-height;
|
|
32
|
+
// background: $facet-header-icon-background;
|
|
33
|
+
// font-size: $font-size-l;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&__icon-right {
|
|
37
|
+
border-top-right-radius: $facet-header-border-radius;
|
|
38
|
+
border-bottom-right-radius: $facet-header-border-radius;
|
|
39
|
+
background: $facet-header-background;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
/* ------------------------------------ *\
|
|
45
|
+
#MEDIA-QUERIES
|
|
46
|
+
\* ------------------------------------ */
|
|
47
|
+
@media all and (max-width: $breakpoint-laptop) {
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
@media all and (max-width: $breakpoint-ipad-portrait) {
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@media all and (max-width: $breakpoint-smartphone-landscape) {
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/* Retina */
|
|
57
|
+
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
58
|
+
}
|
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* FACET
|
|
3
|
+
*
|
|
4
|
+
* Facet component including:
|
|
5
|
+
* - array of checkboxes;
|
|
6
|
+
* - search inpout with label;
|
|
7
|
+
* - list of results.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/* ------------------------------------ *\
|
|
11
|
+
#INPUT CHECKBOX
|
|
12
|
+
\* ------------------------------------ */
|
|
13
|
+
.n7-facet {
|
|
14
|
+
&__input-checkbox-label {
|
|
15
|
+
font-size: $font-size-s;
|
|
16
|
+
color: $facet-text-color;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
/* ------------------------------------ *\
|
|
22
|
+
#INPUT TEXT
|
|
23
|
+
\* ------------------------------------ */
|
|
24
|
+
.n7-facet {
|
|
25
|
+
&__input-text-label {
|
|
26
|
+
display: block;
|
|
27
|
+
font-size: $font-size-s;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&__input-text-wrapper {
|
|
31
|
+
position: relative;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&__input-text[type="text"] {
|
|
35
|
+
width: 100%;
|
|
36
|
+
box-sizing: border-box;
|
|
37
|
+
padding-right: $space*4;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
&__input-text-icon {
|
|
41
|
+
position: absolute;
|
|
42
|
+
bottom: 0;
|
|
43
|
+
right: $space;
|
|
44
|
+
line-height: $form-input-height;
|
|
45
|
+
color: $color-text-light;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
/* ------------------------------------ *\
|
|
51
|
+
#LIST
|
|
52
|
+
\* ------------------------------------ */
|
|
53
|
+
.n7-facet {
|
|
54
|
+
&__section-input-link {
|
|
55
|
+
margin-bottom: calc($space/2);
|
|
56
|
+
border-bottom: 1px solid $color-border-normal;
|
|
57
|
+
|
|
58
|
+
&:last-of-type {
|
|
59
|
+
border-bottom: none;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
&__input-link {
|
|
64
|
+
padding-bottom: calc($space/2);
|
|
65
|
+
|
|
66
|
+
&[class*="color-"] {
|
|
67
|
+
.n7-facet__input-link-text {
|
|
68
|
+
font-weight: $font-weight-bold;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
&__input-link-text {
|
|
74
|
+
font-size: $font-size-s;
|
|
75
|
+
color: $facet-text-color;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&__input-link-counter {
|
|
79
|
+
background-color: $facet-counter-background;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/* Hover */
|
|
83
|
+
.n7-facet__input-link:hover {
|
|
84
|
+
.n7-facet__input-link-text {
|
|
85
|
+
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/* Active */
|
|
90
|
+
.n7-facet__input-link.is-active {
|
|
91
|
+
&:before {
|
|
92
|
+
content: "\e93d";
|
|
93
|
+
font-family: 'n7-icon';
|
|
94
|
+
margin-right: $space;
|
|
95
|
+
color: $color-success;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.n7-facet__input-link-text {
|
|
99
|
+
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
/* ------------------------------------ *\
|
|
106
|
+
#SELECT
|
|
107
|
+
\* ------------------------------------ */
|
|
108
|
+
.n7-facet {
|
|
109
|
+
&__section-input-select {
|
|
110
|
+
width: calc(50% - #{$space*2});
|
|
111
|
+
|
|
112
|
+
.n7-facet__section-input,
|
|
113
|
+
.n7-facet__input-select {
|
|
114
|
+
width: 100%;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
/* ------------------------------------ *\
|
|
121
|
+
#COLORS
|
|
122
|
+
\* ------------------------------------ */
|
|
123
|
+
.n7-facet {
|
|
124
|
+
&__input-link {
|
|
125
|
+
&.color-persona {
|
|
126
|
+
.n7-facet__input-link-icon,
|
|
127
|
+
.n7-facet__input-link-text {
|
|
128
|
+
color: $color-people;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
&:hover {
|
|
132
|
+
.n7-facet__input-link-icon,
|
|
133
|
+
.n7-facet__input-link-text {
|
|
134
|
+
color: $color-people;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
&.color-luogo {
|
|
140
|
+
.n7-facet__input-link-icon,
|
|
141
|
+
.n7-facet__input-link-text {
|
|
142
|
+
color: $color-places;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
&:hover {
|
|
146
|
+
.n7-facet__input-link-icon,
|
|
147
|
+
.n7-facet__input-link-text {
|
|
148
|
+
color: $color-places;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
&.color-concetto {
|
|
154
|
+
.n7-facet__input-link-icon,
|
|
155
|
+
.n7-facet__input-link-text {
|
|
156
|
+
color: $color-concepts;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
&:hover {
|
|
160
|
+
.n7-facet__input-link-icon,
|
|
161
|
+
.n7-facet__input-link-text {
|
|
162
|
+
color: $color-concepts;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
&.color-cosa-notevole {
|
|
168
|
+
.n7-facet__input-link-icon,
|
|
169
|
+
.n7-facet__input-link-text {
|
|
170
|
+
color: $color-things;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
&:hover {
|
|
174
|
+
.n7-facet__input-link-icon,
|
|
175
|
+
.n7-facet__input-link-text {
|
|
176
|
+
color: $color-things;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
&.color-organizzazione {
|
|
182
|
+
.n7-facet__input-link-icon,
|
|
183
|
+
.n7-facet__input-link-text {
|
|
184
|
+
color: $color-organizations;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
&:hover {
|
|
188
|
+
.n7-facet__input-link-icon,
|
|
189
|
+
.n7-facet__input-link-text {
|
|
190
|
+
color: $color-organizations;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
&.color-famiglia {
|
|
196
|
+
.n7-facet__input-link-icon,
|
|
197
|
+
.n7-facet__input-link-text {
|
|
198
|
+
color: $color-families;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
&:hover {
|
|
202
|
+
.n7-facet__input-link-icon,
|
|
203
|
+
.n7-facet__input-link-text {
|
|
204
|
+
color: $color-families;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
&.color-evento {
|
|
210
|
+
.n7-facet__input-link-icon,
|
|
211
|
+
.n7-facet__input-link-text {
|
|
212
|
+
color: $color-events;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
&:hover {
|
|
216
|
+
.n7-facet__input-link-icon,
|
|
217
|
+
.n7-facet__input-link-text {
|
|
218
|
+
ccolor: $color-events;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
&.color-oggetto-culturale {
|
|
224
|
+
.n7-facet__input-link-icon,
|
|
225
|
+
.n7-facet__input-link-text {
|
|
226
|
+
color: $color-oggetto-culturale;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
&:hover {
|
|
230
|
+
.n7-facet__input-link-icon,
|
|
231
|
+
.n7-facet__input-link-text {
|
|
232
|
+
color: $color-oggetto-culturale;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
&.color-aggregazione-logica {
|
|
238
|
+
.n7-facet__input-link-icon,
|
|
239
|
+
.n7-facet__input-link-text {
|
|
240
|
+
color: $color-aggregazione-logica;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
&:hover {
|
|
244
|
+
.n7-facet__input-link-icon,
|
|
245
|
+
.n7-facet__input-link-text {
|
|
246
|
+
color: $color-aggregazione-logica;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
/* ------------------------------------ *\
|
|
255
|
+
#MEDIA-QUERIES
|
|
256
|
+
\* ------------------------------------ */
|
|
257
|
+
@media all and (max-width: $breakpoint-laptop) {
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
@media all and (max-width: $breakpoint-ipad-portrait) {
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
@media all and (max-width: $breakpoint-smartphone-landscape) {
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/* Retina */
|
|
267
|
+
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
268
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* FOOTER
|
|
3
|
+
*
|
|
4
|
+
* General footer structure, (hopefully) suitable for all needs.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* ------------------------------------ *\
|
|
8
|
+
#FOOTER
|
|
9
|
+
\* ------------------------------------ */
|
|
10
|
+
.n7-footer {
|
|
11
|
+
padding-top: $space*6;
|
|
12
|
+
padding-bottom: $space*6;
|
|
13
|
+
background-color: $color-gray-02;
|
|
14
|
+
border-top: 1px solid $color-border-normal;
|
|
15
|
+
|
|
16
|
+
&__column {
|
|
17
|
+
|
|
18
|
+
&-title {
|
|
19
|
+
margin-bottom: $space*2;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&-text {
|
|
23
|
+
line-height: 1.8;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&-nav {
|
|
27
|
+
&-item {
|
|
28
|
+
margin-bottom: $space;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&-link {
|
|
32
|
+
color: $color-text;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/* ------------------------------------ *\
|
|
39
|
+
#MEDIA-QUERIES
|
|
40
|
+
\* ------------------------------------ */
|
|
41
|
+
@media all and (max-width: $page-max-width + $space*4) {
|
|
42
|
+
|
|
43
|
+
/* Layout utility class */
|
|
44
|
+
.n7-footer {
|
|
45
|
+
&__content {
|
|
46
|
+
padding-left: $space*2;
|
|
47
|
+
padding-right: $space*2;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@media all and (max-width: $breakpoint-laptop) {
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
@media all and (max-width: $breakpoint-ipad-portrait) {
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
@media all and (max-width: $breakpoint-smartphone-landscape) {
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/* Retina */
|
|
63
|
+
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
64
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* HEADER
|
|
3
|
+
*
|
|
4
|
+
* Style for header, including main navigation
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* ------------------------------------ *\
|
|
8
|
+
HEADER
|
|
9
|
+
\* ------------------------------------ */
|
|
10
|
+
.n7-header {
|
|
11
|
+
padding: 0 $space*2;
|
|
12
|
+
|
|
13
|
+
// Hide the H1 in the header.
|
|
14
|
+
&__title-subtitle {
|
|
15
|
+
display: none;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&__nav-item {
|
|
19
|
+
margin: 0;
|
|
20
|
+
padding: 0;
|
|
21
|
+
|
|
22
|
+
&.is-active {
|
|
23
|
+
.n7-header__nav-link {
|
|
24
|
+
background: $header-active-item-color;
|
|
25
|
+
font-weight: $font-weight-bold;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&__nav-link {
|
|
31
|
+
flex-flow: column nowrap;
|
|
32
|
+
justify-content: center;
|
|
33
|
+
align-items: center;
|
|
34
|
+
padding: 0 $space*2.5;
|
|
35
|
+
text-transform: uppercase;
|
|
36
|
+
|
|
37
|
+
&:focus {
|
|
38
|
+
color: $color-text;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&__nav-icon {
|
|
43
|
+
margin-right: 0;
|
|
44
|
+
margin-bottom: calc($space/2);
|
|
45
|
+
font-size: $font-size-l;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&__nav-label {
|
|
49
|
+
font-size: $font-size-s;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
/* ------------------------------------ *\
|
|
55
|
+
#MEDIA-QUERIES
|
|
56
|
+
\* ------------------------------------ */
|
|
57
|
+
@media all and (max-width: $header-breakpoint-mobile) {
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
@media all and (max-width: $header-breakpoint-mobile-small) {
|
|
61
|
+
}
|