2017-07-20 10:25:32 +02:00
|
|
|
@import "constants";
|
2017-06-14 17:39:46 +02:00
|
|
|
@import "colors";
|
|
|
|
|
|
|
|
.form {
|
2017-06-20 10:09:19 +02:00
|
|
|
h1 {
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2018-07-11 17:11:19 +02:00
|
|
|
hr {
|
|
|
|
width: 100%;
|
|
|
|
height: 0;
|
|
|
|
margin-top: $default-padding;
|
|
|
|
margin-bottom: 2 * $default-padding;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid $border-grey;
|
|
|
|
}
|
|
|
|
|
2017-12-07 14:37:34 +01:00
|
|
|
@mixin notice-text-style {
|
|
|
|
font-size: 14px;
|
|
|
|
color: $grey;
|
|
|
|
}
|
|
|
|
|
2018-07-09 18:29:32 +02:00
|
|
|
.mandatory {
|
|
|
|
color: $dark-red;
|
|
|
|
}
|
|
|
|
|
2017-06-14 17:39:46 +02:00
|
|
|
label {
|
2017-08-02 15:29:12 +02:00
|
|
|
margin-bottom: $default-padding;
|
|
|
|
display: block;
|
2018-02-21 18:32:07 +01:00
|
|
|
font-weight: bold;
|
2017-08-02 15:29:12 +02:00
|
|
|
|
|
|
|
.notice {
|
2017-12-07 14:37:34 +01:00
|
|
|
@include notice-text-style;
|
2017-08-02 15:29:12 +02:00
|
|
|
display: block;
|
|
|
|
margin-top: $default-spacer;
|
2018-07-09 18:16:59 +02:00
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: $default-spacer;
|
|
|
|
}
|
2017-12-07 14:37:34 +01:00
|
|
|
}
|
2018-02-08 17:13:15 +01:00
|
|
|
|
|
|
|
&.required {
|
|
|
|
&::after {
|
|
|
|
color: $dark-red;
|
|
|
|
content: " *";
|
|
|
|
}
|
|
|
|
}
|
2017-12-07 14:37:34 +01:00
|
|
|
}
|
|
|
|
|
2017-12-14 16:21:14 +01:00
|
|
|
.editable-champ {
|
2018-04-09 18:27:15 +02:00
|
|
|
position: relative;
|
|
|
|
|
2017-12-07 14:37:34 +01:00
|
|
|
.updated-at {
|
|
|
|
@include notice-text-style;
|
|
|
|
float: right;
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: $default-spacer;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .updated-at,
|
|
|
|
.updated-at.highlighted {
|
|
|
|
visibility: visible;
|
2017-08-02 15:29:12 +02:00
|
|
|
}
|
2018-04-03 17:53:14 +02:00
|
|
|
|
2018-06-18 11:30:26 +02:00
|
|
|
// Align checkboxes on the top-left side of the label
|
|
|
|
&.editable-champ-checkbox,
|
|
|
|
&.editable-champ-engagement {
|
|
|
|
label {
|
|
|
|
padding-left: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=checkbox] {
|
|
|
|
position: absolute;
|
|
|
|
top: 1px;
|
|
|
|
left: 0px;
|
|
|
|
}
|
|
|
|
}
|
2017-06-14 17:39:46 +02:00
|
|
|
}
|
|
|
|
|
2017-11-17 19:23:46 +01:00
|
|
|
.radios {
|
|
|
|
label {
|
|
|
|
display: inline;
|
|
|
|
margin-left: $default-padding;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-26 12:09:21 +02:00
|
|
|
input[type=text]:not([data-address='true']),
|
2017-06-20 10:03:49 +02:00
|
|
|
input[type=email],
|
2017-07-20 09:54:05 +02:00
|
|
|
input[type=password],
|
2017-07-25 14:33:03 +02:00
|
|
|
input[type=date],
|
|
|
|
input[type=number],
|
|
|
|
input[type=tel],
|
2018-07-23 14:52:14 +02:00
|
|
|
input[type=file],
|
2017-07-25 14:33:03 +02:00
|
|
|
textarea,
|
|
|
|
select {
|
2017-06-14 17:39:46 +02:00
|
|
|
display: block;
|
2018-07-23 14:52:14 +02:00
|
|
|
margin-bottom: 2 * $default-padding;
|
|
|
|
|
|
|
|
&.small-margin {
|
|
|
|
margin-bottom: $default-padding / 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=text]:not([data-address='true']),
|
|
|
|
input[type=email],
|
|
|
|
input[type=password],
|
|
|
|
input[type=date],
|
|
|
|
input[type=number],
|
|
|
|
input[type=tel],
|
|
|
|
textarea,
|
|
|
|
select {
|
2017-06-14 17:39:46 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
border: solid 1px $border-grey;
|
2017-07-20 10:25:32 +02:00
|
|
|
padding: $default-padding;
|
2017-06-20 10:03:49 +02:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
background-color: $border-grey;
|
|
|
|
}
|
2018-02-08 17:13:15 +01:00
|
|
|
|
|
|
|
&.small {
|
|
|
|
padding: $default-padding / 2;
|
|
|
|
}
|
2017-06-14 17:39:46 +02:00
|
|
|
}
|
2017-07-24 09:46:13 +02:00
|
|
|
|
2017-07-25 14:33:03 +02:00
|
|
|
input[type=text],
|
|
|
|
input[type=email],
|
|
|
|
input[type=password],
|
|
|
|
input[type=date],
|
|
|
|
input[type=number],
|
|
|
|
input[type=tel],
|
|
|
|
textarea {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=email],
|
|
|
|
input[type=number],
|
|
|
|
input[type=tel], {
|
|
|
|
max-width: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=checkbox],
|
|
|
|
input[type=radio] {
|
2018-06-18 11:30:26 +02:00
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 4px;
|
2017-07-25 14:33:03 +02:00
|
|
|
margin-bottom: 2 * $default-padding;
|
|
|
|
}
|
|
|
|
|
2018-06-18 11:30:26 +02:00
|
|
|
input[type=checkbox] {
|
|
|
|
// Firefox tends to display checkbox controls smaller than other browsers.
|
|
|
|
// Ensure a consistency of size between browsers.
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
2017-07-25 14:33:03 +02:00
|
|
|
input[type=date] {
|
|
|
|
max-width: 180px;
|
|
|
|
}
|
|
|
|
|
2017-07-26 12:41:23 +02:00
|
|
|
input:invalid,
|
|
|
|
textarea:invalid {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.touched:invalid,
|
|
|
|
textarea.touched:invalid {
|
2018-02-21 18:32:07 +01:00
|
|
|
border: 1px solid $dark-red;
|
2017-07-26 12:41:23 +02:00
|
|
|
box-shadow: 0px 0px 5px $dark-red;
|
|
|
|
}
|
|
|
|
|
2017-07-26 13:22:25 +02:00
|
|
|
select,
|
|
|
|
.select2-selection {
|
2017-07-25 14:33:03 +02:00
|
|
|
// hack found here: https://stackoverflow.com/questions/1895476/how-to-style-a-select-dropdown-with-css-only-without-javascript
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
2018-02-08 17:13:15 +01:00
|
|
|
background-color: #FFFFFF;
|
|
|
|
background-image: image-url("icons/chevron-down.svg");
|
|
|
|
background-repeat: no-repeat;
|
2017-07-25 14:33:03 +02:00
|
|
|
background-size: 14px;
|
|
|
|
background-position: right 10px center;
|
2017-12-19 13:55:02 +01:00
|
|
|
padding-right: 4 * $default-spacer;
|
2017-07-25 14:33:03 +02:00
|
|
|
|
2018-02-08 17:13:15 +01:00
|
|
|
&.small {
|
|
|
|
padding-right: 3 * $default-spacer;
|
|
|
|
}
|
|
|
|
|
2017-07-25 14:33:03 +02:00
|
|
|
// CAUTION: IE hackery ahead
|
|
|
|
&::-ms-expand {
|
|
|
|
display: none; // remove default arrow in IE 10 and 11 */
|
|
|
|
}
|
|
|
|
|
|
|
|
// target Internet Explorer 9 to undo the custom arrow */
|
|
|
|
@media screen and (min-width:0\0) {
|
|
|
|
select {
|
|
|
|
background: none\9;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-26 13:22:25 +02:00
|
|
|
.select2 {
|
|
|
|
min-width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select2-container {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 2 * $default-padding;
|
|
|
|
|
|
|
|
&.select2-container--focus {
|
|
|
|
.select2-selection {
|
|
|
|
border-color: $border-grey;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// scss-lint:disable SelectorFormat
|
|
|
|
.select2-selection__rendered {
|
|
|
|
padding: $default-padding;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select2-selection__choice {
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
}
|
|
|
|
// scss-lint:enable
|
|
|
|
}
|
|
|
|
|
2017-07-26 12:09:21 +02:00
|
|
|
.twitter-typeahead {
|
|
|
|
margin-bottom: 2 * $default-padding;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.tt-input,
|
|
|
|
input.tt-hint {
|
|
|
|
border-radius: 4px;
|
|
|
|
border: solid 1px $border-grey;
|
|
|
|
padding: $default-padding;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.tt-hint {
|
|
|
|
color: $grey;
|
|
|
|
}
|
|
|
|
|
2017-07-25 14:33:03 +02:00
|
|
|
.datetime {
|
|
|
|
input[type=date] {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-section {
|
2017-11-21 16:36:26 +01:00
|
|
|
color: $blue;
|
2017-07-25 14:33:03 +02:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: 20px;
|
|
|
|
margin-bottom: 2 * $default-padding;
|
|
|
|
}
|
|
|
|
|
|
|
|
.explication-libelle {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 20px;
|
|
|
|
margin-bottom: $default-padding;
|
|
|
|
}
|
|
|
|
|
|
|
|
.explication {
|
2018-07-09 18:18:42 +02:00
|
|
|
margin-bottom: 2 * $default-padding;
|
2017-07-25 14:33:03 +02:00
|
|
|
padding: $default-padding;
|
2018-07-09 18:18:42 +02:00
|
|
|
background-color: $light-grey;
|
2018-07-09 18:16:59 +02:00
|
|
|
|
|
|
|
p:not(:last-child) {
|
|
|
|
margin-bottom: $default-padding;
|
|
|
|
}
|
2017-07-25 14:33:03 +02:00
|
|
|
}
|
|
|
|
|
2017-07-26 12:41:58 +02:00
|
|
|
.send-wrapper {
|
2018-07-24 18:10:00 +02:00
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: $default-padding;
|
2018-06-19 16:23:43 +02:00
|
|
|
margin-bottom: 2 * $default-padding;
|
2017-07-26 12:41:58 +02:00
|
|
|
|
2018-06-19 16:23:43 +02:00
|
|
|
.button {
|
2018-07-24 18:10:00 +02:00
|
|
|
margin-top: $default-padding;
|
2018-06-19 16:23:43 +02:00
|
|
|
margin-bottom: 0;
|
2017-07-26 12:41:58 +02:00
|
|
|
}
|
2018-07-24 18:10:00 +02:00
|
|
|
|
|
|
|
// Wide layout: align buttons on a single row
|
|
|
|
@media (min-width: 550px) {
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
.button:not(:first-of-type) {
|
|
|
|
margin-left: $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button.danger {
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Narrow layout: stack buttons vertically
|
|
|
|
@media (max-width: 550px) {
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.button,
|
|
|
|
.button.danger {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 350px;
|
|
|
|
line-height: 30px;
|
|
|
|
margin-left: none;
|
|
|
|
margin-right: none;
|
|
|
|
}
|
2018-07-24 17:43:28 +02:00
|
|
|
}
|
2017-07-24 09:46:13 +02:00
|
|
|
}
|
2018-02-08 17:13:15 +01:00
|
|
|
|
2018-08-01 17:27:50 +02:00
|
|
|
.send-notice {
|
|
|
|
@include notice-text-style;
|
|
|
|
margin-bottom: $default-padding;
|
|
|
|
}
|
|
|
|
|
|
|
|
.send-wrapper + .send-notice {
|
|
|
|
margin-top: - $default-padding;
|
|
|
|
}
|
|
|
|
|
2018-02-08 17:13:15 +01:00
|
|
|
.inline-champ {
|
|
|
|
margin-left: $default-spacer;
|
|
|
|
margin-right: $default-spacer;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
2018-02-21 18:32:07 +01:00
|
|
|
|
|
|
|
.pj-input {
|
|
|
|
input[type=file] {
|
|
|
|
margin: $default-padding 0 (2 * $default-padding);
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.piece-description {
|
|
|
|
margin-bottom: $default-padding;
|
|
|
|
}
|
|
|
|
}
|
2017-06-14 17:39:46 +02:00
|
|
|
}
|