eurelien: retours v2 (#73559) #130

Merged
csechet merged 11 commits from wip/73559-Eurelien-Retours-V- into main 2023-01-18 16:50:58 +01:00
7 changed files with 68 additions and 9 deletions

View File

@ -123,7 +123,7 @@ div#main-content {
}
div.textcell, .cd28-page-header {
h1, h2, h3, h4, h5, p, table {
h1, h2, h3, h4, h5, h6, p, table {
margin: 0 $space-medium 0.7em $space-medium;
}
}
@ -209,3 +209,31 @@ div.cell.cd28-shadow {
&.background { background: $pink-1; }
}
}
.wcs-tracking-code-input form {
display: flex;
flex-direction: column;
align-items: center;
input {
width: 100%;
}
button {
margin: $space-small 0 0 0;
}
}
#sidebar div.searchcell form {
display: flex;
flex-direction: column;
align-items: center;
.combo-search-input {
margin: 0;
}
.combo-search--button {
margin: $space-small 0 0 0;
}
}

View File

@ -1,7 +1,7 @@
.site-header {
position: sticky;
top: 0;
z-index: 1000;
z-index: 1001;
}
div#header {

View File

@ -70,6 +70,7 @@ div.gru-nav .gru-nav-button {
.menu {
@media($max-mobile-viewport) {
padding: 0 $space-medium;
border-top: 0 !important;
}
@media($min-desktop-viewport) {

View File

@ -27,6 +27,7 @@
flex-direction: column;
justify-content: end;
padding-bottom: 1em;
hyphens: auto;
& .cd28-title-header {
font-size: $mobile-header-size;
@ -41,7 +42,7 @@
left: 0;
bottom: 0;
width: 2.5em;
height: 1em;
height: 0.75em;
display: block;
content: "";
background: url("img/title-img-yellow.svg");
@ -53,7 +54,7 @@
padding-bottom: 0;
&::before {
bottom: auto;
top: 0.8em;
top: 1em;
}
}
}
@ -79,7 +80,7 @@ h2 {
h3 { @include cd28-title($font-size-7, $font-size-6, $font-weight-7, $gray-9); }
h4 { @include cd28-title($font-size-6, $font-size-5, $font-weight-7, $gray-9); }
h5 { @include cd28-title($font-size-5, $font-size-3, $font-weight-7, $gray-9); }
h6 { @include cd28-title($font-size-4, $font-size-2, $font-weight-6, $gray-7); }
h6 { @include cd28-title($font-size-4, $font-size-2, $font-weight-6, $gray-9); }
header, main, footer {
font-weight: $font-weight-5;

View File

@ -59,7 +59,7 @@ $lineheight-2: 137.5%;
$lineheight-3: 150%;
$letterspacing-0: 0;
$letterspacing-1: 0.25rem;
$letterspacing-1: 0.025rem;
// borders & layout
$border-width-0: 1px;

View File

@ -1,6 +1,6 @@
.form-content {
h1, h2, h3, h4, h5, p, table {
margin: 0 $space-medium 0.7em $space-medium;
h1, h2, h3, h4, h5, h6, p, table {
margin: 0 0 0.7em 0;
Review

Il te manque peut-être le h6 juste au dessus ?

Il te manque peut-être le h6 juste au dessus ?
}
&--sidebox {
@ -10,7 +10,8 @@
}
&--title {
@extend h3;
@extend h4;
padding-left: 0;
}
}
@ -42,3 +43,18 @@ div#tracking-code {
}
border-radius: 0;
}
div#rub_service {
h1, h2, h3, div.dataview {
padding-left: 0;
}
h3 {
@extend h6;
text-decoration: underline;

Peut-être un oubli mais chez moi, quand on affiche le résumé d'une demande, la valeur du champ sous le label est indentée.

(contrairement à leur demande sur https://dev.entrouvert.org/attachments/73382)

Peut-être un oubli mais chez moi, quand on affiche le résumé d'une demande, la valeur du champ sous le label est indentée. (contrairement à leur demande sur https://dev.entrouvert.org/attachments/73382)
}
}
div.dataview .value {
margin-left: 0;
}

View File

@ -0,0 +1,13 @@
{% extends "wcs/base.html" %}
{% load qommon %}
{% block body %}
<div class="form-validation">
{{ form_side|default:"" }}
<div class="warningnotice">
{% standard_text "check-before-submit" %}
</div>
{{ html_form.render|safe }}
</div>
{% endblock %}