From 81ab2eef35e959b56df660e97877329de033fa66 Mon Sep 17 00:00:00 2001 From: Carlos Roca Date: Thu, 25 Jul 2024 09:27:43 +0200 Subject: [PATCH] [IMP] web_responsive: Set AttachmentViewer z-index upper than chatter Before this changes when oppening an attachment from the chatter the attachment was behind the chatter and if we try to hide it, the attachement disappears. With this changes the AttachmentViewer appears in front of the chatter and the problem does not exists anymore. --- .../src/components/attachment_viewer/attachment_viewer.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_responsive/static/src/components/attachment_viewer/attachment_viewer.scss b/web_responsive/static/src/components/attachment_viewer/attachment_viewer.scss index 57f537454390..7be9050c6aed 100644 --- a/web_responsive/static/src/components/attachment_viewer/attachment_viewer.scss +++ b/web_responsive/static/src/components/attachment_viewer/attachment_viewer.scss @@ -14,7 +14,7 @@ } .o_AttachmentViewer { // On-top of navbar - z-index: 10; + z-index: 1100; position: absolute; right: 0; top: 0;