demarches-normaliennes/app/assets/stylesheets/procedure_show.scss

103 lines
1.8 KiB
SCSS
Raw Normal View History

2017-07-11 16:09:03 +02:00
@import "colors";
@import "common";
@import "constants";
.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;
}
.dossiers-table {
margin-top: $default-spacer;
margin-bottom: 3 * $default-spacer;
}
.procedure-actions {
margin-left: auto;
flex-shrink: 0;
.dropdown-items li {
min-width: 150px;
}
}
2017-09-28 11:04:18 +02: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;
margin-right: 6px;
2017-09-28 11:04:18 +02:00
display: inline-block;
}
2020-03-24 15:10:38 +01:00
.explication-onglet {
margin-bottom: 3 * $default-spacer;
text-align: center;
}
[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;
}
[data-reach-combobox-token]:focus {
background-color: $black;
color: $white;
}
[data-reach-combobox-input] {
outline: none;
border: none;
flex-grow: 1;
margin: 0.25rem;
}
[data-reach-combobox-input]:focus {
outline: solid;
outline-color: $light-blue;
}
}
2017-07-11 16:09:03 +02:00
}