<div class="sds-modal modal fade" id="nvelleDemandeConfirmation" aria-hidden="true" tabindex="-1">
<div class="sds-modal__dialog modal-dialog modal-lg modal-dialog-centered modal-dialog-scrollable">
<div class="sds-modal__content modal-content">
<div class="sds-modal__header modal-header">
<button type="button" class="sds-btn -iconBtn -btnSecondary -ghost sds-modal__close" data-dismiss="modal" aria-label="Close">
<span class="sds-icon sds-icon-close"></span>
</button>
</div>
<div class="sds-modal__body modal-body">
<div class="row row-sm justify-content-center text-center">
<div class="col-10">
<img src="../../media/corporate-bridge/pages/nouvelle-demande/sdsillu-awaitingbankapproval.svg" class="img-fluid" alt="">
<div class="sds-stackXs">
<div class="h3">Votre demande a été soumise avec succès</div>
<p class="sds-textBodyLg">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.</p>
</div>
</div>
</div>
</div>
<div class="sds-modal__footer modal-footer">
<div class="d-flex justify-content-between w-100">
<button type="button" class="sds-btn -btnSecondary">
<span class="sds-icon sds-icon-copy"></span>
<span class="sds-btn__text">Dupliquer demande</span>
</button>
<div class="sds-btnGroup">
<button type="button" class="sds-btn -btnSecondary -btnInverse" data-dismiss="modal">
<span class="sds-btn__text">Refaire une demande</span>
</button>
<a href="" class="sds-btn -btnPrimary">
<span class="sds-btn__text">Fermer</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
{% extends "@snet-modal-base-frame" %}
{% block header %}
{% endblock %}
{% block body %}
<div class="row row-sm justify-content-center text-center">
<div class="col-10">
<img src="{{ (mediaPath + "/corporate-bridge/pages/nouvelle-demande/sdsillu-awaitingbankapproval.svg") | path }}"
class="img-fluid" alt="">
<div class="{{ namespace }}stackXs">
<div class="h3">Votre demande a été soumise avec succès</div>
<p class="{{ namespace }}textBodyLg">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.</p>
</div>
</div>
</div>
{% endblock %}
{% block footer %}
<div class="d-flex justify-content-between w-100">
{% render "@btn-secondary--icon-left", {
icon: "icon-copy",
text: "Dupliquer demande"
} ,true %}
<div class="{{ namespace }}btnGroup">
{% render "@btn-secondary-inverse", {
text: "Refaire une demande",
attrs: {
"data-dismiss": "modal"
}
} ,true %}
{% render "@btn-primary",{
text: "Fermer",
eltType: "a"
},true %}
</div>
</div>
{% endblock %}
/* variables specific to current element */
$element-specific-variables: "";
.#{$namespace}modal {
/* Save root element context for easy access if nesting is needed */
$self: &;
/* properties of current element + media queries */
/* Pseudo Elements */
&::before {
}
&::after {
}
/*
Include elements that are linked to the current element but have to reside at the root level of the stylesheet
(e.g: keyframes)
*/
@at-root {
}
/* children - write selector in full in comments in order to facilitate search */
// modal__stickyBodyHeader
&__stickyBodyHeader {
// follows same logic as parent
top: -($modal-inner-padding-mobile);
z-index: z("low");
background-color: map-deep-get($token-color-grayscale-map, "0");
padding-top: map-deep-get($token-spacer-inset-map, "md");
padding-bottom: map-deep-get($token-spacer-inset-map, "md");
margin-top: -(map-deep-get($token-spacer-inset-map, "md"));
@include media-breakpoint-up(sm) {
top: -24px;
}
&.-inContentFlow {}
}
// modal__stickyBodyHeaderSearch
&__stickyBodyHeaderSearch {
margin-top: -(map-deep-get($token-spacer-stack-max-map, "md"));
}
/* modifiers */
// modal -altStyle
&.-altStyle {
// follows same logic as base element
}
/* random parent element */
/*
*
* Syntax : .randomParentElt & {}
*
*/
/* Pseudo Classes */
&:hover {
@media (hover: hover) {
}
}
&:focus {
}
&:active {
}
&:focus,
&:active {
}
}