From 805121ff98d6a8e9c0ec4b64df2657b42e660fe4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20S=C3=A9chet?= Date: Mon, 28 Nov 2022 16:45:10 +0100 Subject: [PATCH 1/6] angouleme: remove decoration on links in footer (#71790) --- static/angouleme/_custom.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/static/angouleme/_custom.scss b/static/angouleme/_custom.scss index dbe7d6b0..71184c4c 100644 --- a/static/angouleme/_custom.scss +++ b/static/angouleme/_custom.scss @@ -121,9 +121,11 @@ div#main-content-wrapper { div#footer{ display:flex; flex-direction: row; + a { - text-decoration: underline; + text-decoration: none; } + @media ($min-desktop-viewport) { &::before { margin: 1rem 2rem; -- 2.39.2 From dcf93f5b0155ab97357723a0056448ec32d28a38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20S=C3=A9chet?= Date: Mon, 28 Nov 2022 16:46:29 +0100 Subject: [PATCH 2/6] angouleme: shrink footer to page width (#71790) --- static/angouleme/_vars.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/static/angouleme/_vars.scss b/static/angouleme/_vars.scss index 85e81f2e..7b2ae592 100644 --- a/static/angouleme/_vars.scss +++ b/static/angouleme/_vars.scss @@ -78,3 +78,4 @@ $wcs-step-color: $gray; $footer-background: $gray; $footer-link-color: white; +$footer-full-width-background: false; -- 2.39.2 From 799c5845bf5c08ce6b24248acf4a59bfe5b5fd80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20S=C3=A9chet?= Date: Mon, 28 Nov 2022 16:47:15 +0100 Subject: [PATCH 3/6] angouleme: make logo fit available width and space correctly (#71790) --- static/angouleme/_custom.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/static/angouleme/_custom.scss b/static/angouleme/_custom.scss index 71184c4c..86a1217e 100644 --- a/static/angouleme/_custom.scss +++ b/static/angouleme/_custom.scss @@ -122,12 +122,22 @@ div#footer{ display:flex; flex-direction: row; + > * { + flex-grow: 1; + } + a { text-decoration: none; } + .ang-footer-logo-list { + display: flex; + justify-content: space-evenly; + } + @media ($min-desktop-viewport) { &::before { + flex-grow: 0; margin: 1rem 2rem; content: url(/assets/footer:logo); } -- 2.39.2 From cf717125a71fec641d8ccffb032963458dd755bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20S=C3=A9chet?= Date: Mon, 28 Nov 2022 16:47:35 +0100 Subject: [PATCH 4/6] angouleme: make hr in footer a simple blank line, full width (#71790) --- static/angouleme/_custom.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/static/angouleme/_custom.scss b/static/angouleme/_custom.scss index 86a1217e..30954eca 100644 --- a/static/angouleme/_custom.scss +++ b/static/angouleme/_custom.scss @@ -130,6 +130,14 @@ div#footer{ text-decoration: none; } + hr { + margin: 2rem 0; + width: 100%; + height: 1px; + border: none; + background: white; + } + .ang-footer-logo-list { display: flex; justify-content: space-evenly; -- 2.39.2 From 0d4cacd9d9c43759291a36102aa8d553dd02fa26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20S=C3=A9chet?= Date: Mon, 28 Nov 2022 16:51:28 +0100 Subject: [PATCH 5/6] angouleme: change cancel-button background (#71790) --- static/angouleme/_custom.scss | 2 +- static/angouleme/_vars.scss | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/static/angouleme/_custom.scss b/static/angouleme/_custom.scss index 30954eca..95b98290 100644 --- a/static/angouleme/_custom.scss +++ b/static/angouleme/_custom.scss @@ -174,7 +174,7 @@ div#footer{ } %cancel-button { - background: $orange; + background: $gray-2; } %title { diff --git a/static/angouleme/_vars.scss b/static/angouleme/_vars.scss index 7b2ae592..f981bf32 100644 --- a/static/angouleme/_vars.scss +++ b/static/angouleme/_vars.scss @@ -2,6 +2,7 @@ $blue: #009CDC; $dark-blue: #2382C1; $light-gray: #F6F6F6; $gray: #64777E; +$gray-2: #555454; $orange: #E34107; $header-height: 220px; -- 2.39.2 From 0c75f274c8bb13f370aca80def79cfba33127712 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20S=C3=A9chet?= Date: Mon, 28 Nov 2022 18:18:20 +0100 Subject: [PATCH 6/6] angouleme: change cell-entry color & hover color (#71790) --- static/angouleme/_custom.scss | 2 +- static/angouleme/_vars.scss | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/static/angouleme/_custom.scss b/static/angouleme/_custom.scss index 95b98290..3dad1f69 100644 --- a/static/angouleme/_custom.scss +++ b/static/angouleme/_custom.scss @@ -154,7 +154,7 @@ div#footer{ %cell-links-list { li > a { - border-left: 0 solid $orange; + border-left: 0 solid $cell-entry-color; transition: border-width 200ms; &:hover { border-left-width: 5px; diff --git a/static/angouleme/_vars.scss b/static/angouleme/_vars.scss index f981bf32..2e7aa017 100644 --- a/static/angouleme/_vars.scss +++ b/static/angouleme/_vars.scss @@ -1,5 +1,6 @@ $blue: #009CDC; $dark-blue: #2382C1; +$dark-green: #074b5b; $light-gray: #F6F6F6; $gray: #64777E; $gray-2: #555454; @@ -55,8 +56,8 @@ $cell-border-radius: 0; $cell-border: none; $cell-background: transparent; $cell-entry-border: 1px solid $primary-color; -$cell-entry-color: $orange; -$cell-entry-hover-color: $orange; +$cell-entry-color: $dark-green; +$cell-entry-hover-color: $dark-green; $cell-entry-hover-background: transparent; $cell-open-foldable-icon: "\f0fe"; $cell-close-foldable-icon: "\f146"; -- 2.39.2