@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,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TIPPY-TOOLTIP
|
|
3
|
+
*
|
|
4
|
+
* Tippy tooltip component customizations.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* ------------------------------------ *\
|
|
8
|
+
#TIPPY-TOOLTIP
|
|
9
|
+
\* ------------------------------------ */
|
|
10
|
+
.tippy-tooltip {
|
|
11
|
+
&.light-border-theme {
|
|
12
|
+
border-radius: $border-radius;
|
|
13
|
+
border: none;
|
|
14
|
+
box-shadow: $tippy-box-shadow;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.tippy-content {
|
|
18
|
+
padding: $space*1.5 $space*2;
|
|
19
|
+
text-align: left;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.tippy-arrow:before {
|
|
23
|
+
border-top-color: #e9e9e9 !important;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/* ------------------------------------ *\
|
|
28
|
+
#MEDIA-QUERIES
|
|
29
|
+
\* ------------------------------------ */
|
|
30
|
+
@media all and (max-width: $breakpoint-laptop) {
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
@media all and (max-width: $breakpoint-ipad-portrait) {
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
@media all and (max-width: $breakpoint-smartphone-landscape) {
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/* Retina */
|
|
40
|
+
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
41
|
+
}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TREE
|
|
3
|
+
*
|
|
4
|
+
* Component to navigate a tree.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* ------------------------------------ *\
|
|
8
|
+
#TREE-ITEMS
|
|
9
|
+
\* ------------------------------------ */
|
|
10
|
+
.n7-tree {
|
|
11
|
+
/* First level elements */
|
|
12
|
+
&__item-contents {
|
|
13
|
+
position: relative;
|
|
14
|
+
|
|
15
|
+
/* n7-anchor-wrapper directive */
|
|
16
|
+
> * {
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/* First level */
|
|
21
|
+
&__item-text {
|
|
22
|
+
font-size: $font-size-s;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/* Sub level elements */
|
|
26
|
+
&__children-wrapper {
|
|
27
|
+
.n7-tree__n7-tree__item {
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.n7-tree__item-text {
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&__item-toggle {
|
|
35
|
+
position: absolute;
|
|
36
|
+
z-index: 100;
|
|
37
|
+
width: $tree-caret-width;
|
|
38
|
+
top: 0;
|
|
39
|
+
bottom: 0;
|
|
40
|
+
border: 0 !important;
|
|
41
|
+
|
|
42
|
+
&:hover {
|
|
43
|
+
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&__item-details {
|
|
48
|
+
position: relative;
|
|
49
|
+
padding-left: $tree-caret-width;
|
|
50
|
+
border-left: 1px solid $color-border-normal;
|
|
51
|
+
|
|
52
|
+
&:after {
|
|
53
|
+
content: " ";
|
|
54
|
+
position: absolute;
|
|
55
|
+
top: 0;
|
|
56
|
+
bottom: 0;
|
|
57
|
+
left: $tree-caret-width;
|
|
58
|
+
border-right: 1px solid $color-border-light;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
&:hover {
|
|
62
|
+
.n7-tree__item-text {
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
&__item-icon {
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/* Icon on the right */
|
|
71
|
+
&__item-right-icon {
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
&__item-img {
|
|
75
|
+
overflow: hidden;
|
|
76
|
+
color: transparent;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/* is-active */
|
|
80
|
+
&__item.is-active {
|
|
81
|
+
> .n7-tree__item-contents {
|
|
82
|
+
.n7-tree__item-text {
|
|
83
|
+
color: $color-main;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/* is-collapsed: all children are hidden */
|
|
89
|
+
&__item.is-collapsed {
|
|
90
|
+
.n7-tree__children-wrapper {
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
/* ------------------------------------ *\
|
|
97
|
+
#MEDIA-QUERIES
|
|
98
|
+
\* ------------------------------------ */
|
|
99
|
+
@media all and (max-width: $breakpoint-laptop) {
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
@media all and (max-width: $breakpoint-ipad-portrait) {
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
@media all and (max-width: $breakpoint-smartphone-landscape) {
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
/* Retina */
|
|
109
|
+
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
110
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
//
|
|
2
|
+
// COLOR SCHEME
|
|
3
|
+
//
|
|
4
|
+
// Here we define all colors used in components and project
|
|
5
|
+
//
|
|
6
|
+
|
|
7
|
+
// ------------------------------------ //
|
|
8
|
+
// #COLOR-SCHEME
|
|
9
|
+
// ------------------------------------ //
|
|
10
|
+
// Grayscale (background, borders, text)
|
|
11
|
+
$color-gray-00: #ffffff;
|
|
12
|
+
$color-gray-01: #f9fafa; // f7f7f7;
|
|
13
|
+
$color-gray-02: #eff0f1; // f0f0f0;
|
|
14
|
+
$color-gray-03: #e2e3e4; // dddddd;
|
|
15
|
+
$color-gray-04: #91959c; // B6B7B9; // ababab;
|
|
16
|
+
$color-gray-05: #4f5259; // 494a4d;
|
|
17
|
+
|
|
18
|
+
// Brand colors
|
|
19
|
+
$color-main: #4388d6;
|
|
20
|
+
$color-second: #8c54ff;
|
|
21
|
+
$color-third: #7E8F9B;
|
|
22
|
+
$color-text-hover: rgb(26, 64, 204); /* Used for text link in hover state */
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
// ------------------------------------ //
|
|
26
|
+
// #HIGHLIGHT-COLOR
|
|
27
|
+
// ------------------------------------ //
|
|
28
|
+
$color-highlight: rgba(255, 251, 0, 0.18);
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
// ------------------------------------ //
|
|
32
|
+
// #ENTITIES-COLORS
|
|
33
|
+
// ------------------------------------ //
|
|
34
|
+
$color-people: #4d8ff2; // Fallback
|
|
35
|
+
$color-people: var(--color-persona);
|
|
36
|
+
|
|
37
|
+
$color-places: #ebc738; // Fallback
|
|
38
|
+
$color-places: var(--color-luogo);
|
|
39
|
+
|
|
40
|
+
$color-concepts: #33bdcc; // Fallback
|
|
41
|
+
$color-concepts: var(--color-concetto);
|
|
42
|
+
|
|
43
|
+
$color-things: #5ba878; // Fallback
|
|
44
|
+
$color-things: var(--color-cosa-notevole);
|
|
45
|
+
|
|
46
|
+
$color-organizations: #bd883e; // Fallback
|
|
47
|
+
$color-organizations: var(--color-organizzazione);
|
|
48
|
+
|
|
49
|
+
$color-oggetto-culturale: #9a84c2; // Fallback
|
|
50
|
+
$color-oggetto-culturale: var(--color-oggetto-culturale);
|
|
51
|
+
|
|
52
|
+
$color-aggregazione-logica: #a6a5a8; // Fallback
|
|
53
|
+
$color-aggregazione-logica: var(--color-aggregazione-logica);
|
|
54
|
+
|
|
55
|
+
$color-families: #cc6f5c; // Fallback
|
|
56
|
+
$color-families: var(--color-famiglia);
|
|
57
|
+
|
|
58
|
+
$color-events: #e89827; // Fallback
|
|
59
|
+
$color-events: var(--color-evento);
|
|
60
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
//
|
|
2
|
+
// MIXINS
|
|
3
|
+
//
|
|
4
|
+
// Definition of all mixins used in the Boilerplate.
|
|
5
|
+
//
|
|
6
|
+
|
|
7
|
+
// ------------------------------------ //
|
|
8
|
+
// #CARD SHADOWS
|
|
9
|
+
// ------------------------------------ //
|
|
10
|
+
@mixin card-box-shadow {
|
|
11
|
+
box-shadow: 0 0px 1px rgba(0, 0, 0, 0.20), 0 2px 15px rgba(0, 0, 0, 0.05);
|
|
12
|
+
transition: box-shadow $transition-durations;
|
|
13
|
+
transition-timing-function: ease-in;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@mixin card-box-shadow-hover {
|
|
17
|
+
box-shadow: 0 0px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05), 0 5px 25px rgba(0, 0, 0, 0.15);
|
|
18
|
+
}
|
|
@@ -0,0 +1,380 @@
|
|
|
1
|
+
//
|
|
2
|
+
// VARIABLES
|
|
3
|
+
//
|
|
4
|
+
// Definition of all variables used by the components library
|
|
5
|
+
//
|
|
6
|
+
|
|
7
|
+
// ------------------------------------ //
|
|
8
|
+
// #LAYOUT
|
|
9
|
+
// ------------------------------------ //
|
|
10
|
+
$page-max-width: 1350px;
|
|
11
|
+
$page-min-width: 960px;
|
|
12
|
+
$page-readable-width: 800px;
|
|
13
|
+
|
|
14
|
+
$bubble-section-patrimonio: 350px;
|
|
15
|
+
$bubble-section-entity-overview: 350px;
|
|
16
|
+
$bubble-section-entity-detail: 700px;
|
|
17
|
+
|
|
18
|
+
$facets-wrapper-width: 200px;
|
|
19
|
+
|
|
20
|
+
$results-wrapper-width: 300px;
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
// ------------------------------------ //
|
|
24
|
+
// #SCHEDA-LAYOUT
|
|
25
|
+
// ------------------------------------ //
|
|
26
|
+
$aw-scheda-tree-width: 400px;
|
|
27
|
+
$aw-scheda-minimum-height: 400px;
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
// ------------------------------------ //
|
|
31
|
+
// #GRIDS
|
|
32
|
+
// ------------------------------------ //
|
|
33
|
+
// $grid-gutter-h: $space*3;
|
|
34
|
+
$grid-gutter-v: 0;
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
// //////////////////////////////////// //
|
|
38
|
+
// ATTENTION PLEASE //
|
|
39
|
+
// //////////////////////////////////// //
|
|
40
|
+
// All commented variables are here for reference
|
|
41
|
+
// just to see which ones are available to be
|
|
42
|
+
// overwritten and must be removed if not used
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
// ------------------------------------ //
|
|
46
|
+
// #Z-INDEX
|
|
47
|
+
// ------------------------------------ //
|
|
48
|
+
$z-index-base: 1000;
|
|
49
|
+
$z-index-digital-object-modal: $z-index-base + 10;
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
// ------------------------------------ //
|
|
53
|
+
// #SPACING-UNIT
|
|
54
|
+
// ------------------------------------ //
|
|
55
|
+
// $space: 8px;
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
// ------------------------------------ //
|
|
59
|
+
// #FONTS
|
|
60
|
+
// ------------------------------------ //
|
|
61
|
+
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,700,700i,900&display=swap');
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
// ------------------------------------ //
|
|
65
|
+
// TYPOGRAPHY
|
|
66
|
+
// ------------------------------------ //
|
|
67
|
+
$font-family-main: 'Source Sans Pro', sans-serif;
|
|
68
|
+
$font-family-headings: $font-family-main;
|
|
69
|
+
|
|
70
|
+
// $font-size-xxxl: 38px;
|
|
71
|
+
// $font-size-xxl: 30px;
|
|
72
|
+
// $font-size-xl: 26px;
|
|
73
|
+
// $font-size-l: 18px;
|
|
74
|
+
$font-size-m: 16px;
|
|
75
|
+
// $font-size-s: 14px;
|
|
76
|
+
// $font-size-xs: 12px;
|
|
77
|
+
|
|
78
|
+
// Font weight
|
|
79
|
+
// $font-weight-normal: 400;
|
|
80
|
+
// $font-weight-bold: 700;
|
|
81
|
+
$font-weight-black: 900;
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
// ------------------------------------ //
|
|
85
|
+
// COLORS
|
|
86
|
+
// ------------------------------------ //
|
|
87
|
+
// Text Colors
|
|
88
|
+
// $color-text: $color-gray-05;
|
|
89
|
+
// $color-text-inverse: $color-gray-00;
|
|
90
|
+
// $color-text-light: $color-gray-04;
|
|
91
|
+
// $color-text-link: $color-main;
|
|
92
|
+
// $color-text-link-hover: $color-text-hover;
|
|
93
|
+
// $color-text-link-visited: $color-text-hover;
|
|
94
|
+
// $color-text-form-placeholder: $color-gray-04;
|
|
95
|
+
|
|
96
|
+
// Borders
|
|
97
|
+
// $color-border-light: $color-gray-02;
|
|
98
|
+
// $color-border-normal: $color-gray-03;
|
|
99
|
+
|
|
100
|
+
// Backgrounds
|
|
101
|
+
// $color-background-base: $color-gray-00;
|
|
102
|
+
// $color-background-light: $color-gray-01;
|
|
103
|
+
// $color-background-light-blue: #F5F7FF;
|
|
104
|
+
// $color-background-medium: $color-gray-01;
|
|
105
|
+
// $color-background-dark: $color-gray-03;
|
|
106
|
+
$color-background-layout: $color-gray-01;
|
|
107
|
+
$gradient-item-preview-list: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, $color-background-layout 100%);
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
// ------------------------------------ //
|
|
111
|
+
// #MEDIA-QUERIES-BREAKPOINT
|
|
112
|
+
// ------------------------------------ //
|
|
113
|
+
// $breakpoint-desktop-wide: 1180px;
|
|
114
|
+
// $breakpoint-laptop: 960px;
|
|
115
|
+
// $breakpoint-ipad-portrait: 768px;
|
|
116
|
+
// $breakpoint-smartphone-landscape: 480px;
|
|
117
|
+
// $breakpoint-smartphone-portrait: 400px;
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
// ------------------------------------ //
|
|
121
|
+
// #BORDER-RADIUS
|
|
122
|
+
// ------------------------------------ //
|
|
123
|
+
// $border-radius: 5px;
|
|
124
|
+
// $border-radius-hard: 8px;
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
// ------------------------------------ //
|
|
128
|
+
// #BUTTONS
|
|
129
|
+
// ------------------------------------ //
|
|
130
|
+
// $button-border-width: 0px;
|
|
131
|
+
// $button-border-radius: $border-radius;
|
|
132
|
+
// $button-small-height: 24px;
|
|
133
|
+
// $button-normal-height: 32px;
|
|
134
|
+
$button-large-height: 56px;
|
|
135
|
+
|
|
136
|
+
// Normal button
|
|
137
|
+
// $color-button-text: $color-text-link;
|
|
138
|
+
// $color-button-text-hover: $color-text-link-hover;
|
|
139
|
+
// $color-button-text-disabled: rgba($color-text-link, .4);
|
|
140
|
+
|
|
141
|
+
// $color-button-bg: #2EBBC7;
|
|
142
|
+
// $color-button-bg-hover: #E0E7FF;
|
|
143
|
+
// $color-button-bg-disabled: #E0E7FF;
|
|
144
|
+
|
|
145
|
+
// $color-button-border: $color-border-normal;
|
|
146
|
+
// $color-button-border-hover: $color-border-normal;
|
|
147
|
+
|
|
148
|
+
// Call to action button
|
|
149
|
+
// $color-button-cta-text: $color-text-inverse;
|
|
150
|
+
// $color-button-cta-text-hover: $color-text-inverse;
|
|
151
|
+
// $color-button-cta-text-disabled: rgba($color-text-inverse, .4);
|
|
152
|
+
|
|
153
|
+
// $color-button-cta-bg: $color-main;
|
|
154
|
+
// $color-button-cta-border: $color-main;
|
|
155
|
+
// $color-button-cta-bg-hover: darken($color-button-cta-bg, 5%);
|
|
156
|
+
// $color-button-cta-border-hover: darken($color-button-cta-bg, 5%);
|
|
157
|
+
// $color-button-cta-bg-active: #3FE3F1;
|
|
158
|
+
// $color-button-cta-bg-disabled: rgba($color-button-cta-bg, .4);
|
|
159
|
+
|
|
160
|
+
// $color-button-cta-border: darken($color-main, 5); // $color-text-hover;
|
|
161
|
+
|
|
162
|
+
// Light button (no background or border, only text)
|
|
163
|
+
// $color-button-light-text: $color-text;
|
|
164
|
+
// $color-button-light-text-hover: $color-text-link-hover;
|
|
165
|
+
// $color-button-light-text-disabled: $color-text-light;
|
|
166
|
+
// $color-button-light-text-active: $color-text-link-hover;
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
// ------------------------------------ //
|
|
170
|
+
// #FORMS
|
|
171
|
+
// ------------------------------------ //
|
|
172
|
+
// $form-input-height: 38px;
|
|
173
|
+
// $form-input-small-height: 26px;
|
|
174
|
+
// $form-border-radius: $border-radius;
|
|
175
|
+
// $form-dropdown-height: 30px;
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
// ------------------------------------ //
|
|
179
|
+
// #TRANSITIONS
|
|
180
|
+
// ------------------------------------ //
|
|
181
|
+
// $transition-durations: 0.2s;
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
// ------------------------------------ //
|
|
185
|
+
// #HEADER
|
|
186
|
+
// ------------------------------------ //
|
|
187
|
+
$header-height: 100px;
|
|
188
|
+
// $header-height-mobile: 60px;
|
|
189
|
+
// $header-bg-color: $color-background-base;
|
|
190
|
+
$header-active-item-color: $color-gray-02;
|
|
191
|
+
// $header-logo-height: $header-height - ($space*2);
|
|
192
|
+
// $header-logo-height-mobile: $header-height-mobile - ($space*2);
|
|
193
|
+
// $header-user-thumb-size: 40px;
|
|
194
|
+
// $header-user-thumb-size-mobile: 38px;
|
|
195
|
+
// $header-search-input-height: 36px;
|
|
196
|
+
// $header-search-input-height-mobile: 28px;
|
|
197
|
+
$header-breakpoint-mobile: 0px;
|
|
198
|
+
// $header-breakpoint-mobile-small: 600px;
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
// ------------------------------------ //
|
|
202
|
+
// #LOADER
|
|
203
|
+
// ------------------------------------ //
|
|
204
|
+
// $loader-size: 70px;
|
|
205
|
+
$loader-size-small: 30px;
|
|
206
|
+
// $loader-thickness: 5px;
|
|
207
|
+
$loader-thickness-small: 4px;
|
|
208
|
+
$loader-color-front: $color-gray-03;
|
|
209
|
+
$loader-color-back: $color-gray-02;
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
// ------------------------------------ //
|
|
213
|
+
// #TABLE
|
|
214
|
+
// ------------------------------------ //
|
|
215
|
+
// $table-border-color: $color-border-normal;
|
|
216
|
+
// $table-border-size: 1px;
|
|
217
|
+
/* Header */
|
|
218
|
+
// $table-header-font-size: $font-size-xs;
|
|
219
|
+
// $table-header-text-color: $color-text;
|
|
220
|
+
// $table-header-bg: $color-background-light-blue;
|
|
221
|
+
/* Contents */
|
|
222
|
+
// $table-font-size: $font-size-s;
|
|
223
|
+
// $table-text-color: $color-text;
|
|
224
|
+
// $table-bg-odd: $color-background-base;
|
|
225
|
+
// $table-bg-even: $color-background-medium;
|
|
226
|
+
/* Footer */
|
|
227
|
+
// $table-footer-font-size: $font-size-s;
|
|
228
|
+
// $table-footer-text-color: $color-text-light;
|
|
229
|
+
// $table-footer-bg: $color-background-medium;
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
// ------------------------------------ //
|
|
233
|
+
// #TOP-HERO-HOMEPAGE
|
|
234
|
+
// ------------------------------------ //
|
|
235
|
+
$top-hero-height: 360px;
|
|
236
|
+
$top-hero-has-carousel-height: 180px;
|
|
237
|
+
$top-hero-text-max-width: 715px;
|
|
238
|
+
$top-hero-input-height: 56px;
|
|
239
|
+
$top-hero-input-border-radius: $border-radius;
|
|
240
|
+
$top-hero-input-box-shadow: 0 2px 4px rgba(0,0,0,0.3);
|
|
241
|
+
$top-hero-button-height: $top-hero-input-height;
|
|
242
|
+
$top-hero-title-font-weight: $font-weight-bold;
|
|
243
|
+
// $hero-height: 600px;
|
|
244
|
+
// $hero-content-width: $page-max-width;
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
// ------------------------------------ //
|
|
248
|
+
// #BUBBLE-SECTION-HOMEPAGE
|
|
249
|
+
// ------------------------------------ //
|
|
250
|
+
$bubble-section-height: 780px;
|
|
251
|
+
$bubble-popover-title-font-weight: $font-weight-bold;
|
|
252
|
+
$bubble-results-count-font-weight: $font-weight-bold;
|
|
253
|
+
|
|
254
|
+
// ------------------------------------ //
|
|
255
|
+
// #BOTTTOM-HERO-HOMEPAGE
|
|
256
|
+
// ------------------------------------ //
|
|
257
|
+
$bottom-hero-image-border: 10px solid #ffffff;
|
|
258
|
+
$bottom-hero-image-border-radius: $border-radius;
|
|
259
|
+
$bottom-hero-button-bg: #ffcd00;
|
|
260
|
+
$bottom-hero-button-bg-hover: darken($bottom-hero-button-bg, 5%);
|
|
261
|
+
$bottom-hero-button-bg-active: #ffb600;
|
|
262
|
+
$bottom-hero-button-bg-disabled: rgba($bottom-hero-button-bg, .4);
|
|
263
|
+
$bottom-hero-title-font-weight: $font-weight-bold;
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
// ------------------------------------ //
|
|
267
|
+
// #TAG
|
|
268
|
+
// ------------------------------------ //
|
|
269
|
+
$n7-tag-icon-size: 16px;
|
|
270
|
+
$n7-tag-icon-font-size: 8px;
|
|
271
|
+
$n7-tag-icon-background: #ffffff;
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
// ------------------------------------ //
|
|
275
|
+
// #SIDEBAR-HEADER
|
|
276
|
+
// ------------------------------------ //
|
|
277
|
+
$sidebar-header-height: 50px;
|
|
278
|
+
// $sidebar-header-background-color: $color-text;
|
|
279
|
+
// $sidebar-header-text-color: $color-text-inverse;
|
|
280
|
+
// $sidebar-left-background-color: $sidebar-header-background-color;
|
|
281
|
+
// $sidebar-left-text-color: $sidebar-header-text-color;
|
|
282
|
+
// $sidebar-right-background-color: $color-text-link;
|
|
283
|
+
// $sidebar-right-text-color: $color-text-inverse;
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
// ------------------------------------ //
|
|
287
|
+
// #ITEM-PREVIEW
|
|
288
|
+
// ------------------------------------ //
|
|
289
|
+
$item-preview-image-size: 85px;
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
// ------------------------------------ //
|
|
293
|
+
// #TIPPY-COMPONENT
|
|
294
|
+
// ------------------------------------ //
|
|
295
|
+
$tippy-box-shadow: 0 2px 10px 0 rgba(0,0,0,0.1);
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
// ------------------------------------ //
|
|
299
|
+
// #SCHEDA-LAYOUT
|
|
300
|
+
// ------------------------------------ //
|
|
301
|
+
$aw-scheda-content-padding: $space*3;
|
|
302
|
+
$scheda-title-font-weight: $font-weight-bold;
|
|
303
|
+
$metadata-label-width: 200px;
|
|
304
|
+
|
|
305
|
+
// ------------------------------------ //
|
|
306
|
+
// #ENTITA
|
|
307
|
+
// ------------------------------------ //
|
|
308
|
+
$entity-sidebar-title-background: $color-gray-01;
|
|
309
|
+
$entity-nav-item-active-decoration-bg: $color-gray-05;
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
// ------------------------------------ //
|
|
313
|
+
// #SEARCH
|
|
314
|
+
// ------------------------------------ //
|
|
315
|
+
$search-box-shadow: 0 0 15px 0 rgba(0,0,0,0.05);
|
|
316
|
+
$search-nav-decoration-height: 5px;
|
|
317
|
+
|
|
318
|
+
// ------------------------------------ //
|
|
319
|
+
// #GALLERY
|
|
320
|
+
// ------------------------------------ //
|
|
321
|
+
$gallery-box-shadow: 0 0 15px 0 rgba(0,0,0,0.05);
|
|
322
|
+
$gallery-nav-decoration-height: 5px;
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
// ------------------------------------ //
|
|
326
|
+
// #FACET
|
|
327
|
+
// ------------------------------------ //
|
|
328
|
+
$n7-facet-search-input-height: 32px;
|
|
329
|
+
$n7-facet-search-input-border-radius: $border-radius;
|
|
330
|
+
$facet-counter-background: $color-gray-04;
|
|
331
|
+
$facet-text-color: $color-gray-05;
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
// ------------------------------------ //
|
|
335
|
+
// #FACET-HEADER
|
|
336
|
+
// ------------------------------------ //
|
|
337
|
+
$facet-header-border-radius: 3px;
|
|
338
|
+
$facet-header-background: $color-gray-04;
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
// ------------------------------------ //
|
|
342
|
+
// #BUBBLE--CHART-COLUMN-CONTAINER-MIN-WIDTH
|
|
343
|
+
// ------------------------------------ //
|
|
344
|
+
$bubble-chart-column-container-min-width: 200px;
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
// ------------------------------------ //
|
|
348
|
+
// #TREE
|
|
349
|
+
// ------------------------------------ //
|
|
350
|
+
$tree-indent: $space*1.6;
|
|
351
|
+
$tree-caret-width: 30px;
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
// ------------------------------------ //
|
|
355
|
+
// #IMAGE-VIEWER
|
|
356
|
+
// ------------------------------------ //
|
|
357
|
+
$image-viewer-height: 550px;
|
|
358
|
+
// $image-viewer-thumb-height: 80px;
|
|
359
|
+
// $image-viewer-thumb-width: 80px;
|
|
360
|
+
// $image-viewer-control-height: 60px;
|
|
361
|
+
// $image-viewer-control-width: 60px;
|
|
362
|
+
// $image-viewer-background-color: $color-gray-05;
|
|
363
|
+
// $image-viewer-thumb-active-border-color: $color-main;
|
|
364
|
+
// $image-viewer-thumb-hover-border-color: $color-main;
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
// ------------------------------------ //
|
|
368
|
+
// #BREADCRUMBS
|
|
369
|
+
// ------------------------------------ //
|
|
370
|
+
// $breadcrumbs-arrow-color: $color-text-light;
|
|
371
|
+
// $breadcrumbs-current-color: $color-text;
|
|
372
|
+
$breadcrumbs-arrow: '\e90a';
|
|
373
|
+
// $breadcrumbs-arrow-mobile: '\e908';
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
// ------------------------------------ //
|
|
377
|
+
// #COLLECTION
|
|
378
|
+
// ------------------------------------ //
|
|
379
|
+
$collection-item-preview-height: 235px;
|
|
380
|
+
$collection-item-preview-default-color: $color-gray-04;
|