[Library & common-assets | new-theme]: z-index problems in landing pages & scrolling on page change in tabs and versions modals | Bug fix in projects tab of organizatio landing.

1. landing-utils.css: [Bug fix] z-indexes of uk-dropdown set to 981 (landing only), z-index of #main-tabs-div set to 978, z-index of graph_and_feedback set to 979.
2. showAuthors.component.ts: [Bug fix] Added @Input() isSticky: boolean = false; and when isSticky is true, do not show orcid info & dropdown for authors (z-index problem).
3. resultLanding.component.ts: Added scrolling in "References" and "External Databases" (bioentiites) tabs on page change.
4. resultLanding.component.html: [Bug fix] For the right sidebar, added inner <div class="uk-overflow-auto uk-height-1-1"> inside sticky - z-index problem.
5. result/deletedByInference.component.ts & organization/deletedByInference.component.ts: Added scrolling on page change.
6. projects-in-modal.component.ts:
   a. Added scrolling in "Projects" tab on page change.
   b. Show number of projects and pages always.
   b. [Bug fix] On filterChange(), set page=1.
7. landing-header.component.ts: Added parameter isSticky in <showAuthors>.
8. Added scrolling in "Related Data Sources" tab on page change.
This commit is contained in:
Konstantina Galouni 2022-06-16 19:37:30 +03:00
parent b261d0f845
commit 4b13058c7d
1 changed files with 5 additions and 3 deletions

View File

@ -374,14 +374,16 @@
color: var(--landing-primary-color);
}
.uk-dropdown {
z-index: 981;
}
#main-tabs-div {
background: rgba(var(--landing-default-color-rgb), 0.95);
top: 0;
position: relative;
/*transition: background-color 0.3s ease-out 0s, top 0.2s ease-out 0s;*/
z-index: 979;
z-index: 978;
}
#main-tabs-div.active {
@ -393,7 +395,7 @@
#graph_and_feedback {
/*background: rgba(var(--landing-light-color-rgb), 0.95);*/
background: rgba(var(--landing-default-color-rgb), 0.95);
z-index: 980;
z-index: 979;
}
#main-tabs-div, #graph_and_feedback {