@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,278 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ITEM-PREVIEW
|
|
3
|
+
*
|
|
4
|
+
* Component used to preview any kind of element with image, title, text, metadata and icons.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* ------------------------------------ *\
|
|
8
|
+
#ITEM-PREVIEW
|
|
9
|
+
\* ------------------------------------ */
|
|
10
|
+
.n7-item-preview {
|
|
11
|
+
/* Main fields */
|
|
12
|
+
&__title {
|
|
13
|
+
margin-bottom: $space*1.5; // calc($space/2);
|
|
14
|
+
font-weight: $font-weight-bold;
|
|
15
|
+
font-size: $font-size-m;
|
|
16
|
+
|
|
17
|
+
em {
|
|
18
|
+
font-style: normal;
|
|
19
|
+
background-color: $color-highlight;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&__text {
|
|
24
|
+
margin-bottom: $space; // calc($space/2);
|
|
25
|
+
color: $color-gray-04;
|
|
26
|
+
|
|
27
|
+
em {
|
|
28
|
+
font-style: normal;
|
|
29
|
+
background-color: $color-highlight;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/* Metadata wrapper */
|
|
34
|
+
&__metadata {
|
|
35
|
+
margin-top: -calc($space/2);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/* Metadata group */
|
|
39
|
+
&__metadata-group:last-child {
|
|
40
|
+
margin-bottom: 0;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
/* ------------------------------------ *\
|
|
46
|
+
#MAIN-METADATA
|
|
47
|
+
\* ------------------------------------ */
|
|
48
|
+
.aw-item-preview_metadata {
|
|
49
|
+
.n7-item-preview__metadata-item {
|
|
50
|
+
display: inline;
|
|
51
|
+
align-items: baseline;
|
|
52
|
+
padding-right: $space;
|
|
53
|
+
border-right: 1px solid $color-border-normal;
|
|
54
|
+
line-height: 1.38;
|
|
55
|
+
|
|
56
|
+
&:last-of-type {
|
|
57
|
+
border-right: none;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.n7-item-preview__metadata-item-label {
|
|
62
|
+
font-size: $font-size-s;
|
|
63
|
+
font-weight: $font-weight-bold;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.n7-item-preview__metadata-item-value {
|
|
67
|
+
font-size: $font-size-s;
|
|
68
|
+
font-weight: $font-weight-normal;
|
|
69
|
+
|
|
70
|
+
em {
|
|
71
|
+
font-style: normal;
|
|
72
|
+
background-color: $color-highlight;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
/* ------------------------------------ *\
|
|
79
|
+
#ENTITIES-METADATA
|
|
80
|
+
\* ------------------------------------ */
|
|
81
|
+
.aw-item-preview-entities {
|
|
82
|
+
display: inline-block;
|
|
83
|
+
flex-grow: 0;
|
|
84
|
+
margin-bottom: 0;
|
|
85
|
+
background-color: $color-background-light;
|
|
86
|
+
padding: calc($space/2) $space;
|
|
87
|
+
border-radius: $border-radius;
|
|
88
|
+
box-shadow: inset 0 0 8px rgba(0,0,0,0.05);
|
|
89
|
+
|
|
90
|
+
.n7-item-preview__metadata-item-icon {
|
|
91
|
+
font-size: $font-size-m;
|
|
92
|
+
font-weight: $font-weight-bold;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/* Main metadata */
|
|
96
|
+
.n7-item-preview__metadata-item {
|
|
97
|
+
&.color-persona {
|
|
98
|
+
color: $color-people;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
&.color-luogo {
|
|
102
|
+
color: $color-places;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
&.color-concetto {
|
|
106
|
+
color: $color-concepts;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
&.color-cosa-notevole {
|
|
110
|
+
color: $color-things;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
&.color-organizzazione {
|
|
114
|
+
color: $color-organizations;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
&.color-famiglia {
|
|
118
|
+
color: $color-families;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
&.color-evento {
|
|
122
|
+
color: $color-events;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
&.has-image {
|
|
126
|
+
.n7-item-preview__image {
|
|
127
|
+
width: $item-preview-image-size;
|
|
128
|
+
height: $item-preview-image-size;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
/* ------------------------------------ *\
|
|
136
|
+
#IS-FULLWIDTH
|
|
137
|
+
\* ------------------------------------ */
|
|
138
|
+
.n7-item-preview.is-fullwidth {
|
|
139
|
+
.n7-item-preview__metadata {
|
|
140
|
+
display: flex;
|
|
141
|
+
align-items: flex-start;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.aw-item-preview_metadata {
|
|
145
|
+
margin-bottom: 0;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.aw-item-preview-entities {
|
|
149
|
+
margin-left: auto;
|
|
150
|
+
flex: 0 0 auto;
|
|
151
|
+
text-align: right;
|
|
152
|
+
margin-top: -calc($space/2);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
/* ------------------------------------ *\
|
|
158
|
+
#VERTICAL-WITH-IMAGE
|
|
159
|
+
\* ------------------------------------ */
|
|
160
|
+
.n7-item-preview.is-vertical.has-image {
|
|
161
|
+
border-bottom: 0;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
/* ------------------------------------ *\
|
|
166
|
+
#ENTITIES-COLOURED-TITLE
|
|
167
|
+
\* ------------------------------------ */
|
|
168
|
+
.n7-item-preview.is-persona {
|
|
169
|
+
.n7-item-preview__title {
|
|
170
|
+
color: $color-people;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.n7-item-preview.is-luogo {
|
|
175
|
+
.n7-item-preview__title {
|
|
176
|
+
color: $color-places;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.n7-item-preview.is-concetto {
|
|
181
|
+
.n7-item-preview__title {
|
|
182
|
+
color: $color-concepts;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.n7-item-preview.is-cosa-notevole {
|
|
187
|
+
.n7-item-preview__title {
|
|
188
|
+
color: $color-things;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.n7-item-preview.is-organizzazione {
|
|
193
|
+
.n7-item-preview__title {
|
|
194
|
+
color: $color-organizations;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.n7-item-preview.is-famiglia {
|
|
199
|
+
.n7-item-preview__title {
|
|
200
|
+
color: $color-families;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.n7-item-preview.is-evento {
|
|
205
|
+
.n7-item-preview__title {
|
|
206
|
+
color: $color-events;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
/* ------------------------------------ *\
|
|
212
|
+
#RELATION-DESCRIPTION
|
|
213
|
+
\* ------------------------------------ */
|
|
214
|
+
/* Description of the relation with an entity, OC or AL */
|
|
215
|
+
.aw-item-preview-relation {
|
|
216
|
+
display: inline-block;
|
|
217
|
+
margin-top: $space*1.5;
|
|
218
|
+
padding: calc($space/2) $space;
|
|
219
|
+
background-color: $color-background-light;
|
|
220
|
+
border-radius: $border-radius;
|
|
221
|
+
box-shadow: inset 0 0 8px rgba(0,0,0,0.05);
|
|
222
|
+
|
|
223
|
+
&__description {
|
|
224
|
+
margin: 0;
|
|
225
|
+
padding: 0;
|
|
226
|
+
font-size: $font-size-xs;
|
|
227
|
+
color: $color-text-light;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
&__key {
|
|
231
|
+
color: $color-text;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
&__value {
|
|
235
|
+
// font-weight: $font-weight-bold;
|
|
236
|
+
color: $color-text;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
/* ------------------------------------ *\
|
|
242
|
+
#ITEM-PREVIEW-WRAPPER
|
|
243
|
+
\* ------------------------------------ */
|
|
244
|
+
/* When the item preview needs to be wrapped with other elements
|
|
245
|
+
like breadcrumbs or relation description */
|
|
246
|
+
.aw-item-preview-wrapper {
|
|
247
|
+
margin-bottom: $space*1.8;
|
|
248
|
+
padding-bottom: $space*2.5;
|
|
249
|
+
border-bottom: 1px solid $color-border-light;
|
|
250
|
+
cursor: pointer;
|
|
251
|
+
|
|
252
|
+
.n7-breadcrumbs {
|
|
253
|
+
padding: 0 0 $space*1.2 0;
|
|
254
|
+
background-color: transparent;
|
|
255
|
+
cursor: pointer;
|
|
256
|
+
|
|
257
|
+
a {
|
|
258
|
+
font-size: $font-size-xs;
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
/* ------------------------------------ *\
|
|
265
|
+
#MEDIA-QUERIES
|
|
266
|
+
\* ------------------------------------ */
|
|
267
|
+
@media all and (max-width: $breakpoint-laptop) {
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
@media all and (max-width: $breakpoint-ipad-portrait) {
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
@media all and (max-width: $breakpoint-smartphone-landscape) {
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/* Retina */
|
|
277
|
+
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
278
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* MAP
|
|
3
|
+
*
|
|
4
|
+
* Style for map component
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* ------------------------------------ *\
|
|
8
|
+
MAP
|
|
9
|
+
\* ------------------------------------ */
|
|
10
|
+
.n7-map {
|
|
11
|
+
.leaflet-popup-content {
|
|
12
|
+
font-family: $font-family-main;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.leaflet-popup-content-wrapper {
|
|
16
|
+
border-radius: $border-radius;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
|
|
20
|
+
box-shadow: 0 2px 10px rgba(0,0,0,.2);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.marker-cluster-small, .marker-cluster-medium {
|
|
25
|
+
background-color: transparent;
|
|
26
|
+
div {
|
|
27
|
+
background-color: $color-main;
|
|
28
|
+
font-family: $font-family-main;
|
|
29
|
+
color: $color-text-inverse;
|
|
30
|
+
font-weight: $font-weight-bold;
|
|
31
|
+
|
|
32
|
+
&:after {
|
|
33
|
+
content: " ";
|
|
34
|
+
position: absolute;
|
|
35
|
+
display: block;
|
|
36
|
+
top: 0px;
|
|
37
|
+
width: 40px;
|
|
38
|
+
left: 0;
|
|
39
|
+
height: 40px;
|
|
40
|
+
background-color: $color-main;
|
|
41
|
+
border-radius: 20px;
|
|
42
|
+
opacity: 0.5;
|
|
43
|
+
z-index: -1;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
/* ------------------------------------ *\
|
|
53
|
+
#MEDIA-QUERIES
|
|
54
|
+
\* ------------------------------------ */
|
|
55
|
+
@media all and (max-width: $header-breakpoint-mobile) {
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@media all and (max-width: $header-breakpoint-mobile-small) {
|
|
59
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* METADATA-VIEWER
|
|
3
|
+
*
|
|
4
|
+
* Component to display metadata organized and nested in groups.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* ------------------------------------ *\
|
|
8
|
+
#METADATA-VIEWER
|
|
9
|
+
\* ------------------------------------ */
|
|
10
|
+
.n7-metadata-viewer {
|
|
11
|
+
&__group-wrapper {
|
|
12
|
+
break-inside: avoid;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
&__group {
|
|
16
|
+
break-inside: auto;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&__item {
|
|
20
|
+
margin-bottom: $space*2;
|
|
21
|
+
break-inside: avoid;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&__item-label {
|
|
25
|
+
display: block;
|
|
26
|
+
margin-bottom: calc($space/2);
|
|
27
|
+
font-size: $font-size-m;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&__item-value {
|
|
31
|
+
clear: both;
|
|
32
|
+
white-space: pre-wrap;
|
|
33
|
+
font-size: $font-size-m;
|
|
34
|
+
|
|
35
|
+
p {
|
|
36
|
+
font-size: $font-size-m;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/* Recurrent fields */
|
|
41
|
+
&__item-value {
|
|
42
|
+
dl {
|
|
43
|
+
display: block;
|
|
44
|
+
margin: $space*1.5 0 $space*1.5 $space*4;
|
|
45
|
+
padding-bottom: $space*1;
|
|
46
|
+
border-bottom: 1px solid $color-border-light;
|
|
47
|
+
|
|
48
|
+
&:last-child {
|
|
49
|
+
margin-bottom: $space*3;
|
|
50
|
+
padding-bottom: 0;
|
|
51
|
+
border-bottom: 0;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
&:first-child {
|
|
55
|
+
margin-top: $space*2.5;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
div {
|
|
59
|
+
display: flex;
|
|
60
|
+
margin-bottom: $space;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
dt {
|
|
65
|
+
width: 140px;
|
|
66
|
+
flex-basis: 140px;
|
|
67
|
+
flex-grow: 0;
|
|
68
|
+
flex-shrink: 0;
|
|
69
|
+
font-size: $font-size-s;
|
|
70
|
+
font-weight: $font-weight-bold;
|
|
71
|
+
vertical-align: top;
|
|
72
|
+
padding-right: $space;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
dd {
|
|
76
|
+
flex-grow: 2;
|
|
77
|
+
margin-left: auto;
|
|
78
|
+
font-size: $font-size-s;
|
|
79
|
+
vertical-align: top;
|
|
80
|
+
|
|
81
|
+
p {
|
|
82
|
+
display: inline;
|
|
83
|
+
margin: 0;
|
|
84
|
+
padding: 0;
|
|
85
|
+
font-size: $font-size-s;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
/* ------------------------------------ *\
|
|
93
|
+
#MEDIA-QUERIES
|
|
94
|
+
\* ------------------------------------ */
|
|
95
|
+
@media all and (max-width: $breakpoint-laptop) {
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
@media all and (max-width: $breakpoint-ipad-portrait) {
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
@media all and (max-width: $breakpoint-smartphone-landscape) {
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/* Retina */
|
|
105
|
+
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
106
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* PDF-VIEWER
|
|
3
|
+
*
|
|
4
|
+
* Style for the PDF viewer.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* ------------------------------------ *\
|
|
8
|
+
PDF-VIEWER
|
|
9
|
+
\* ------------------------------------ */
|
|
10
|
+
.aw-pdf-viewer {
|
|
11
|
+
position: relative;
|
|
12
|
+
|
|
13
|
+
.toolbar {
|
|
14
|
+
border-top: 0;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.toolbarField.pageNumber {
|
|
18
|
+
height: auto;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/* Multiple PDF navigation */
|
|
22
|
+
&__navigation {
|
|
23
|
+
padding: $space*2 $space;
|
|
24
|
+
border-top: 2px solid $color-border-normal;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&__navigation-tools {
|
|
28
|
+
display: flex;
|
|
29
|
+
flex-wrap: nowrap;
|
|
30
|
+
justify-content: space-between;
|
|
31
|
+
align-items: center;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&__navigation-prev:not(.is-disabled), &__navigation-next:not(.is-disabled) {
|
|
35
|
+
span {
|
|
36
|
+
color: $color-text-light;
|
|
37
|
+
cursor: pointer;
|
|
38
|
+
font-size: $font-size-xxxl;
|
|
39
|
+
transition: all $transition-durations;
|
|
40
|
+
|
|
41
|
+
&:hover {
|
|
42
|
+
color: $color-text-link;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&__navigation-prev.is-disabled, &__navigation-next.is-disabled {
|
|
48
|
+
span {
|
|
49
|
+
color: $color-gray-02;
|
|
50
|
+
font-size: $font-size-xxxl;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
&__navigation-select {
|
|
55
|
+
text-align: center;
|
|
56
|
+
|
|
57
|
+
select {
|
|
58
|
+
max-width: 400px;
|
|
59
|
+
text-overflow: ellipsis;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/* Loader */
|
|
64
|
+
.aw-pdf-viewer__loader {
|
|
65
|
+
position: absolute;
|
|
66
|
+
top: 50%;
|
|
67
|
+
left: 50%;
|
|
68
|
+
transform: translateX(-50%) translateY(-50%);
|
|
69
|
+
|
|
70
|
+
.n7-loader {
|
|
71
|
+
border-top-color: $color-gray-03;
|
|
72
|
+
border-right-color: $color-gray-03;
|
|
73
|
+
border-bottom-color: $color-gray-03;
|
|
74
|
+
border-left-color: $color-gray-04;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&.is-loaded {
|
|
79
|
+
.aw-pdf-viewer__loader {
|
|
80
|
+
display: none;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
/* ------------------------------------ *\
|
|
87
|
+
#MEDIA-QUERIES
|
|
88
|
+
\* ------------------------------------ */
|
|
89
|
+
@media all and (max-width: $header-breakpoint-mobile) {
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
@media all and (max-width: $header-breakpoint-mobile-small) {
|
|
93
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SIMPLE-AUTOCOMPLETE
|
|
3
|
+
*
|
|
4
|
+
* Autocomplete results suggestions component, simpler version of advanced-autocomplete.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* ------------------------------------ *\
|
|
8
|
+
#SIMPLE-AUTOCOMPLETE
|
|
9
|
+
\* ------------------------------------ */
|
|
10
|
+
.n7-simple-autocomplete {
|
|
11
|
+
// padding: $space $space;
|
|
12
|
+
// border-radius: $border-radius;
|
|
13
|
+
// border: 1px solid $color-border-normal;
|
|
14
|
+
// font-size: $font-size-s;
|
|
15
|
+
|
|
16
|
+
&__list {
|
|
17
|
+
// margin: 0;
|
|
18
|
+
// padding: 0;
|
|
19
|
+
// list-style: none;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&__item {
|
|
23
|
+
// padding: 0 0 calc($space/1.5) 0;
|
|
24
|
+
// margin-bottom: calc($space/1.5);
|
|
25
|
+
// border-bottom: 2px solid $color-border-light;
|
|
26
|
+
font-weight: $font-weight-normal;
|
|
27
|
+
cursor: pointer;
|
|
28
|
+
|
|
29
|
+
&:last-child {
|
|
30
|
+
// padding-bottom: 0;
|
|
31
|
+
// margin-bottom: 0;
|
|
32
|
+
// border-bottom: none;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&:hover {
|
|
36
|
+
// color: $color-text-link-hover;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
&__typed {
|
|
41
|
+
font-weight: $font-weight-bold;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
/* ------------------------------------ *\
|
|
47
|
+
#MEDIA-QUERIES
|
|
48
|
+
\* ------------------------------------ */
|
|
49
|
+
@media all and (max-width: $breakpoint-laptop) {
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@media all and (max-width: $breakpoint-ipad-portrait) {
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
@media all and (max-width: $breakpoint-smartphone-landscape) {
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/* Retina */
|
|
59
|
+
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
60
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TIMELINE
|
|
3
|
+
*
|
|
4
|
+
* Style for timeline component
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* ------------------------------------ *\
|
|
8
|
+
TIMELINE
|
|
9
|
+
\* ------------------------------------ */
|
|
10
|
+
.n7-timeline {
|
|
11
|
+
> div {
|
|
12
|
+
border: 0 !important;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.vis-timeline {
|
|
16
|
+
border: 1px solid $color-border-normal;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.vis-panel.vis-center {
|
|
20
|
+
border: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.vis-panel.vis-bottom {
|
|
24
|
+
border: 1px solid $color-border-normal;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/* Single item */
|
|
28
|
+
.vis-box {
|
|
29
|
+
border-top: 0;
|
|
30
|
+
border-bottom: 0;
|
|
31
|
+
border-right: 0;
|
|
32
|
+
border-radius: 0;
|
|
33
|
+
border-width: 2px;
|
|
34
|
+
border-color: $color-third;
|
|
35
|
+
background-color: $color-background-medium;
|
|
36
|
+
box-shadow: 0 2px 8px rgba(0,0,0,.1);
|
|
37
|
+
cursor: pointer;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.vis-item-content {
|
|
41
|
+
.dates {
|
|
42
|
+
font-size: $font-size-s;
|
|
43
|
+
text-align: left;
|
|
44
|
+
color: $color-text-light;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.content {
|
|
48
|
+
font-size: $font-size-s;
|
|
49
|
+
text-align: left;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/* Range */
|
|
54
|
+
.vis-range {
|
|
55
|
+
border-top: 0;
|
|
56
|
+
border-bottom: 0;
|
|
57
|
+
border-radius: 0;
|
|
58
|
+
border-width: 2px;
|
|
59
|
+
border-color: $color-third;
|
|
60
|
+
background-color: $color-background-medium;
|
|
61
|
+
box-shadow: 0 2px 8px rgba(0,0,0,.1);
|
|
62
|
+
cursor: pointer;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/* Clusters */
|
|
66
|
+
.vis-cluster {
|
|
67
|
+
width: auto !important;
|
|
68
|
+
background-color: $color-third;
|
|
69
|
+
color: $color-text-inverse;
|
|
70
|
+
font-weight: $font-weight-bold;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/* Selected items */
|
|
74
|
+
.vis-box.vis-selected,
|
|
75
|
+
.vis-range.vis-selected:not(.vis-cluster) {
|
|
76
|
+
border-color: $color-main;
|
|
77
|
+
background-color: $color-background-base;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.vis-dot.vis-selected,
|
|
81
|
+
.vis-line.vis-selected {
|
|
82
|
+
border-color: $color-main;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/* Line */
|
|
86
|
+
.vis-line {
|
|
87
|
+
border-width: 2px;
|
|
88
|
+
border-color: $color-third;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* Dot */
|
|
92
|
+
.vis-dot {
|
|
93
|
+
border-color: $color-third;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/* Data */
|
|
97
|
+
.vis-time-axis {
|
|
98
|
+
.vis-text {
|
|
99
|
+
font-family: $font-family-main;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
/* ------------------------------------ *\
|
|
106
|
+
#MEDIA-QUERIES
|
|
107
|
+
\* ------------------------------------ */
|
|
108
|
+
@media all and (max-width: $header-breakpoint-mobile) {
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
@media all and (max-width: $header-breakpoint-mobile-small) {
|
|
112
|
+
}
|