2017-07-11 16:09:03 +02:00
|
|
|
@import "colors";
|
|
|
|
@import "common";
|
|
|
|
@import "constants";
|
|
|
|
|
2019-07-30 14:37:00 +02:00
|
|
|
.procedure-header {
|
|
|
|
a.header-link {
|
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 1 * $default-padding;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-11 16:09:03 +02:00
|
|
|
#procedure-show {
|
2017-07-18 15:12:55 +02:00
|
|
|
h1 {
|
|
|
|
color: $black;
|
|
|
|
font-size: 22px;
|
2019-03-13 17:37:07 +01:00
|
|
|
margin-bottom: 1 * $default-padding;
|
|
|
|
}
|
|
|
|
|
2020-03-24 13:42:37 +01:00
|
|
|
.titre-dossiers {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-07-11 15:40:09 +02:00
|
|
|
.dossiers-table {
|
2017-10-17 17:54:32 +02:00
|
|
|
margin-top: $default-spacer;
|
|
|
|
margin-bottom: 3 * $default-spacer;
|
2017-07-11 15:43:20 +02:00
|
|
|
}
|
|
|
|
|
2017-09-15 14:46:17 +02:00
|
|
|
.procedure-actions {
|
|
|
|
margin-left: auto;
|
2017-09-21 15:19:10 +02:00
|
|
|
flex-shrink: 0;
|
2017-09-15 14:46:17 +02:00
|
|
|
|
|
|
|
.dropdown-items li {
|
|
|
|
min-width: 150px;
|
|
|
|
}
|
|
|
|
}
|
2017-09-28 11:04:18 +02:00
|
|
|
|
2020-03-20 17:59:16 +01:00
|
|
|
.afficher-dossiers-supprimes {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
2017-09-28 11:04:18 +02:00
|
|
|
.filter {
|
|
|
|
display: inline-block;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
background-color: $light-blue;
|
|
|
|
border-radius: 4px;
|
|
|
|
color: #FFFFFF;
|
|
|
|
height: 36px;
|
|
|
|
line-height: 36px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close-icon {
|
|
|
|
vertical-align: top;
|
|
|
|
margin-top: 12px;
|
2018-11-07 17:31:11 +01:00
|
|
|
margin-right: 6px;
|
2017-09-28 11:04:18 +02:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2019-07-11 10:58:40 +02:00
|
|
|
|
2020-03-24 15:10:38 +01:00
|
|
|
.explication-onglet {
|
2019-07-11 10:58:40 +02:00
|
|
|
margin-bottom: 3 * $default-spacer;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2021-02-11 15:37:45 +01:00
|
|
|
|
|
|
|
[data-react-class="ComboMultipleDropdownList"] {
|
|
|
|
margin-bottom: $default-fields-spacer;
|
|
|
|
|
|
|
|
[data-reach-combobox-token-list] {
|
|
|
|
padding: 0.25 * $default-padding;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-reach-combobox-token] {
|
|
|
|
border: solid 1px $border-grey;
|
|
|
|
color: $black;
|
|
|
|
margin: 0.25 * $default-padding;
|
|
|
|
border-radius: 2px;
|
|
|
|
padding: 0.25 * $default-padding;
|
|
|
|
cursor: pointer;
|
|
|
|
list-style: none;
|
2021-04-23 13:45:04 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2021-02-11 15:37:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
[data-reach-combobox-token]:focus {
|
|
|
|
background-color: $black;
|
|
|
|
color: $white;
|
2021-04-23 13:45:04 +02:00
|
|
|
|
|
|
|
[data-combobox-remove-token] {
|
|
|
|
background-color: $black;
|
|
|
|
color: $white;
|
|
|
|
}
|
2021-02-11 15:37:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[data-reach-combobox-input] {
|
|
|
|
outline: none;
|
|
|
|
flex-grow: 1;
|
2021-04-23 13:45:04 +02:00
|
|
|
margin: $default-spacer;
|
|
|
|
padding: $default-spacer;
|
|
|
|
border-radius: 4px;
|
|
|
|
border: solid 1px $border-grey;
|
|
|
|
margin-top: 0;
|
2021-02-11 15:37:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
[data-reach-combobox-input]:focus {
|
2021-09-20 15:04:24 +02:00
|
|
|
border-color: $blue-france-500;
|
2021-02-11 15:37:45 +01:00
|
|
|
}
|
|
|
|
}
|
2017-07-11 16:09:03 +02:00
|
|
|
}
|
2021-06-23 18:56:04 +02:00
|
|
|
|
|
|
|
ul.revision-changes {
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
li {
|
|
|
|
padding-top: 0.25 * $default-padding;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|