Modal: Chat Disclaimer

No notes defined.

<div class="sds-modal modal fade" id="chatConsentDisclaimer" aria-hidden="true" tabindex="-1">
    <div class="sds-modal__dialog modal-dialog modal-dialog-scrollable modal-dialog-centered modal-sm">
        <div class="sds-modal__content modal-content">

            <div class="sds-modal__header modal-header">

                <div class="modal-title">Disclaimer</div>

                <button type="button" class="sds-btn -iconBtn -btnSecondary -ghost sds-modal__close" data-dismiss="modal" aria-label="Close">

                    <span aria-hidden="true" class="sds-icon sds-icon-close"></span>

                </button>

            </div>

            <div class="sds-modal__body modal-body">

                <div class="sds-stackXl">
                    <p class="sds-textHelper">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
                    <a href="" class="sds-document sds-box -boxInsetMd -boxSunken -documentSunken">
                        <h3 class="h4">Brochure &#39;Guide du Prêt au Logement&#39;</h3>
                        <div class="sds-document__actionZone">
                            <span class="sds-btn -iconBtn -btnSecondary">

                                <span aria-hidden="true" class="sds-icon sds-icon-download"></span>

                            </span>
                        </div>
                    </a>
                    <div class="sds-framedChoice sds-showCustomIndicatorHover">
                        <input name="framedChoiceInput" type="checkbox" id="framed-checkbox-no-media" class="sds-framedChoice__input sr-only">
                        <div class="sds-framedChoice__body" data-scope-wrapper="box" data-scope="flat">

                            <div class="sds-framedChoice__content sds-staticGapMd">

                                <div class="sds-framedChoice__inputShape d-flex">

                                    <span class="sds-checkboxDot" aria-hidden="true"></span>

                                </div>

                                <div class="flex-grow-1">

                                    <div class="sds-staticStackXxs">

                                        <p>

                                            <label for="framed-checkbox-no-media" class="stretched-link">Test</label>

                                        </p>

                                    </div>

                                </div>

                            </div>

                        </div>

                    </div>
                </div>

            </div>

            <div class="sds-modal__footer modal-footer">

                <button type="button" class="sds-btn -btnPrimary -btnBlock">

                    <span class="sds-btn__text">Continuer</span>

                </button>

            </div>

        </div>
    </div>
</div>
{% extends "@snet-modal-base-frame" %}
{% block header %}
	<div class="modal-title">Disclaimer</div>
{% endblock %}
{% block body %}
	<div class="{{ namespace }}stackXl">
		<p class="{{ namespace }}textHelper">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
		{% render "@document-list-item--sunken",{
			text: "{Nom du document}.pdf"
		},true %}
		{% render "@framed-choice--checkbox-no-media",{
			title: false,
			infoDot: false
		},true %}
	</div>
{% endblock %}
{% block footer %}

	{% render "@btn-primary", {
		text: "Continuer",
		classes: ["-btnBlock"]
	} ,true %}

{% endblock %}
  • Content:
    /* 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__headerStepper
    	&__headerStepper {
    
    		// follows same logic as parent
    
    		order: 1000;
    		flex: 1 0 100%;
    		margin: 0 (-(map-deep-get($token-spacer-inline-map, "md"))) (-(map-deep-get($token-spacer-inline-map, "md")));
    
    	}
    
    
    	/* modifiers */
    
    	// modal -hasHeaderStepper
    	&.-hasHeaderStepper {
    
    		// follows same logic as base element
    
    		#{$self}__header {
    
    			flex-wrap: wrap;
    
    		}
    
    	}
    
    	/* random parent element */
    	/* 
    	*
    	*   Syntax : .randomParentElt & {}
    	*
    	*/
    
    	/* Pseudo Classes */
    
    	&:hover {
    		@media (hover: hover) {
    
    		}
    	}
    
    	&:focus {
    	}
    
    	&:active {
    	}
    
    	&:focus,
    	&:active {
    	}
    
    }
  • URL: /components/raw/msp-modal/_modal.scss
  • Filesystem Path: components/my-spuerkeess/organisms/modal/_modal.scss
  • Size: 1.1 KB