From ff06f53a5d8dacd93d61ba77785c3610cb22b9ed Mon Sep 17 00:00:00 2001 From: Thomas JUND Date: Wed, 30 Nov 2022 16:20:05 +0100 Subject: [PATCH 1/4] clermont-ici: correct center alignment of steps (#67959) --- static/clermont-ici/_custom.scss | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/static/clermont-ici/_custom.scss b/static/clermont-ici/_custom.scss index 2325e7db..71dce0dd 100644 --- a/static/clermont-ici/_custom.scss +++ b/static/clermont-ici/_custom.scss @@ -548,7 +548,10 @@ div.buttons .cancel-button button { } .wcs-step { position: relative; - flex-basis: 5rem; + flex-basis: 6rem; + &.last { + flex-basis: auto; + } } .wcs-step--marker { font-size: $fz-h3; @@ -556,9 +559,9 @@ div.buttons .cancel-button button { .wcs-step--label { display: block !important; font-size: $fz-xsmall; - left: -1.1rem; + left: -1.6rem; top: calc(100% + .5em); - + width: 6rem; } } -- 2.39.2 From f41047ccf4f651e0596069210ca453bca1e2e62b Mon Sep 17 00:00:00 2001 From: Thomas JUND Date: Wed, 30 Nov 2022 16:36:13 +0100 Subject: [PATCH 2/4] clermont-ici: increase icon size of btn-with-icon cell (#67825) --- static/clermont-ici/_custom.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/clermont-ici/_custom.scss b/static/clermont-ici/_custom.scss index 71dce0dd..8aff1456 100644 --- a/static/clermont-ici/_custom.scss +++ b/static/clermont-ici/_custom.scss @@ -415,10 +415,11 @@ div.gru-nav ul { &--icon { display: block; flex: 0 0 2em; - height: 2em; + height: 3em; margin-right: .66em; background-size: contain; background-repeat: no-repeat; + background-position: center; transform: translateY(-0.2em); } &--label { -- 2.39.2 From bcc9674337f217c8ac7e5739828cee9381ca0451 Mon Sep 17 00:00:00 2001 From: Thomas JUND Date: Fri, 2 Dec 2022 11:19:55 +0100 Subject: [PATCH 3/4] clermont-ici: move right authentic submit buttons (#68042) --- static/clermont-ici/_custom.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/static/clermont-ici/_custom.scss b/static/clermont-ici/_custom.scss index 8aff1456..cd10c92c 100644 --- a/static/clermont-ici/_custom.scss +++ b/static/clermont-ici/_custom.scss @@ -566,6 +566,20 @@ div.buttons .cancel-button button { } } +// +// AUTHENTIC +// + +.authentic-page { + // submit button in right + form .buttons { + display: flex; + .submit-button { + order: 1; + } + } +} + // // FOOTER -- 2.39.2 From d68895f371c0d44b5f63b473fabf75ea4a10361a Mon Sep 17 00:00:00 2001 From: Thomas JUND Date: Fri, 2 Dec 2022 14:12:50 +0100 Subject: [PATCH 4/4] clermont-ici: align right search cell button (#68040) --- static/clermont-ici/_custom.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/clermont-ici/_custom.scss b/static/clermont-ici/_custom.scss index cd10c92c..87199311 100644 --- a/static/clermont-ici/_custom.scss +++ b/static/clermont-ici/_custom.scss @@ -481,6 +481,10 @@ div.gru-nav ul { background-color: $gray; } } + + #sidebar div.searchcell form { + text-align: right; + } } div.carrousel-content input + div div.carrousel-item { -- 2.39.2