diff --git a/src/assets/styles/common-help-mode.scss b/src/assets/styles/common-help-mode.scss
index 2b5e5ab..9cd680f 100644
--- a/src/assets/styles/common-help-mode.scss
+++ b/src/assets/styles/common-help-mode.scss
@@ -1,5 +1,5 @@
.help-mode-on-mouse-over {
- z-index: 1000;
+ z-index: 10;
position: absolute;
top: -5px;
left: -5px;
@@ -61,3 +61,17 @@
margin-top: 10px;
margin-left: 15px;
}
+
+.help-mode-on-mouse-over-reset-filters {
+ z-index: 20;
+ padding-left: 4px;
+}
+
+.help-mode-on-mouse-over-dossier-list,
+.help-mode-on-mouse-over-document-list {
+ margin-top: 5px;
+}
+
+.help-mode-on-mouse-over-edit-dossier-attributes {
+ z-index: 20;
+}
diff --git a/src/lib/help-mode/help-mode/help-mode.component.scss b/src/lib/help-mode/help-mode/help-mode.component.scss
index e848a0c..421d474 100644
--- a/src/lib/help-mode/help-mode/help-mode.component.scss
+++ b/src/lib/help-mode/help-mode/help-mode.component.scss
@@ -42,7 +42,7 @@
border-right: 8px solid var(--iqser-helpmode-primary);
border-top: 8px solid var(--iqser-helpmode-primary);
border-bottom: 60px solid var(--iqser-helpmode-primary);
- z-index: 10;
+ z-index: 5;
position: absolute;
display: flex;
justify-content: center;
diff --git a/src/lib/listing/page-header/models/action-config.model.ts b/src/lib/listing/page-header/models/action-config.model.ts
index 311e3fc..fdb27ab 100644
--- a/src/lib/listing/page-header/models/action-config.model.ts
+++ b/src/lib/listing/page-header/models/action-config.model.ts
@@ -2,4 +2,5 @@ import { BaseHeaderConfig } from './base-config.model';
export interface ActionConfig extends BaseHeaderConfig {
readonly action: ($event: MouseEvent) => void;
+ readonly helpModeKey?: string;
}
diff --git a/src/lib/listing/page-header/page-header.component.html b/src/lib/listing/page-header/page-header.component.html
index b2aba3f..27f49b3 100644
--- a/src/lib/listing/page-header/page-header.component.html
+++ b/src/lib/listing/page-header/page-header.component.html
@@ -12,7 +12,7 @@