diff --git a/src/app/methodology/methodology.component.ts b/src/app/methodology/methodology.component.ts index 83f9a4c..fb387ed 100644 --- a/src/app/methodology/methodology.component.ts +++ b/src/app/methodology/methodology.component.ts @@ -20,8 +20,11 @@ import {ActivatedRoute, Router} from "@angular/router"; Entities
  • - Attributes of Entities + Inherited and Inferred Attributes
  • +
  • + Constructed Attributes +
  • @@ -219,7 +396,25 @@ import {ActivatedRoute, Router} from "@angular/router";

    Inclusion, transparency,
    quality, state of the art
    technology.

    +
    +

    Our methodological approach is based on the following operational quality criteria:

    + +
    The text above is modified from this report (DOI: 10.2777/268348).
    +
    +

    Step-by-step

    diff --git a/src/app/monitor/monitor.component.css b/src/app/monitor/monitor.component.css index eab7e42..5137474 100644 --- a/src/app/monitor/monitor.component.css +++ b/src/app/monitor/monitor.component.css @@ -1,7 +1,21 @@ .uk-card { min-height: 270px; } - .uk-card.semiFiltered, .uk-card.semiFiltered > * > .highcharts-series-group { opacity: 0.5; } +.custom-description-overlay { + position: absolute; + top: 0; + left: 0; + background: rgba(0,0,0,0.8); + width: 100%; + height: 100%; +} +.custom-description-overlay .inner { + background: #fff; + border-radius: 6px; + width: 75%; + max-height: 75%; + overflow: auto; +} diff --git a/src/app/monitor/monitor.component.html b/src/app/monitor/monitor.component.html index e11b093..e2a7fc4 100644 --- a/src/app/monitor/monitor.component.html +++ b/src/app/monitor/monitor.component.html @@ -122,10 +122,13 @@ {{numberResults.get(i + '-' + j) | number}} -- + + {{numberResults.get(i + '-' + j) | number}} +
    {{indicator.name}}
    -
    +
    @@ -148,9 +151,9 @@
    -
    -
    +

    {{indicator.name + " "}}

    @@ -176,21 +179,34 @@ [src]="chartsActiveType.get(i + '-' + j).safeResourceUrl" class="uk-width-1-1 uk-blend-multiply" [ngClass]="'uk-height-' + (indicator.height?indicator.height.toLowerCase():'medium')">
    -
    -
    -

    - - {{indicator.description}} - -
    - - {{indicator.additionalDescription}} - -

    -
    + class="uk-position-bottom-left uk-margin-left uk-margin-small-bottom"> + + + + Description + +
    +
    +
    +
    + + + +
    +
    +

    + {{indicator.description}} +

    +

    + {{indicator.additionalDescription}} +

    +
    +
    +
    diff --git a/src/app/monitor/monitor.component.ts b/src/app/monitor/monitor.component.ts index 9e60a71..e620bdb 100644 --- a/src/app/monitor/monitor.component.ts +++ b/src/app/monitor/monitor.component.ts @@ -79,6 +79,7 @@ export class MonitorComponent implements OnInit, OnDestroy { public keyword: FormControl; public statsUpdateDate: Date; public stickyPageHeader: boolean = false; + public showDescriptionOverlay: boolean[] = []; constructor( private route: ActivatedRoute, @@ -568,4 +569,9 @@ export class MonitorComponent implements OnInit, OnDestroy { logIn() { this.userManagementService.login(); } + + toggleDescriptionOverlay(j) { + console.log(j); + this.showDescriptionOverlay[j] = !this.showDescriptionOverlay[j]; + } } diff --git a/src/assets/print.css b/src/assets/print.css index b96c843..ab42c8f 100644 --- a/src/assets/print.css +++ b/src/assets/print.css @@ -6,13 +6,19 @@ #notifications-switcher, .getDataButton, .hideInfo, - .footer-light-background { + .footer-light-background, + #filters_switcher_toggle, + .monitor_dashboard-menu, + #main-menu, + .uk-sticky-placeholder { display: none !important; top: 0 !important; left: 0 !important; right: 0 !important; padding: 0 !important; margin: 0 !important; + position: relative !important; + height: 0px !important; } #page_content, .uk-navbar-center { @@ -23,4 +29,7 @@ padding: 0 !important; margin: 0 !important; } + .uk-hidden { + display:unset !important; + } } \ No newline at end of file