From aa9c1bc3fa79f312ca4ad75e4bebc915f425f0a6 Mon Sep 17 00:00:00 2001 From: HeleneCreusot Date: Thu, 18 Jul 2024 15:54:58 +0200 Subject: [PATCH 1/3] fix(theme inist header): le lien sur le titre du header renvoie sur home Closes #2097 #2098 --- src/app/custom/themes/inist/index.ejs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/custom/themes/inist/index.ejs b/src/app/custom/themes/inist/index.ejs index c665ea1b0..434b554ab 100644 --- a/src/app/custom/themes/inist/index.ejs +++ b/src/app/custom/themes/inist/index.ejs @@ -29,11 +29,11 @@ Institut de l'information scientifique et technique + <% if (custom.siteTitle ) { %>

- - <%= custom.title %> - + <%= custom.siteTitle %>

+ <% } %>
From 4c87d2517c3dfcd4ce17f318463fdd3d6ee33ee4 Mon Sep 17 00:00:00 2001 From: HeleneCreusot Date: Thu, 18 Jul 2024 16:16:53 +0200 Subject: [PATCH 2/3] fix(front drawers visibility): place header behind drawers by z-index Closes #2098 --- src/app/custom/themes/inist/css/inist-styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/custom/themes/inist/css/inist-styles.css b/src/app/custom/themes/inist/css/inist-styles.css index 5edde7b84..6983397c7 100644 --- a/src/app/custom/themes/inist/css/inist-styles.css +++ b/src/app/custom/themes/inist/css/inist-styles.css @@ -126,7 +126,7 @@ header { background-repeat: repeat-x; background-position: top left; opacity: 1; - z-index: 1150; + z-index: 1100; margin: 0; height: var(--height-header); } From 837295fe2d1c89600ff87d87fe2ebe2400069861 Mon Sep 17 00:00:00 2001 From: HeleneCreusot Date: Fri, 19 Jul 2024 09:01:18 +0200 Subject: [PATCH 3/3] refactor(theme's variables homogenes names): title -> siteTitle Closes #2014 --- src/app/custom/themes/inist/lodex-theme.json | 36 ++++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/app/custom/themes/inist/lodex-theme.json b/src/app/custom/themes/inist/lodex-theme.json index 34ac62aca..f04a3e119 100644 --- a/src/app/custom/themes/inist/lodex-theme.json +++ b/src/app/custom/themes/inist/lodex-theme.json @@ -1,21 +1,21 @@ { - "version": "6", - "licence": "All Right Reserved", - "name": { - "fr": "INIST", - "en": "INIST" - }, - "description": { - "fr": "Thème INIST (restreint)", - "en": "INIST theme (restricted)" - }, - "configuration": { - "files": { - "index": "index.ejs", - "palette": "inistTheme.js" + "version": "6", + "licence": "All Right Reserved", + "name": { + "fr": "INIST", + "en": "INIST" }, - "variables": { - "title": "Etudes" + "description": { + "fr": "Thème INIST (restreint)", + "en": "INIST theme (restricted)" + }, + "configuration": { + "files": { + "index": "index.ejs", + "palette": "inistTheme.js" + }, + "variables": { + "siteTitle": "Etudes" + } } - } -} \ No newline at end of file +}