diff --git a/web/themes/custom/eql/css-compiled/styles.css b/web/themes/custom/eql/css-compiled/styles.css index 1e8387b..287ea8c 100644 --- a/web/themes/custom/eql/css-compiled/styles.css +++ b/web/themes/custom/eql/css-compiled/styles.css @@ -2121,6 +2121,67 @@ a { margin-top: 1rem; } .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions #edit-actions-submit:after { content: url('data:image/svg+xml,'); } + .path-webform .region-content #webform-submission-offre-de-service-add-form { + display: flex; + flex-direction: row; + flex-wrap: wrap; + flex-basis: auto; + justify-content: space-between; + margin-top: 20vh; } + .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-processed-text { + width: 100%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service { + margin-top: 2rem; + width: 100%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service input { + width: 100%; + height: 5rem; } + .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure { + margin-top: 2rem; + width: 100%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure input { + width: 100%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation { + margin-top: 2rem; + width: 100%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation input { + width: 100%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description { + margin-top: 2rem; + width: 100%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description textarea { + width: 100%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper { + width: 100%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url { + margin-top: 2rem; + width: 100%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url input { + width: 100%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel { + margin-top: 2rem; + width: 45%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel input { + width: 100%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone { + margin-top: 2rem; + width: 45%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone input { + width: 100%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions { + width: 100%; } + .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions input { + width: 30%; + align-self: flex-end; + background-color: #009ee3; + text-transform: uppercase; + color: white; + font-size: 1.2rem; + font-weight: 600; + float: right; + margin-top: 1rem; } + .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions #edit-actions-submit:after { + content: url('data:image/svg+xml,'); } /*partials*/ .layout-container { diff --git a/web/themes/custom/eql/scss/pages/_webform.scss b/web/themes/custom/eql/scss/pages/_webform.scss index 4de675b..43c4205 100644 --- a/web/themes/custom/eql/scss/pages/_webform.scss +++ b/web/themes/custom/eql/scss/pages/_webform.scss @@ -122,5 +122,92 @@ } } + #webform-submission-offre-de-service-add-form{ + display: flex; + flex-direction: row; + flex-wrap: wrap; + flex-basis: auto; + justify-content: space-between; + margin-top: 20vh; + // input:focus ~ label, + // input:not(:placeholder-shown) ~ label { + // z-index: -1; + // } + + #edit-processed-text{ + width: 100%; + } + + .form-item-intitule-de-l-offre-de-service{ + margin-top: 2rem; + width: 100%; + input{ + width: 100%; + height: 5rem; + } + } + + .form-item-structure{ + margin-top: 2rem; + width: 100%; + input{ + width: 100%; + } + + } + .form-item-localisation{ + margin-top: 2rem; + width: 100%; + input{ + width: 100%; + } + } + .form-item-description{ + margin-top: 2rem; + width: 100%; + textarea{ + width: 100%; + } + } + #edit-lien--wrapper{ + width: 100%; + .form-item-lien-url{ + margin-top: 2rem; + width: 100%; + input{ + width: 100%; + } + } + } + .form-item-courriel{ + margin-top: 2rem; + width: 45%; + input{width: 100%;} + } + .form-item-telephone{ + margin-top: 2rem; + width: 45%; + input{width: 100%;} + } + #edit-actions{ + // display: inline-flex; + width: 100%; + input{ + width: 30%; + align-self: flex-end; + background-color: $blue-light; + text-transform: uppercase; + color: $white; + font-size: 1.2rem; + font-weight: 600; + float: right; + margin-top: 1rem; + } + #edit-actions-submit:after{ + content: url('data:image/svg+xml,'); + } + } + + } } } \ No newline at end of file