From 81b3fbac8e5bb94ebf868601a54772a7f1676012 Mon Sep 17 00:00:00 2001 From: Agate Berriot Date: Wed, 18 Jan 2023 10:37:46 +0100 Subject: [PATCH 1/5] saumur: reduce padding and margin on link list description (#73538) --- static/saumur/_custom.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/static/saumur/_custom.scss b/static/saumur/_custom.scss index 13c75b0a..66834fb1 100644 --- a/static/saumur/_custom.scss +++ b/static/saumur/_custom.scss @@ -100,6 +100,15 @@ h3 { %cell-links-list { font-family: Roboto, sans-serif; + li a { + z-index: 0; + } + li div.description p { + margin-left: 0; + margin-top: -$space-large * 0.7; + position: relative; + z-index: 1000; + } } .search-cell.transparent { -- 2.39.2 From 5907e961784f2490f192ed16a1fd9e9585e1cf46 Mon Sep 17 00:00:00 2001 From: Agate Berriot Date: Wed, 18 Jan 2023 10:47:56 +0100 Subject: [PATCH 2/5] saumur: remove border on main content and switch to white page background (#73538) --- static/saumur/_custom.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/static/saumur/_custom.scss b/static/saumur/_custom.scss index 66834fb1..e72b3762 100644 --- a/static/saumur/_custom.scss +++ b/static/saumur/_custom.scss @@ -16,7 +16,7 @@ $banner-height: 300px; // golbal layout main { - background: $gray-light-2; + background: white; padding: $space-large 0; } @@ -148,6 +148,10 @@ div.link-cell { } } +#main-content #sidebar + #columns-wrapper > * { + border: none; +} + %orange-border { content: " "; display: block; -- 2.39.2 From edaf19ba9b6dbc2caee8fbe2ab4dc28926561407 Mon Sep 17 00:00:00 2001 From: Agate Berriot Date: Wed, 18 Jan 2023 10:49:54 +0100 Subject: [PATCH 3/5] saumur: remove tracking code cell description (#73538) --- static/saumur/_custom.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/static/saumur/_custom.scss b/static/saumur/_custom.scss index e72b3762..0deeea33 100644 --- a/static/saumur/_custom.scss +++ b/static/saumur/_custom.scss @@ -3,8 +3,8 @@ $banner-height: 300px; %button { box-shadow: none; - text-transform: uppercase; &:hover { + text-transform: uppercase; box-shadow: none; } } @@ -205,6 +205,12 @@ body:not(.authentic-page):not(.wcs-page) #columns, border: none; } } +// tracking code cell +.tracking-code-input-cell { + p { + display: none; + } +} // communes selector div#services-communes { -- 2.39.2 From 8d5482362487bf1f13d877942cd0228ddd01069d Mon Sep 17 00:00:00 2001 From: Agate Berriot Date: Wed, 18 Jan 2023 10:54:06 +0100 Subject: [PATCH 4/5] saumur: add '+ DE SERVICES' in form category list (#73538) --- static/saumur/_custom.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/static/saumur/_custom.scss b/static/saumur/_custom.scss index 0deeea33..15a41616 100644 --- a/static/saumur/_custom.scss +++ b/static/saumur/_custom.scss @@ -193,7 +193,12 @@ div.link-cell { } } - +.wcs-forms-of-category-cell .add-more-items--button { + color: $gray-dark-1; + &::after { + content: " DE SERVICES" + } +} // borderless cells in grid body:not(.authentic-page):not(.wcs-page) #columns, -- 2.39.2 From 90ae7f3b346c8b1a705be1c119b296b5e08423a0 Mon Sep 17 00:00:00 2001 From: Agate Berriot Date: Wed, 18 Jan 2023 11:22:30 +0100 Subject: [PATCH 5/5] saumur: add missing customizations for footer (#73538) --- static/saumur/_custom.scss | 33 ++++++++++++++++++++++++++++++--- static/saumur/_vars.scss | 6 +++--- 2 files changed, 33 insertions(+), 6 deletions(-) diff --git a/static/saumur/_custom.scss b/static/saumur/_custom.scss index 15a41616..9acdb678 100644 --- a/static/saumur/_custom.scss +++ b/static/saumur/_custom.scss @@ -248,11 +248,38 @@ div#services-communes { } // footer + #footer-wrapper { + padding-bottom: 0; + #footer { + max-width: 100%; + } margin-top: 0; -} -footer { - text-align: center; + border-top: 3px solid $orange; + .cell { + a { + text-decoration: none; + } + & > div { + max-width: $width; + margin: 0 auto; + } + } + .text-cell:first-child { + > div { + max-width: $width * 0.75; + } + strong { + color: $orange; + } + } + .text-cell:not(:first-child) { + background: $orange; + color: white; + a { + color: white; + } + } } div#tracking-code a { diff --git a/static/saumur/_vars.scss b/static/saumur/_vars.scss index b8050b5b..d16deda1 100644 --- a/static/saumur/_vars.scss +++ b/static/saumur/_vars.scss @@ -94,9 +94,9 @@ $widget-border: 1px solid $gray-dark-1; $widget-focus-border: 1px solid $orange; $widget-focus-background: $white; -$footer-background: $orange; -$footer-color: $white; -$footer-link-color: $white; +$footer-background: white; +$footer-color: $font-color; +$footer-link-color: $orange; $form-sidebar-position: top; $wcs-step-marker-type: disc tied; -- 2.39.2