Fix responsive css

This commit is contained in:
Evarin 2018-12-27 17:39:52 +01:00
parent 85de4f0245
commit 754034cd57
5 changed files with 218 additions and 149 deletions

View file

@ -1,4 +1,4 @@
@mixin miniHeader() {
header { header {
z-index: 40; z-index: 40;
position: fixed; position: fixed;
@ -52,11 +52,4 @@ header.expanded {
display:block; display:block;
} }
} }
h1 {
font-size: 2em;
}
h2 {
font-size: 1.6em;
} }

View file

@ -1,3 +1,5 @@
@import "_miniheader.scss";
body.recherche { body.recherche {
section.content { section.content {
@ -161,13 +163,14 @@ body.recherche {
&.vue-hybride { &.vue-hybride {
@import "_miniheader.scss"; @include miniHeader;
header { header {
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
width: 500px; width: 100%;
max-width: 500px;
z-index: 15; z-index: 15;
} }
section.content { section.content {

View file

@ -1,3 +1,5 @@
@import "_miniheader.scss";
@media screen and (max-width: 850px) { @media screen and (max-width: 850px) {
header { header {
font-size: 0.9em; font-size: 0.9em;
@ -18,7 +20,16 @@
} }
@media screen and (max-width: 600px) { @media screen and (max-width: 600px) {
@import "_miniheader.scss";
@include miniHeader;
h1 {
font-size: 2em;
}
h2 {
font-size: 1.6em;
}
#feedback-button { #feedback-button {
transform: unset; transform: unset;

View file

@ -1226,7 +1226,7 @@ table.stats td, table.stats th {
text-align: center; text-align: center;
} }
/* line 5, ../../sass/_recherche.scss */ /* line 7, ../../sass/_recherche.scss */
body.recherche section.content form.recherche .generale { body.recherche section.content form.recherche .generale {
display: inline-block; display: inline-block;
text-align: right; text-align: right;
@ -1237,38 +1237,38 @@ body.recherche section.content form.recherche .generale {
max-width: 100%; max-width: 100%;
white-space: nowrap; white-space: nowrap;
} }
/* line 15, ../../sass/_recherche.scss */ /* line 17, ../../sass/_recherche.scss */
body.recherche section.content form.recherche .generale span { body.recherche section.content form.recherche .generale span {
display: flex; display: flex;
} }
/* line 19, ../../sass/_recherche.scss */ /* line 21, ../../sass/_recherche.scss */
body.recherche section.content form.recherche .generale input[type="text"] { body.recherche section.content form.recherche .generale input[type="text"] {
max-width: 500px; max-width: 500px;
padding: 10px; padding: 10px;
border: 1px solid #8fcc33; border: 1px solid #8fcc33;
margin: 0 5px; margin: 0 5px;
} }
/* line 25, ../../sass/_recherche.scss */ /* line 27, ../../sass/_recherche.scss */
body.recherche section.content form.recherche .generale input { body.recherche section.content form.recherche .generale input {
display: inline; display: inline;
} }
/* line 30, ../../sass/_recherche.scss */ /* line 32, ../../sass/_recherche.scss */
body.recherche section.content form.recherche .avancee { body.recherche section.content form.recherche .avancee {
background: #fff; background: #fff;
display: none; display: none;
padding: 15px; padding: 15px;
margin-bottom: 15px; margin-bottom: 15px;
} }
/* line 36, ../../sass/_recherche.scss */ /* line 38, ../../sass/_recherche.scss */
body.recherche section.content form.recherche .avancee.expanded { body.recherche section.content form.recherche .avancee.expanded {
display: block; display: block;
} }
/* line 40, ../../sass/_recherche.scss */ /* line 42, ../../sass/_recherche.scss */
body.recherche section.content form.recherche .avancee .help_text { body.recherche section.content form.recherche .avancee .help_text {
font-style: italic; font-style: italic;
font-size: 0.9em; font-size: 0.9em;
} }
/* line 45, ../../sass/_recherche.scss */ /* line 47, ../../sass/_recherche.scss */
body.recherche section.content form.recherche .avancee ul { body.recherche section.content form.recherche .avancee ul {
margin: 0 -5px; margin: 0 -5px;
display: flexbox; display: flexbox;
@ -1277,7 +1277,7 @@ body.recherche section.content form.recherche .avancee ul {
justify-content: space-between; justify-content: space-between;
width: 100%; width: 100%;
} }
/* line 53, ../../sass/_recherche.scss */ /* line 55, ../../sass/_recherche.scss */
body.recherche section.content form.recherche .avancee ul li { body.recherche section.content form.recherche .avancee ul li {
flex-grow: 1; flex-grow: 1;
width: 22%; width: 22%;
@ -1285,12 +1285,12 @@ body.recherche section.content form.recherche .avancee ul li {
margin: 5px 0; margin: 5px 0;
padding: 0 10px; padding: 0 10px;
} }
/* line 60, ../../sass/_recherche.scss */ /* line 62, ../../sass/_recherche.scss */
body.recherche section.content form.recherche .avancee ul li label { body.recherche section.content form.recherche .avancee ul li label {
font-weight: bold; font-weight: bold;
font-size: 0.9em; font-size: 0.9em;
} }
/* line 65, ../../sass/_recherche.scss */ /* line 67, ../../sass/_recherche.scss */
body.recherche section.content form.recherche .avancee ul li input[type="text"], body.recherche section.content form.recherche .avancee ul li input[type='number'], body.recherche section.content form.recherche .avancee ul li select { body.recherche section.content form.recherche .avancee ul li input[type="text"], body.recherche section.content form.recherche .avancee ul li input[type='number'], body.recherche section.content form.recherche .avancee ul li select {
display: block; display: block;
min-width: 150px; min-width: 150px;
@ -1299,59 +1299,59 @@ body.recherche section.content form.recherche .avancee ul li input[type="text"],
font-size: 0.9em; font-size: 0.9em;
background-color: #f8f8f8; background-color: #f8f8f8;
} }
/* line 73, ../../sass/_recherche.scss */ /* line 75, ../../sass/_recherche.scss */
body.recherche section.content form.recherche .avancee ul li.btnsubmit { body.recherche section.content form.recherche .avancee ul li.btnsubmit {
text-align: right; text-align: right;
} }
/* line 76, ../../sass/_recherche.scss */ /* line 78, ../../sass/_recherche.scss */
body.recherche section.content form.recherche .avancee ul li.field__sujet, body.recherche section.content form.recherche .avancee ul li.field__contexte { body.recherche section.content form.recherche .avancee ul li.field__sujet, body.recherche section.content form.recherche .avancee ul li.field__contexte {
width: 45%; width: 45%;
min-width: 300px; min-width: 300px;
} }
/* line 86, ../../sass/_recherche.scss */ /* line 88, ../../sass/_recherche.scss */
body.recherche section.content .recherche-carte, body.recherche section.content .recherche-liste { body.recherche section.content .recherche-carte, body.recherche section.content .recherche-liste {
position: relative; position: relative;
} }
/* line 90, ../../sass/_recherche.scss */ /* line 92, ../../sass/_recherche.scss */
body.recherche section.content .numresults { body.recherche section.content .numresults {
font-size: 0.9em; font-size: 0.9em;
font-weight: bold; font-weight: bold;
} }
/* line 96, ../../sass/_recherche.scss */ /* line 98, ../../sass/_recherche.scss */
body.recherche.vue-hybride #voir_hybride, body.recherche.vue-carte #voir_carte, body.recherche.vue-liste #voir_liste { body.recherche.vue-hybride #voir_hybride, body.recherche.vue-carte #voir_carte, body.recherche.vue-liste #voir_liste {
background: #d2ebad; background: #d2ebad;
color: #000; color: #000;
} }
/* line 103, ../../sass/_recherche.scss */ /* line 105, ../../sass/_recherche.scss */
body.recherche .vue-options { body.recherche .vue-options {
text-align: center; text-align: center;
} }
/* line 105, ../../sass/_recherche.scss */ /* line 107, ../../sass/_recherche.scss */
body.recherche .vue-options ul { body.recherche .vue-options ul {
display: inline-block; display: inline-block;
border-radius: 5px; border-radius: 5px;
overflow: hidden; overflow: hidden;
} }
/* line 110, ../../sass/_recherche.scss */ /* line 112, ../../sass/_recherche.scss */
body.recherche .vue-options ul li { body.recherche .vue-options ul li {
display: inline-block; display: inline-block;
background: #fff; background: #fff;
padding: 10px; padding: 10px;
} }
/* line 114, ../../sass/_recherche.scss */ /* line 116, ../../sass/_recherche.scss */
body.recherche .vue-options ul li a { body.recherche .vue-options ul li a {
display: block; display: block;
padding: 10px; padding: 10px;
margin: -10px; margin: -10px;
} }
/* line 123, ../../sass/_recherche.scss */ /* line 125, ../../sass/_recherche.scss */
body.recherche .recherche-carte .vue-options { body.recherche .recherche-carte .vue-options {
position: absolute; position: absolute;
z-index: 3; z-index: 3;
top: 15px; top: 15px;
left: 60px; left: 60px;
} }
/* line 130, ../../sass/_recherche.scss */ /* line 132, ../../sass/_recherche.scss */
body.recherche.vue-hybride section.content, body.recherche.vue-carte section.content { body.recherche.vue-hybride section.content, body.recherche.vue-carte section.content {
width: 100%; width: 100%;
min-width: unset; min-width: unset;
@ -1362,20 +1362,20 @@ body.recherche.vue-hybride section.content, body.recherche.vue-carte section.con
padding: 0; padding: 0;
margin: 0; margin: 0;
} }
/* line 141, ../../sass/_recherche.scss */ /* line 143, ../../sass/_recherche.scss */
body.recherche.vue-hybride section.content .recherche-carte, body.recherche.vue-hybride section.content .recherche-liste, body.recherche.vue-carte section.content .recherche-carte, body.recherche.vue-carte section.content .recherche-liste { body.recherche.vue-hybride section.content .recherche-carte, body.recherche.vue-hybride section.content .recherche-liste, body.recherche.vue-carte section.content .recherche-carte, body.recherche.vue-carte section.content .recherche-liste {
height: 100%; height: 100%;
} }
/* line 144, ../../sass/_recherche.scss */ /* line 146, ../../sass/_recherche.scss */
body.recherche.vue-hybride section.content .recherche-liste, body.recherche.vue-carte section.content .recherche-liste { body.recherche.vue-hybride section.content .recherche-liste, body.recherche.vue-carte section.content .recherche-liste {
overflow-y: auto; overflow-y: auto;
padding: 15px; padding: 15px;
} }
/* line 150, ../../sass/_recherche.scss */ /* line 152, ../../sass/_recherche.scss */
body.recherche.vue-liste .recherche-carte, body.recherche.vue-carte .recherche-liste, body.recherche.vue-carte header { body.recherche.vue-liste .recherche-carte, body.recherche.vue-carte .recherche-liste, body.recherche.vue-carte header {
display: none; display: none;
} }
/* line 156, ../../sass/_recherche.scss */ /* line 158, ../../sass/_recherche.scss */
body.recherche.vue-carte .recherche-carte, body.recherche.vue-liste .recherche-liste { body.recherche.vue-carte .recherche-carte, body.recherche.vue-liste .recherche-liste {
display: block; display: block;
width: 100%; width: 100%;
@ -1437,84 +1437,77 @@ body.recherche.vue-hybride header nav ul li a .username:after {
body.recherche.vue-hybride header.expanded nav ul { body.recherche.vue-hybride header.expanded nav ul {
display: block; display: block;
} }
/* line 56, ../../sass/_miniheader.scss */ /* line 168, ../../sass/_recherche.scss */
body.recherche.vue-hybride h1 {
font-size: 2em;
}
/* line 60, ../../sass/_miniheader.scss */
body.recherche.vue-hybride h2 {
font-size: 1.6em;
}
/* line 166, ../../sass/_recherche.scss */
body.recherche.vue-hybride header { body.recherche.vue-hybride header {
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
width: 500px; width: 100%;
max-width: 500px;
z-index: 15; z-index: 15;
} }
/* line 173, ../../sass/_recherche.scss */ /* line 176, ../../sass/_recherche.scss */
body.recherche.vue-hybride section.content { body.recherche.vue-hybride section.content {
display: flex; display: flex;
} }
/* line 176, ../../sass/_recherche.scss */ /* line 179, ../../sass/_recherche.scss */
body.recherche.vue-hybride section.content .recherche-liste { body.recherche.vue-hybride section.content .recherche-liste {
padding-top: 60px; padding-top: 60px;
width: 500px; width: 500px;
} }
/* line 180, ../../sass/_recherche.scss */ /* line 183, ../../sass/_recherche.scss */
body.recherche.vue-hybride section.content .recherche-liste .dates { body.recherche.vue-hybride section.content .recherche-liste .dates {
display: none; display: none;
} }
/* line 183, ../../sass/_recherche.scss */ /* line 186, ../../sass/_recherche.scss */
body.recherche.vue-hybride section.content .recherche-liste ul.infos li { body.recherche.vue-hybride section.content .recherche-liste ul.infos li {
font-size: 0.8em; font-size: 0.8em;
font-weight: normal; font-weight: normal;
} }
/* line 186, ../../sass/_recherche.scss */ /* line 189, ../../sass/_recherche.scss */
body.recherche.vue-hybride section.content .recherche-liste ul.infos li.year { body.recherche.vue-hybride section.content .recherche-liste ul.infos li.year {
display: inline-block; display: inline-block;
} }
/* line 191, ../../sass/_recherche.scss */ /* line 194, ../../sass/_recherche.scss */
body.recherche.vue-hybride section.content .recherche-carte { body.recherche.vue-hybride section.content .recherche-carte {
flex: 1.5; flex: 1.5;
width: 100%; width: 100%;
} }
/* line 195, ../../sass/_recherche.scss */ /* line 198, ../../sass/_recherche.scss */
body.recherche.vue-hybride section.content .recherche-carte .vue-options { body.recherche.vue-hybride section.content .recherche-carte .vue-options {
display: none; display: none;
} }
/* line 202, ../../sass/_recherche.scss */ /* line 205, ../../sass/_recherche.scss */
body.recherche #carte { body.recherche #carte {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
/* line 207, ../../sass/_recherche.scss */ /* line 210, ../../sass/_recherche.scss */
body.recherche .recherche-liste.recherche-details { body.recherche .recherche-liste.recherche-details {
display: none !important; display: none !important;
} }
/* line 210, ../../sass/_recherche.scss */ /* line 213, ../../sass/_recherche.scss */
body.recherche.vue-hybride.vue-details .recherche-liste { body.recherche.vue-hybride.vue-details .recherche-liste {
display: none; display: none;
} }
/* line 213, ../../sass/_recherche.scss */ /* line 216, ../../sass/_recherche.scss */
body.recherche.vue-hybride.vue-details .recherche-liste.recherche-details { body.recherche.vue-hybride.vue-details .recherche-liste.recherche-details {
display: block !important; display: block !important;
} }
@media screen and (max-width: 600px) { @media screen and (max-width: 600px) {
/* line 221, ../../sass/_recherche.scss */ /* line 224, ../../sass/_recherche.scss */
section.content.recherche.vue-hybride, section.content.recherche.vue-carte { section.content.recherche.vue-hybride, section.content.recherche.vue-carte {
height: calc(100vh - 60px); height: calc(100vh - 60px);
margin-top: 60px; margin-top: 60px;
} }
/* line 228, ../../sass/_recherche.scss */ /* line 231, ../../sass/_recherche.scss */
section.content.recherche .recherche-liste ul li.stage:not(.expanded) ul.infos { section.content.recherche .recherche-liste ul li.stage:not(.expanded) ul.infos {
max-height: 115px; max-height: 115px;
overflow-y: hidden; overflow-y: hidden;
position: relative; position: relative;
} }
/* line 233, ../../sass/_recherche.scss */ /* line 236, ../../sass/_recherche.scss */
section.content.recherche .recherche-liste ul li.stage:not(.expanded) ul.infos:after { section.content.recherche .recherche-liste ul li.stage:not(.expanded) ul.infos:after {
position: absolute; position: absolute;
content: "⋅⋅⋅"; content: "⋅⋅⋅";
@ -1527,35 +1520,35 @@ body.recherche.vue-hybride.vue-details .recherche-liste.recherche-details {
text-align: center; text-align: center;
border-top: 1px solid #ccc; border-top: 1px solid #ccc;
} }
/* line 247, ../../sass/_recherche.scss */ /* line 250, ../../sass/_recherche.scss */
section.content.recherche .recherche-liste ul li.stage:not(.expanded) a.hoverlink { section.content.recherche .recherche-liste ul li.stage:not(.expanded) a.hoverlink {
display: none; display: none;
} }
/* line 251, ../../sass/_recherche.scss */ /* line 254, ../../sass/_recherche.scss */
section.content.recherche .recherche-liste .dates .detail { section.content.recherche .recherche-liste .dates .detail {
display: none; display: none;
} }
/* line 257, ../../sass/_recherche.scss */ /* line 260, ../../sass/_recherche.scss */
ul.messages { ul.messages {
display: none; display: none;
} }
} }
@media screen and (max-width: 500px), screen and (max-width: 800px) and (orientation: portrait) { @media screen and (max-width: 500px), screen and (max-width: 800px) and (orientation: portrait) {
/* line 265, ../../sass/_recherche.scss */ /* line 268, ../../sass/_recherche.scss */
section.content.recherche form.recherche .generale span input { section.content.recherche form.recherche .generale span input {
font-size: 0.9em; font-size: 0.9em;
flex: 1; flex: 1;
} }
/* line 269, ../../sass/_recherche.scss */ /* line 272, ../../sass/_recherche.scss */
section.content.recherche form.recherche .generale span input[type=submit] { section.content.recherche form.recherche .generale span input[type=submit] {
white-space: normal; white-space: normal;
} }
/* line 273, ../../sass/_recherche.scss */ /* line 276, ../../sass/_recherche.scss */
section.content.recherche.vue-hybride, section.content.recherche.vue-carte { section.content.recherche.vue-hybride, section.content.recherche.vue-carte {
flex-direction: column; flex-direction: column;
} }
/* line 274, ../../sass/_recherche.scss */ /* line 277, ../../sass/_recherche.scss */
section.content.recherche.vue-hybride .recherche-liste, section.content.recherche.vue-carte .recherche-liste { section.content.recherche.vue-hybride .recherche-liste, section.content.recherche.vue-carte .recherche-liste {
max-width: 100vw; max-width: 100vw;
min-width: unset; min-width: unset;
@ -1563,27 +1556,96 @@ body.recherche.vue-hybride.vue-details .recherche-liste.recherche-details {
} }
} }
@media screen and (max-width: 850px) { @media screen and (max-width: 850px) {
/* line 2, ../../sass/_responsive.scss */ /* line 4, ../../sass/_responsive.scss */
header { header {
font-size: 0.9em; font-size: 0.9em;
} }
/* line 5, ../../sass/_responsive.scss */ /* line 7, ../../sass/_responsive.scss */
header h1 { header h1 {
font-size: 1.5em; font-size: 1.5em;
} }
/* line 9, ../../sass/_responsive.scss */ /* line 11, ../../sass/_responsive.scss */
header nav ul li a { header nav ul li a {
height: 60px; height: 60px;
} }
/* line 14, ../../sass/_responsive.scss */ /* line 16, ../../sass/_responsive.scss */
.explications div { .explications div {
max-width: 50vw; max-width: 50vw;
overflow: hidden; overflow: hidden;
} }
} }
@media screen and (max-width: 600px) { @media screen and (max-width: 600px) {
/* line 23, ../../sass/_responsive.scss */ /* line 2, ../../sass/_miniheader.scss */
header {
z-index: 40;
position: fixed;
top: 0px;
left: 0px;
width: 100%;
display: block;
max-height: 100vh;
overflow-y: auto;
}
/* line 12, ../../sass/_miniheader.scss */
header h1 {
padding: 10px;
}
/* line 15, ../../sass/_miniheader.scss */
header #showmenu {
display: block;
float: right;
padding: 10px;
}
/* line 20, ../../sass/_miniheader.scss */
header #showmenu img {
width: 35px;
}
/* line 24, ../../sass/_miniheader.scss */
header nav {
clear: both;
text-align: right;
}
/* line 28, ../../sass/_miniheader.scss */
header nav ul {
display: none;
}
/* line 31, ../../sass/_miniheader.scss */
header nav ul li {
display: block;
}
/* line 33, ../../sass/_miniheader.scss */
header nav ul li a {
display: block;
padding: 10px 20px;
height: auto;
text-align: right;
}
/* line 39, ../../sass/_miniheader.scss */
header nav ul li a br {
display: none;
}
/* line 42, ../../sass/_miniheader.scss */
header nav ul li a .username:after {
content: " | ";
}
/* line 51, ../../sass/_miniheader.scss */
header.expanded nav ul {
display: block;
}
/* line 26, ../../sass/_responsive.scss */
h1 {
font-size: 2em;
}
/* line 30, ../../sass/_responsive.scss */
h2 {
font-size: 1.6em;
}
/* line 34, ../../sass/_responsive.scss */
#feedback-button { #feedback-button {
transform: unset; transform: unset;
top: 0px; top: 0px;
@ -1594,79 +1656,79 @@ body.recherche.vue-hybride.vue-details .recherche-liste.recherche-details {
background: rgba(0, 0, 0, 0.5); background: rgba(0, 0, 0, 0.5);
} }
/* line 32, ../../sass/_responsive.scss */ /* line 43, ../../sass/_responsive.scss */
.content { .content {
margin-top: 70px; margin-top: 70px;
padding: 15px 3vw; padding: 15px 3vw;
} }
/* line 37, ../../sass/_responsive.scss */ /* line 48, ../../sass/_responsive.scss */
article.stage h3 { article.stage h3 {
margin-top: 10px; margin-top: 10px;
} }
/* line 41, ../../sass/_responsive.scss */ /* line 52, ../../sass/_responsive.scss */
article.stage section .avis-texte, article.stage section .chapo { article.stage section .avis-texte, article.stage section .chapo {
padding: 3px 10px; padding: 3px 10px;
} }
/* line 47, ../../sass/_responsive.scss */ /* line 58, ../../sass/_responsive.scss */
article.stage section #stage-map { article.stage section #stage-map {
height: 200px; height: 200px;
width: 100%; width: 100%;
} }
/* line 53, ../../sass/_responsive.scss */ /* line 64, ../../sass/_responsive.scss */
article.stage section.misc .misc-content.withmap { article.stage section.misc .misc-content.withmap {
display: block; display: block;
} }
/* line 56, ../../sass/_responsive.scss */ /* line 67, ../../sass/_responsive.scss */
article.stage section.misc .misc-content.withmap > div { article.stage section.misc .misc-content.withmap > div {
display: block; display: block;
vertical-align: top; vertical-align: top;
} }
/* line 60, ../../sass/_responsive.scss */ /* line 71, ../../sass/_responsive.scss */
article.stage section.misc .misc-content.withmap .map { article.stage section.misc .misc-content.withmap .map {
width: 80%; width: 80%;
min-width: 250px; min-width: 250px;
min-height: 200px; min-height: 200px;
margin: 0 auto; margin: 0 auto;
} }
/* line 66, ../../sass/_responsive.scss */ /* line 77, ../../sass/_responsive.scss */
article.stage section.misc .misc-content.withmap .desc { article.stage section.misc .misc-content.withmap .desc {
padding: 5px; padding: 5px;
} }
/* line 74, ../../sass/_responsive.scss */ /* line 85, ../../sass/_responsive.scss */
article.stage section .plusmoins > div { article.stage section .plusmoins > div {
display: block; display: block;
} }
/* line 77, ../../sass/_responsive.scss */ /* line 88, ../../sass/_responsive.scss */
article.stage section .plusmoins > div > *, article.stage section .plusmoins > div:before { article.stage section .plusmoins > div > *, article.stage section .plusmoins > div:before {
display: block; display: block;
} }
/* line 81, ../../sass/_responsive.scss */ /* line 92, ../../sass/_responsive.scss */
article.stage section .plusmoins > div:before { article.stage section .plusmoins > div:before {
text-align: left; text-align: left;
width: 100%; width: 100%;
font-size: 1.5em; font-size: 1.5em;
} }
/* line 86, ../../sass/_responsive.scss */ /* line 97, ../../sass/_responsive.scss */
article.stage section .plusmoins > div.moins:before { article.stage section .plusmoins > div.moins:before {
text-align: right; text-align: right;
margin-top: 5px; margin-top: 5px;
} }
/* line 95, ../../sass/_responsive.scss */ /* line 106, ../../sass/_responsive.scss */
article.stage .section-wrapper { article.stage .section-wrapper {
display: block; display: block;
margin-left: 0; margin-left: 0;
} }
/* line 99, ../../sass/_responsive.scss */ /* line 110, ../../sass/_responsive.scss */
article.stage .section-wrapper .toc-wrapper, article.stage .section-wrapper > section { article.stage .section-wrapper .toc-wrapper, article.stage .section-wrapper > section {
display: block; display: block;
} }
/* line 102, ../../sass/_responsive.scss */ /* line 113, ../../sass/_responsive.scss */
article.stage .section-wrapper .toc-wrapper { article.stage .section-wrapper .toc-wrapper {
max-width: unset; max-width: unset;
width: unset; width: unset;
} }
/* line 106, ../../sass/_responsive.scss */ /* line 117, ../../sass/_responsive.scss */
article.stage .section-wrapper .toc { article.stage .section-wrapper .toc {
display: none; display: none;
position: relative; position: relative;
@ -1675,65 +1737,65 @@ body.recherche.vue-hybride.vue-details .recherche-liste.recherche-details {
padding: 4px; padding: 4px;
} }
/* line 116, ../../sass/_responsive.scss */ /* line 127, ../../sass/_responsive.scss */
.homeh1 { .homeh1 {
display: block; display: block;
} }
/* line 118, ../../sass/_responsive.scss */ /* line 129, ../../sass/_responsive.scss */
.homeh1 > * { .homeh1 > * {
display: block; display: block;
} }
/* line 123, ../../sass/_responsive.scss */ /* line 134, ../../sass/_responsive.scss */
article.promo .explications { article.promo .explications {
display: block; display: block;
} }
/* line 125, ../../sass/_responsive.scss */ /* line 136, ../../sass/_responsive.scss */
article.promo .explications div { article.promo .explications div {
max-width: 100%; max-width: 100%;
display: block; display: block;
} }
/* line 132, ../../sass/_responsive.scss */ /* line 143, ../../sass/_responsive.scss */
.condensed-stages { .condensed-stages {
display: block; display: block;
} }
/* line 135, ../../sass/_responsive.scss */ /* line 146, ../../sass/_responsive.scss */
.condensed-stages li:before, .condensed-stages li, .condensed-stages a { .condensed-stages li:before, .condensed-stages li, .condensed-stages a {
display: block; display: block;
width: auto; width: auto;
max-width: auto; max-width: auto;
} }
/* line 141, ../../sass/_responsive.scss */ /* line 152, ../../sass/_responsive.scss */
.condensed-stages li:before { .condensed-stages li:before {
padding: 3px 15px; padding: 3px 15px;
} }
/* line 145, ../../sass/_responsive.scss */ /* line 156, ../../sass/_responsive.scss */
.condensed-stages li.stage-ajout:before { .condensed-stages li.stage-ajout:before {
display: none; display: none;
} }
/* line 150, ../../sass/_responsive.scss */ /* line 161, ../../sass/_responsive.scss */
ul.infos { ul.infos {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: space-between; justify-content: space-between;
} }
/* line 159, ../../sass/_responsive.scss */ /* line 170, ../../sass/_responsive.scss */
.stage-liste li .misc-hdr .dates .detail { .stage-liste li .misc-hdr .dates .detail {
display: inline; display: inline;
} }
/* line 162, ../../sass/_responsive.scss */ /* line 173, ../../sass/_responsive.scss */
.stage-liste li .misc-hdr .dates .year { .stage-liste li .misc-hdr .dates .year {
padding: 0; padding: 0;
} }
/* line 170, ../../sass/_responsive.scss */ /* line 181, ../../sass/_responsive.scss */
form .field { form .field {
display: block; display: block;
} }
/* line 173, ../../sass/_responsive.scss */ /* line 184, ../../sass/_responsive.scss */
form .field label, form .field .label { form .field label, form .field .label {
display: block; display: block;
text-align: left; text-align: left;
@ -1742,18 +1804,18 @@ body.recherche.vue-hybride.vue-details .recherche-liste.recherche-details {
margin-top: 0; margin-top: 0;
width: auto; width: auto;
} }
/* line 182, ../../sass/_responsive.scss */ /* line 193, ../../sass/_responsive.scss */
form .field .help_text { form .field .help_text {
text-align: right; text-align: right;
color: #395214; color: #395214;
} }
/* line 187, ../../sass/_responsive.scss */ /* line 198, ../../sass/_responsive.scss */
form .field .input { form .field .input {
padding-left: 20px; padding-left: 20px;
display: block; display: block;
text-align: right; text-align: right;
} }
/* line 193, ../../sass/_responsive.scss */ /* line 204, ../../sass/_responsive.scss */
form .field input, form .field textarea, form .field div.tinymce, form .field select { form .field input, form .field textarea, form .field div.tinymce, form .field select {
background: #f4faeb; background: #f4faeb;
} }

View file

@ -3,7 +3,7 @@
<p class="generale"> <p class="generale">
<span> <span>
{{ form.generique }} {{ form.generique }}
<input type="submit" action="submit" value="Chercher un stage"/> <input type="submit" action="submit" value="Chercher" class="submitSearch" />
</span> </span>
<a class="toggle_avancee" href="#" onclick="$('#recherche_avancee').toggleClass('expanded'); return false;">Recherche avancée</a> <a class="toggle_avancee" href="#" onclick="$('#recherche_avancee').toggleClass('expanded'); return false;">Recherche avancée</a>
</p> </p>
@ -20,7 +20,7 @@
{% endif %} {% endif %}
{% endfor %} {% endfor %}
<li class="btnsubmit"> <li class="btnsubmit">
<input type="submit" action="submit" value="Chercher un stage"/> <input type="submit" action="submit" value="Chercher" class="submitSearch"/>
</li> </li>
</ul> </ul>
</div> </div>