From e24f368d0051b504a2029f759bec282e78ff6ef9 Mon Sep 17 00:00:00 2001 From: Alexel Date: Wed, 16 Aug 2023 14:01:17 -0400 Subject: [PATCH 1/6] =?UTF-8?q?Ajout=20de=20classes=20=C3=A0=20details,=20?= =?UTF-8?q?summary=20et=20li=20dans=20documentation.gohtml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/html/documentation.gohtml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/html/documentation.gohtml b/templates/html/documentation.gohtml index 02849a2..fd2a426 100644 --- a/templates/html/documentation.gohtml +++ b/templates/html/documentation.gohtml @@ -14,12 +14,12 @@ {{ range . }} {{ $bucket_name := .Name }} {{ $bucket_display_name := .DisplayName }} -
- {{ $bucket_display_name }} +
+ {{ $bucket_display_name }}
-- 2.45.2 From 5bebc1e670cd35a0a957e700c876c25c554d6c70 Mon Sep 17 00:00:00 2001 From: Alexel Date: Wed, 16 Aug 2023 14:02:43 -0400 Subject: [PATCH 2/6] =?UTF-8?q?Retrait=20des=20classes=20(=C3=A7a=20va=20d?= =?UTF-8?q?ans=20la=20branch...)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/html/documentation.gohtml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/html/documentation.gohtml b/templates/html/documentation.gohtml index fd2a426..02849a2 100644 --- a/templates/html/documentation.gohtml +++ b/templates/html/documentation.gohtml @@ -14,12 +14,12 @@ {{ range . }} {{ $bucket_name := .Name }} {{ $bucket_display_name := .DisplayName }} -
- {{ $bucket_display_name }} +
+ {{ $bucket_display_name }}
-- 2.45.2 From 415ad428f723e9f91a7a1fece6111c12f4ef7a3f Mon Sep 17 00:00:00 2001 From: Alexel Date: Wed, 16 Aug 2023 14:04:43 -0400 Subject: [PATCH 3/6] =?UTF-8?q?Ajout=20de=20classes=20=C3=A0=20details,=20?= =?UTF-8?q?summary=20et=20li=20dans=20documentation.gohtml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/html/documentation.gohtml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/html/documentation.gohtml b/templates/html/documentation.gohtml index 02849a2..fd2a426 100644 --- a/templates/html/documentation.gohtml +++ b/templates/html/documentation.gohtml @@ -14,12 +14,12 @@ {{ range . }} {{ $bucket_name := .Name }} {{ $bucket_display_name := .DisplayName }} -
- {{ $bucket_display_name }} +
+ {{ $bucket_display_name }}
-- 2.45.2 From 26751f508f099074c13f52646dce462d986ffd9b Mon Sep 17 00:00:00 2001 From: Alexel Date: Wed, 16 Aug 2023 15:10:49 -0400 Subject: [PATCH 4/6] =?UTF-8?q?Mise=20en=20page=20de=20la=20section=20docu?= =?UTF-8?q?mentation=20Cat=C3=A9gories=20de=20documents=20et=20noms=20de?= =?UTF-8?q?=20documents?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/documentation.css | 45 +++++++++++++++++++++++++++++ templates/html/documentation.gohtml | 5 ++-- 2 files changed, 48 insertions(+), 2 deletions(-) create mode 100644 public/css/documentation.css diff --git a/public/css/documentation.css b/public/css/documentation.css new file mode 100644 index 0000000..80d886a --- /dev/null +++ b/public/css/documentation.css @@ -0,0 +1,45 @@ +.documentationCategorie { + font-family: "Poppins"; + font-weight: 600; + /*semi-bold*/ + font-size: 1.5rem; + /*24px*/ + color: #fff; + /*Blanc pur*/ + background-color: #394596; + /*Blanc pur*/ + text-align: left; + width: 100%; + cursor: pointer; +} + +.documentationDescription { + padding: 20px; +} + +.documentationListe { + font-weight: 400; + /*semi-bold*/ + font-size: 1rem; + /*16px*/ + background-color: #fff; + list-style: none; + padding: 0; +} + +.documentationDocument { + font-weight: 400; + /*semi-bold*/ + font-size: 1rem; + /*16px*/ + padding: 10px 20px; +} + +.documentationDocument:hover { + background-color: rgba(); +} + +.documentationLien { + height: inherit; + width: inherit; +} \ No newline at end of file diff --git a/templates/html/documentation.gohtml b/templates/html/documentation.gohtml index fd2a426..ab74478 100644 --- a/templates/html/documentation.gohtml +++ b/templates/html/documentation.gohtml @@ -4,6 +4,7 @@ AGECEM | Documentation + {{ template "general-html" }} @@ -17,9 +18,9 @@
{{ $bucket_display_name }} -
-- 2.45.2 From 84a2dfbd9eb95eaf36d3c8d92565d33a09adf576 Mon Sep 17 00:00:00 2001 From: Alexel Date: Wed, 16 Aug 2023 15:15:53 -0400 Subject: [PATCH 5/6] Couleur de hover pour les liens des documents --- public/css/documentation.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/css/documentation.css b/public/css/documentation.css index 80d886a..c1080c5 100644 --- a/public/css/documentation.css +++ b/public/css/documentation.css @@ -36,7 +36,7 @@ } .documentationDocument:hover { - background-color: rgba(); + background-color: rgba(255, 86, 60, 0.2); } .documentationLien { -- 2.45.2 From 44c3d03a9994e80d00acb54e1d246736352ffb99 Mon Sep 17 00:00:00 2001 From: Alexel Date: Wed, 16 Aug 2023 17:27:37 -0400 Subject: [PATCH 6/6] Modification du padding du lien de document --- public/css/documentation.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/css/documentation.css b/public/css/documentation.css index c1080c5..e459899 100644 --- a/public/css/documentation.css +++ b/public/css/documentation.css @@ -32,7 +32,7 @@ /*semi-bold*/ font-size: 1rem; /*16px*/ - padding: 10px 20px; + padding: 15px 30px; } .documentationDocument:hover { -- 2.45.2