Avis instruction: can ask for a confidentiel avis

This commit is contained in:
Simon Lehericey 2017-09-20 10:52:48 +02:00
parent 4dd20c17d1
commit caaa3169e5
6 changed files with 137 additions and 9 deletions

View file

@ -9,10 +9,30 @@
margin-bottom: $default-padding;
}
.avis-notice {
.lock {
margin-right: $default-spacer;
}
h2 {
font-weight: bold;
margin-bottom: $default-padding;
}
.introduction {
margin-bottom: $default-padding;
}
.confidentiel {
color: $grey;
font-weight: normal;
margin-bottom: 2 * $default-padding;
}
.date {
font-size: 12px;
color: $grey;
margin-bottom: 2 * $default-padding;
float: right;
font-weight: normal;
}
}
@ -24,7 +44,7 @@
}
.avis-notice {
font-size: 12px;
font-size: 14px;
color: $grey;
margin-bottom: 2 * $default-padding;
}
@ -32,6 +52,23 @@
input[type=email] {
max-width: 500px;
}
form > label {
display: inline-block;
}
.confidentiel {
color: $grey;
font-weight: normal;
margin-bottom: 2 * $default-padding;
}
.confidentiel-wrapper {
label,
select {
display: inline-block;
}
}
}
.list-avis {
@ -57,6 +94,10 @@
border-top: 1px solid $grey;
padding: $default-padding 0;
.lock {
margin-right: $default-spacer;
}
h2 {
font-weight: bold;
margin-bottom: $default-spacer;
@ -73,6 +114,18 @@
.avis-icon {
margin-right: $default-spacer;
}
.confidentiel {
color: $grey;
font-size: 12px;
.lock {
width: 12px;
height: 12px;
background-size: 12px 12px;
vertical-align: sub;
}
}
}
.date,

View file

@ -9,6 +9,10 @@
align-items: flex-start;
}
&.align-baseline {
align-items: baseline;
}
&.justify-between {
justify-content: space-between;
}